Add question-reframing guidance to CLAUDE.md; commit accumulated project files
- CLAUDE.md: add "Question the question" and "One clarifying question" rules to Tone and Interaction — XY problem detection, false premise checks, and explicit reframe pattern before answering - Add claude/ detail-file directory (topic docs referenced from CLAUDE.md) - Add ABOUT.md, FUTURE.md - Update memory/, scripts/, settings.yaml with accumulated session changes Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
8
claude/scripting-conventions.md
Normal file
8
claude/scripting-conventions.md
Normal file
@@ -0,0 +1,8 @@
|
||||
# Scripting Conventions
|
||||
|
||||
- All scripts live in `scripts/` and run from the repository root
|
||||
- Scripts should be idempotent and safe to re-run
|
||||
- Use colour output for pass/fail indicators in verification scripts
|
||||
- Verification scripts should check for default/insecure credentials and print remediation instructions on failure
|
||||
- Scripts should exit non-zero on failure so `&&` chains work naturally
|
||||
- **Never hardcode secrets, tokens, or access keys in scripts.** Accept them via environment variables, stdin, or `@file` references. If a script needs a secret at runtime, read it from `~/dev/claude/secrets/` or accept it as a parameter — never embed it.
|
||||
Reference in New Issue
Block a user