kakaroto-config 1.0.3 → 1.0.5

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.
Files changed (2) hide show
  1. package/README.md +38 -10
  2. package/package.json +3 -3
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/ # 5 phases: interview → spec → plan → implement → quality
41
+ │ ├── feature/ # 7 phases: interview → spec → plan → implement → quality → commit → evaluate
42
42
  │ ├── debug.md # /debug orchestrator
43
- │ ├── debug/ # 5 phases: reproduce investigate fix → verify → commit
43
+ │ ├── debug/ # 6 phases + playbooks, techniques, templates, validators
44
44
  │ └── gate.md # /gate - quality gate before PR
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
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
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "kakaroto-config",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Claude Code configuration by Pedro Jahara - autonomous workflows for /feature, /debug, /gate",
5
5
  "bin": {
6
- "kakaroto-config": "./bin/install.js"
6
+ "kakaroto-config": "bin/install.js"
7
7
  },
8
8
  "scripts": {
9
9
  "release": "node bin/release.js"
@@ -24,6 +24,6 @@
24
24
  "license": "MIT",
25
25
  "repository": {
26
26
  "type": "git",
27
- "url": "https://github.com/pedrojahara/kakaroto-config"
27
+ "url": "git+https://github.com/pedrojahara/kakaroto-config.git"
28
28
  }
29
29
  }