kakaroto-config 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +38 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,18 +38,20 @@ The installer will detect the existing `.claude/` folder and ask if you want to
|
|
|
38
38
|
├── ARCHITECTURE.md # Full documentation of the system
|
|
39
39
|
├── commands/ # Skills (invoked via /skill)
|
|
40
40
|
│ ├── feature.md # /feature orchestrator
|
|
41
|
-
│ ├── feature/ #
|
|
41
|
+
│ ├── feature/ # 7 phases: interview → spec → plan → implement → quality → commit → evaluate
|
|
42
42
|
│ ├── debug.md # /debug orchestrator
|
|
43
|
-
│ ├── debug/ #
|
|
43
|
+
│ ├── debug/ # 6 phases + playbooks, techniques, templates, validators
|
|
44
44
|
│ └── gate.md # /gate - quality gate before PR
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
45
|
+
├── agents/ # 7 specialized subagents
|
|
46
|
+
│ ├── test-fixer.md
|
|
47
|
+
│ ├── code-reviewer.md
|
|
48
|
+
│ ├── code-simplifier.md
|
|
49
|
+
│ ├── dry-enforcer.md
|
|
50
|
+
│ ├── visual-validator.md
|
|
51
|
+
│ ├── terraform-validator.md
|
|
52
|
+
│ └── memory-sync.md
|
|
53
|
+
└── templates/ # Spec templates
|
|
54
|
+
└── spec-template.md
|
|
53
55
|
```
|
|
54
56
|
|
|
55
57
|
## Skills (Commands)
|
|
@@ -149,6 +151,32 @@ Done
|
|
|
149
151
|
- MCP Memory server (optional, for knowledge persistence)
|
|
150
152
|
- Playwright MCP (optional, for visual validation)
|
|
151
153
|
|
|
154
|
+
## Development
|
|
155
|
+
|
|
156
|
+
### Releasing a New Version
|
|
157
|
+
|
|
158
|
+
This project uses `~/.claude/` as the source of truth. To publish changes:
|
|
159
|
+
|
|
160
|
+
```bash
|
|
161
|
+
npm run release
|
|
162
|
+
```
|
|
163
|
+
|
|
164
|
+
This command will:
|
|
165
|
+
1. Sync files from `~/.claude/` to `config/` (excluding personal files like `audit-command/`)
|
|
166
|
+
2. Bump the patch version automatically
|
|
167
|
+
3. Create a git commit and push
|
|
168
|
+
4. Publish to npm
|
|
169
|
+
|
|
170
|
+
**Files synced:**
|
|
171
|
+
- `CLAUDE.md`, `ARCHITECTURE.md`
|
|
172
|
+
- `commands/` (all skills)
|
|
173
|
+
- `agents/` (all subagents)
|
|
174
|
+
- `templates/`
|
|
175
|
+
|
|
176
|
+
**Files excluded:**
|
|
177
|
+
- `audit-command/` (personal)
|
|
178
|
+
- Session data (`plans/`, `specs/`, `interviews/`, etc.)
|
|
179
|
+
|
|
152
180
|
## License
|
|
153
181
|
|
|
154
182
|
MIT
|