@gannonh/kata 0.1.6 โ 0.1.7
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
CHANGED
|
@@ -28,6 +28,27 @@ npx @gannonh/kata
|
|
|
28
28
|
|
|
29
29
|
---
|
|
30
30
|
|
|
31
|
+
## Talk to It Like a Person
|
|
32
|
+
|
|
33
|
+
Drive your entire workflow with **natural language**. ๐ฃ๏ธ
|
|
34
|
+
|
|
35
|
+
No memorizing commands. No syntax. Just say what you want:
|
|
36
|
+
|
|
37
|
+
| You say... | Kata does... |
|
|
38
|
+
| ------------------------ | -------------------------------------- |
|
|
39
|
+
| "Start a new project" | Launches full project initialization |
|
|
40
|
+
| "What's the status?" | Shows progress, next steps, blockers |
|
|
41
|
+
| "Plan phase 2" | Researches and creates execution plans |
|
|
42
|
+
| "Execute the phase" | Runs all plans with parallel agents |
|
|
43
|
+
| "I'm done for today" | Creates handoff for session resumption |
|
|
44
|
+
| "Debug this login issue" | Spawns systematic debugging workflow |
|
|
45
|
+
|
|
46
|
+
Every workflow responds to natural language. Slash commands exist for precision when you want them (`/kata:plan-phase 2`), but you never *need* them.
|
|
47
|
+
|
|
48
|
+
**This isn't autocomplete. It's intent recognition.** Kata understands what you're trying to accomplish and routes to the right workflow โ research, planning, execution, verification โ automatically.
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
31
52
|
## Who This Is For
|
|
32
53
|
|
|
33
54
|
Teams and individuals that want to describe what they want and have it built correctly.
|
|
@@ -137,8 +158,9 @@ If you prefer not to use that flag, add this to your project's `.claude/settings
|
|
|
137
158
|
### 1. Initialize Project
|
|
138
159
|
|
|
139
160
|
```
|
|
140
|
-
|
|
161
|
+
"Start a new project"
|
|
141
162
|
```
|
|
163
|
+
<sub>or `/kata:new-project`</sub>
|
|
142
164
|
|
|
143
165
|
One command, one flow. The system:
|
|
144
166
|
|
|
@@ -156,8 +178,9 @@ You approve the roadmap. Now you're ready to build.
|
|
|
156
178
|
### 2. Discuss Phase
|
|
157
179
|
|
|
158
180
|
```
|
|
159
|
-
|
|
181
|
+
"Let's discuss phase 1"
|
|
160
182
|
```
|
|
183
|
+
<sub>or `/kata:discuss-phase 1`</sub>
|
|
161
184
|
|
|
162
185
|
**This is where you shape the implementation.**
|
|
163
186
|
|
|
@@ -184,8 +207,9 @@ The deeper you go here, the more the system builds what you actually want. Skip
|
|
|
184
207
|
### 3. Plan Phase
|
|
185
208
|
|
|
186
209
|
```
|
|
187
|
-
|
|
210
|
+
"Plan phase 1"
|
|
188
211
|
```
|
|
212
|
+
<sub>or `/kata:plan-phase 1`</sub>
|
|
189
213
|
|
|
190
214
|
The system:
|
|
191
215
|
|
|
@@ -202,8 +226,9 @@ Each plan is small enough to execute in a fresh context window. No degradation,
|
|
|
202
226
|
### 4. Execute Phase
|
|
203
227
|
|
|
204
228
|
```
|
|
205
|
-
|
|
229
|
+
"Execute phase 1"
|
|
206
230
|
```
|
|
231
|
+
<sub>or `/kata:execute-phase 1`</sub>
|
|
207
232
|
|
|
208
233
|
The system:
|
|
209
234
|
|
|
@@ -221,8 +246,9 @@ Walk away, come back to completed work with clean git history.
|
|
|
221
246
|
### 5. Verify Work
|
|
222
247
|
|
|
223
248
|
```
|
|
224
|
-
|
|
249
|
+
"Verify phase 1"
|
|
225
250
|
```
|
|
251
|
+
<sub>or `/kata:verify-work 1`</sub>
|
|
226
252
|
|
|
227
253
|
**This is where you confirm it actually works.**
|
|
228
254
|
|
|
@@ -244,13 +270,13 @@ If everything passes, you move on. If something's broken, you don't manually deb
|
|
|
244
270
|
### 6. Repeat โ Complete โ Next Milestone
|
|
245
271
|
|
|
246
272
|
```
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
273
|
+
"Discuss phase 2"
|
|
274
|
+
"Plan phase 2"
|
|
275
|
+
"Execute phase 2"
|
|
276
|
+
"Verify phase 2"
|
|
251
277
|
...
|
|
252
|
-
|
|
253
|
-
|
|
278
|
+
"Complete the milestone"
|
|
279
|
+
"Start the next milestone"
|
|
254
280
|
```
|
|
255
281
|
|
|
256
282
|
Loop **discuss โ plan โ execute โ verify** until milestone complete.
|
|
@@ -266,8 +292,9 @@ Then `/kata:new-milestone` starts the next version โ same flow as `new-project
|
|
|
266
292
|
### Quick Mode
|
|
267
293
|
|
|
268
294
|
```
|
|
269
|
-
|
|
295
|
+
"Quick task: add dark mode toggle"
|
|
270
296
|
```
|
|
297
|
+
<sub>or `/kata:quick`</sub>
|
|
271
298
|
|
|
272
299
|
**For ad-hoc tasks that don't need full planning.**
|
|
273
300
|
|
|
@@ -373,10 +400,12 @@ You're never locked in. The system adapts.
|
|
|
373
400
|
|
|
374
401
|
## Commands
|
|
375
402
|
|
|
403
|
+
> **Remember:** All commands also respond to natural language. "What's my progress?" works the same as `/kata:progress`.
|
|
404
|
+
|
|
376
405
|
### Core Workflow
|
|
377
406
|
|
|
378
|
-
| Command
|
|
379
|
-
|
|
|
407
|
+
| Command | What it does |
|
|
408
|
+
| ---------------------------- | ------------------------------------------------------------------ |
|
|
380
409
|
| `/kata:new-project` | Full initialization: questions โ research โ requirements โ roadmap |
|
|
381
410
|
| `/kata:discuss-phase [N]` | Capture implementation decisions before planning |
|
|
382
411
|
| `/kata:plan-phase [N]` | Research + plan + verify for a phase |
|
|
@@ -388,23 +417,23 @@ You're never locked in. The system adapts.
|
|
|
388
417
|
|
|
389
418
|
### Navigation
|
|
390
419
|
|
|
391
|
-
| Command
|
|
392
|
-
|
|
|
420
|
+
| Command | What it does |
|
|
421
|
+
| ----------------- | --------------------------------------------- |
|
|
393
422
|
| `/kata:progress` | Where am I? What's next? |
|
|
394
423
|
| `/kata:help` | Show all commands and usage guide |
|
|
395
424
|
| `/kata:whats-new` | See what changed since your installed version |
|
|
396
|
-
| `/kata:update` | Update Kata with changelog preview
|
|
425
|
+
| `/kata:update` | Update Kata with changelog preview |
|
|
397
426
|
|
|
398
427
|
### Brownfield
|
|
399
428
|
|
|
400
|
-
| Command
|
|
401
|
-
|
|
|
429
|
+
| Command | What it does |
|
|
430
|
+
| -------------------- | -------------------------------------------- |
|
|
402
431
|
| `/kata:map-codebase` | Analyze existing codebase before new-project |
|
|
403
432
|
|
|
404
433
|
### Phase Management
|
|
405
434
|
|
|
406
|
-
| Command
|
|
407
|
-
|
|
|
435
|
+
| Command | What it does |
|
|
436
|
+
| ---------------------------------- | ---------------------------------------------- |
|
|
408
437
|
| `/kata:add-phase` | Append phase to roadmap |
|
|
409
438
|
| `/kata:insert-phase [N]` | Insert urgent work between phases |
|
|
410
439
|
| `/kata:remove-phase [N]` | Remove future phase, renumber |
|
|
@@ -413,21 +442,21 @@ You're never locked in. The system adapts.
|
|
|
413
442
|
|
|
414
443
|
### Session
|
|
415
444
|
|
|
416
|
-
| Command
|
|
417
|
-
|
|
|
445
|
+
| Command | What it does |
|
|
446
|
+
| ------------------- | -------------------------------------- |
|
|
418
447
|
| `/kata:pause-work` | Create handoff when stopping mid-phase |
|
|
419
448
|
| `/kata:resume-work` | Restore from last session |
|
|
420
449
|
|
|
421
450
|
### Utilities
|
|
422
451
|
|
|
423
|
-
| Command
|
|
424
|
-
|
|
|
452
|
+
| Command | What it does |
|
|
453
|
+
| ----------------------------- | ---------------------------------------------- |
|
|
425
454
|
| `/kata:settings` | Configure model profile and workflow agents |
|
|
426
455
|
| `/kata:set-profile <profile>` | Switch model profile (quality/balanced/budget) |
|
|
427
456
|
| `/kata:add-todo [desc]` | Capture idea for later |
|
|
428
457
|
| `/kata:check-todos` | List pending todos |
|
|
429
458
|
| `/kata:debug [desc]` | Systematic debugging with persistent state |
|
|
430
|
-
| `/kata:quick` | Execute ad-hoc task with Kata guarantees
|
|
459
|
+
| `/kata:quick` | Execute ad-hoc task with Kata guarantees |
|
|
431
460
|
|
|
432
461
|
<sup>ยน Contributed by reddit user OracleGreyBeard</sup>
|
|
433
462
|
|
|
@@ -531,4 +560,6 @@ MIT License. See [LICENSE](LICENSE) for details.
|
|
|
531
560
|
|
|
532
561
|
**Claude Code is powerful. Kata makes it reliable.**
|
|
533
562
|
|
|
563
|
+
*Just tell it what you want.*
|
|
564
|
+
|
|
534
565
|
</div>
|
package/package.json
CHANGED
|
@@ -33,7 +33,7 @@ cat ~/.claude/kata/VERSION 2>/dev/null
|
|
|
33
33
|
|
|
34
34
|
Your installation doesn't include version tracking.
|
|
35
35
|
|
|
36
|
-
**To fix:** `npx kata
|
|
36
|
+
**To fix:** `npx @gannonh/kata --global`
|
|
37
37
|
|
|
38
38
|
This will reinstall with version tracking enabled.
|
|
39
39
|
```
|
|
@@ -45,7 +45,7 @@ STOP here if no VERSION file.
|
|
|
45
45
|
Fetch latest CHANGELOG.md from GitHub:
|
|
46
46
|
|
|
47
47
|
Use WebFetch tool with:
|
|
48
|
-
- URL: `https://raw.githubusercontent.com/
|
|
48
|
+
- URL: `https://raw.githubusercontent.com/gannnonh/kata/main/CHANGELOG.md`
|
|
49
49
|
- Prompt: "Extract all version entries with their dates and changes. Return in Keep-a-Changelog format."
|
|
50
50
|
|
|
51
51
|
**If fetch fails:**
|
|
@@ -82,7 +82,7 @@ Format output clearly:
|
|
|
82
82
|
|
|
83
83
|
You're on the latest version.
|
|
84
84
|
|
|
85
|
-
[View full changelog](https://github.com/
|
|
85
|
+
[View full changelog](https://github.com/gannnonh/kata/blob/main/CHANGELOG.md)
|
|
86
86
|
```
|
|
87
87
|
|
|
88
88
|
**If updates available:**
|
|
@@ -112,9 +112,9 @@ You're on the latest version.
|
|
|
112
112
|
|
|
113
113
|
---
|
|
114
114
|
|
|
115
|
-
[View full changelog](https://github.com/
|
|
115
|
+
[View full changelog](https://github.com/gannnonh/kata/blob/main/CHANGELOG.md)
|
|
116
116
|
|
|
117
|
-
**To update:** `npx kata
|
|
117
|
+
**To update:** `npx @gannonh/kata --global`
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
**Breaking changes:** Surface prominently with **BREAKING:** prefix in the output.
|
|
@@ -13,7 +13,7 @@ allowed-tools:
|
|
|
13
13
|
<objective>
|
|
14
14
|
Check for Kata updates, install if available, and display what changed.
|
|
15
15
|
|
|
16
|
-
Provides a better update experience than raw `npx kata
|
|
16
|
+
Provides a better update experience than raw `npx @gannonh/kata` by showing version diff and changelog entries.
|
|
17
17
|
</objective>
|
|
18
18
|
|
|
19
19
|
<process>
|