Skip to content
This repository was archived by the owner on Apr 5, 2026. It is now read-only.

Commit c08edd4

Browse files
HerbHallclaude
andauthored
fix: sync documentation with actual project state (#80)
Update counts across README.md, CLAUDE.md, and .sync-manifest.json: - Rules: 5 -> 8 files (added agent-team-coordination, compaction-recovery, review-policy) - Agents: 6 -> 7 (added plan-reviewer) - Patterns: 70+ -> 135+ (76 autolearn + 60 gotchas) - Skills table: added code-review, plan-review, devkit-sync - Sync manifest: added 3 missing rules, 2 missing skills, 1 missing agent - CLAUDE.md structure tree: added tests/ directory, updated sync instructions Co-authored-by: Claude <noreply@anthropic.com>
1 parent 669544d commit c08edd4

3 files changed

Lines changed: 25 additions & 9 deletions

File tree

.sync-manifest.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@
88
"claude/settings.template.json"
99
],
1010
"rules": [
11+
"claude/rules/agent-team-coordination.md",
1112
"claude/rules/autolearn-patterns.md",
13+
"claude/rules/compaction-recovery.md",
1214
"claude/rules/known-gotchas.md",
1315
"claude/rules/markdown-style.md",
16+
"claude/rules/review-policy.md",
1417
"claude/rules/subagent-ci-checklist.md",
1518
"claude/rules/workflow-preferences.md"
1619
],
@@ -30,10 +33,13 @@
3033
"claude/skills/setup-github-actions",
3134
"claude/skills/systematic-debugging",
3235
"claude/skills/webapp-testing",
33-
"claude/skills/windows-development"
36+
"claude/skills/windows-development",
37+
"claude/skills/code-review",
38+
"claude/skills/plan-review"
3439
],
3540
"agents": [
3641
"claude/agents/go-test-writer.md",
42+
"claude/agents/plan-reviewer.md",
3743
"claude/agents/portfolio-analyzer.md",
3844
"claude/agents/review-code.md",
3945
"claude/agents/security-analyzer.md",

CLAUDE.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ bash setup/legacy/verify.sh
2222
devkit/
2323
├── claude/ - Claude Code config (rules, skills, agents, hooks)
2424
│ ├── CLAUDE.md - Global instructions (installed to ~/.claude/)
25-
│ ├── rules/ - Auto-loaded pattern files (5 files, 70+ patterns)
26-
│ ├── skills/ - Invokable skills (15 skills with workflow files)
27-
│ ├── agents/ - Agent templates (6 agents)
25+
│ ├── rules/ - Auto-loaded pattern files (8 files, 135+ patterns)
26+
│ ├── skills/ - Invokable skills (18 skills with workflow files)
27+
│ ├── agents/ - Agent templates (7 agents)
2828
│ └── hooks/ - SessionStart hook
2929
├── devspace/ - Workspace shared configs (.editorconfig, VS Code)
3030
│ ├── templates/ - Project starter templates (ADR, design, test plan)
@@ -37,6 +37,7 @@ devkit/
3737
├── setup/ - PowerShell stubs (*.ps1, lib/*.ps1)
3838
│ ├── lib/ - Shared PowerShell libraries
3939
│ └── legacy/ - Deprecated bash scripts
40+
├── tests/ - E2E tests (review pipeline validation)
4041
├── METHODOLOGY.md - 6-phase development process
4142
└── CHANGELOG.md - Version history
4243
```
@@ -100,6 +101,8 @@ grep -r "HerbHall\|SubNetree\|D:\\\\DevSpace" claude/ devspace/ mcp/ setup/
100101

101102
**Sync from a workstation:**
102103

104+
With symlinks active (via `setup/sync.ps1 -Link`), changes to `~/.claude/` are already in the DevKit clone. Run `/devkit-sync push` to commit and push. For manual sync without symlinks:
105+
103106
```bash
104107
cp ~/.claude/rules/*.md claude/rules/
105108
cp -r ~/.claude/skills/new-skill claude/skills/

README.md

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ Setup creates symlinks from `~/.claude/` to the DevKit clone (or copies files in
3131

3232
| Component | Count | Location |
3333
|-----------|-------|----------|
34-
| Rules (auto-loaded every session) | 5 files | `claude/rules/` |
34+
| Rules (auto-loaded every session) | 8 files | `claude/rules/` |
3535
| Skills (invoke with `/skill-name`) | 18 skills | `claude/skills/` |
36-
| Agent templates | 6 agents | `claude/agents/` |
36+
| Agent templates | 7 agents | `claude/agents/` |
3737
| SessionStart hook | 1 | `claude/hooks/` |
3838
| Setup + verification scripts | 3 | `setup/legacy/` |
3939

@@ -54,7 +54,7 @@ Setup creates symlinks from `~/.claude/` to the DevKit clone (or copies files in
5454

5555
| Directory | Purpose |
5656
|-----------|---------|
57-
| `claude/` | Global Claude Code config — CLAUDE.md, 5 rules files (70+ patterns), 18 skills, 6 agent templates, hooks |
57+
| `claude/` | Global Claude Code config — CLAUDE.md, 8 rules files (135+ patterns), 18 skills, 7 agent templates, hooks |
5858
| `devspace/` | Workspace shared configs — .editorconfig, .markdownlint.json, VS Code fragments |
5959
| `docs/` | Human-readable guides — architecture decisions, profile format spec |
6060
| `machine/` | Machine state snapshots — VS Code extensions, tool versions |
@@ -190,9 +190,12 @@ With symlinks active, changes flow automatically:
190190

191191
| File | Entries | Purpose |
192192
|------|---------|---------|
193-
| `autolearn-patterns.md` | 70+ | Learned patterns: lint fixes, CI config, architecture, testing |
194-
| `known-gotchas.md` | 47+ | Platform issues: Windows, GitHub, Go, React, Docker |
193+
| `agent-team-coordination.md` | - | Multi-agent team coordination rules and anti-patterns |
194+
| `autolearn-patterns.md` | 76 | Learned patterns: lint fixes, CI config, architecture, testing |
195+
| `compaction-recovery.md` | - | Context compaction recovery rules and loop detection |
196+
| `known-gotchas.md` | 60 | Platform issues: Windows, GitHub, Go, React, Docker |
195197
| `markdown-style.md` | - | Markdownlint conventions |
198+
| `review-policy.md` | - | Independent review policy: mandatory triggers and scope |
196199
| `subagent-ci-checklist.md` | - | Pre-commit CI validation checklists |
197200
| `workflow-preferences.md` | 11 | Established conventions: git, commits, testing |
198201

@@ -218,12 +221,16 @@ Claude.ai Chat uses a separate skill store - install via Settings > Skills in th
218221
| server-management | Process management, monitoring, scaling decisions | Code/Cowork |
219222
| systematic-debugging | 4-phase debugging with root cause analysis | Code/Chat |
220223
| webapp-testing | E2E testing, Playwright, deep audit strategies | Code |
224+
| code-review | Independent code review gate before commits | Code |
225+
| plan-review | Independent plan review gate before implementation | Code |
226+
| devkit-sync | Multi-machine DevKit sync: status, push, pull, init, diff | Code |
221227

222228
### Agent Templates
223229

224230
| Agent | Purpose |
225231
|-------|---------|
226232
| go-test-writer | Table-driven Go tests, benchmarks, mock interfaces |
233+
| plan-reviewer | Adversarial plan review with fresh context |
227234
| review-code | Security + quality review with verdict |
228235
| security-analyzer | OWASP-focused vulnerability analysis |
229236
| portfolio-analyzer | Scans all agent/skill locations for overlap and gaps |

0 commit comments

Comments
 (0)