Skip to content

Commit c865d4c

Browse files
committed
docs: fix ECC setup reference drift
1 parent 72de19e commit c865d4c

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

.claude/rules/node.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727

2828
## Hook Development
2929

30-
- Hook scripts receive JSON on stdin — always `const input = JSON.parse(fs.readFileSync(0, 'utf8'))`
30+
- Hook scripts normally receive JSON on stdin, but hooks routed through `scripts/hooks/run-with-flags.js` can export `run(rawInput)` and let the wrapper handle parsing/gating
3131
- Async hooks: mark `"async": true` in `settings.json` with a timeout ≤30s
3232
- Blocking hooks (PreToolUse, stop): keep fast (<200ms) — no network calls
33-
- Use `run-with-flags.js` wrapper for all hooks so `CLAUDE_ECC_MODE` gating works
33+
- Use `run-with-flags.js` wrapper for all hooks so `ECC_HOOK_PROFILE` and `ECC_DISABLED_HOOKS` runtime gating works
3434
- Always exit 0 on parse errors; log to stderr with `[HookName]` prefix
3535

3636
## Testing Requirements

COMMANDS-QUICK-REF.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@
7676

7777
| Command | What it does |
7878
|---------|-------------|
79-
| `/save-session` | Save current session state to `~/.claude/sessions/` |
80-
| `/resume-session` | Load most recent session and resume from where you left off |
81-
| `/sessions` | Browse, search, and manage session history with aliases |
79+
| `/save-session` | Save current session state to `~/.claude/session-data/` |
80+
| `/resume-session` | Load the most recent saved session from the canonical session store and resume from where you left off |
81+
| `/sessions` | Browse, search, and manage session history with aliases from `~/.claude/session-data/` (with legacy reads from `~/.claude/sessions/`) |
8282
| `/checkpoint` | Mark a checkpoint in the current session |
8383
| `/aside` | Answer a quick side question without losing current task context |
8484
| `/context-budget` | Analyse context window usage — find token overhead, optimise |

EVALUATION.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The active Claude Code installation is near-minimal:
4141
| Schemas | 9 JSON validators |
4242
| Scripts/CLI | 46+ Node.js modules + multiple CLIs |
4343
| Tests | 58 test files |
44-
| Install profiles | minimal, standard, full, enterprise |
44+
| Install profiles | core, developer, security, research, full |
4545
| Supported harnesses | Claude Code, Codex, Cursor, OpenCode |
4646

4747
---
@@ -88,8 +88,8 @@ TypeScript, Python, Go, Java, Kotlin, Rust, C++, C#, Swift, Perl, PHP, and commo
8888

8989
## Recommendations
9090

91-
### Immediate value (minimal install)
92-
Run `ecc install --profile minimal` to get:
91+
### Immediate value (core install)
92+
Run `ecc install --profile core` to get:
9393
- Core agents (code-reviewer, planner, tdd-guide, security-reviewer)
9494
- Essential skills (tdd-workflow, coding-standards, security-review)
9595
- Key commands (/tdd, /plan, /code-review, /build-fix)

REPO-ASSESSMENT.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ node scripts/install-apply.js
100100
Regardless of profile, these components add immediate value:
101101

102102
### 1. Core Agents (highest ROI)
103+
103104
| Agent | Why it matters |
104105
|-------|----------------|
105106
| `planner.md` | Breaks complex tasks into implementation plans |
@@ -109,6 +110,7 @@ Regardless of profile, these components add immediate value:
109110
| `architect.md` | System design & scalability decisions |
110111

111112
### 2. Key Commands
113+
112114
| Command | Why it matters |
113115
|---------|----------------|
114116
| `/plan` | Implementation planning before coding |
@@ -168,7 +170,7 @@ No need to clone the repo. This is the recommended install method for most users
168170
1. **Keep the existing Stop hook** — it's doing its job
169171
2. **Run the developer profile install** from the local fork:
170172
```bash
171-
cd /home/user/everything-claude-code
173+
cd /path/to/everything-claude-code
172174
node scripts/install-plan.js --profile developer
173175
node scripts/install-apply.js
174176
```

0 commit comments

Comments
 (0)