@gannonh/kata 0.1.4 → 0.2.0
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 +55 -28
- package/agents/kata-debugger.md +20 -1
- package/agents/kata-entity-generator.md +237 -0
- package/agents/kata-executor.md +31 -0
- package/agents/kata-phase-researcher.md +13 -4
- package/agents/kata-planner.md +19 -0
- package/agents/kata-project-researcher.md +5 -5
- package/agents/kata-research-synthesizer.md +9 -0
- package/bin/install.js +100 -38
- package/commands/kata/add-phase.md +8 -195
- package/commands/kata/add-todo.md +8 -170
- package/commands/kata/audit-milestone.md +10 -248
- package/commands/kata/check-todo.md +20 -0
- package/commands/kata/complete-milestone.md +8 -124
- package/commands/kata/debug.md +9 -138
- package/commands/kata/discuss-phase.md +13 -73
- package/commands/kata/execute-phase.md +9 -293
- package/commands/kata/help.md +13 -376
- package/commands/kata/insert-phase.md +8 -215
- package/commands/kata/list-phase-assumptions.md +10 -40
- package/commands/kata/map-codebase.md +10 -61
- package/commands/kata/pause-work.md +9 -112
- package/commands/kata/plan-milestone-gaps.md +9 -273
- package/commands/kata/plan-phase.md +9 -464
- package/commands/kata/progress.md +10 -346
- package/commands/kata/quick.md +20 -0
- package/commands/kata/remove-phase.md +8 -326
- package/commands/kata/research-phase.md +10 -170
- package/commands/kata/resume-work.md +10 -30
- package/commands/kata/set-profile.md +20 -0
- package/commands/kata/settings.md +20 -0
- package/commands/kata/start-milestone.md +20 -0
- package/commands/kata/start-new-milestone.md +20 -0
- package/commands/kata/start-project.md +20 -0
- package/commands/kata/update-kata.md +20 -0
- package/commands/kata/update.md +13 -219
- package/commands/kata/verify-work.md +10 -209
- package/commands/kata/whats-new.md +13 -117
- package/kata/references/checkpoints.md +318 -28
- package/kata/references/model-profiles.md +73 -0
- package/kata/references/planning-config.md +94 -0
- package/kata/references/ui-brand.md +2 -2
- package/kata/references/verification-patterns.md +17 -0
- package/kata/templates/codebase/architecture.md +2 -2
- package/kata/templates/codebase/structure.md +4 -4
- package/kata/templates/config.json +9 -0
- package/kata/templates/entity.md +173 -0
- package/kata/templates/phase-prompt.md +18 -27
- package/kata/workflows/complete-milestone.md +11 -0
- package/kata/workflows/diagnose-issues.md +12 -1
- package/kata/workflows/discovery-phase.md +5 -9
- package/kata/workflows/discuss-phase.md +11 -0
- package/kata/workflows/execute-phase.md +68 -9
- package/kata/workflows/execute-plan.md +47 -4
- package/kata/workflows/map-codebase.md +35 -2
- package/kata/workflows/resume-project.md +4 -0
- package/kata/workflows/verify-phase.md +2 -3
- package/kata/workflows/verify-work.md +36 -3
- package/package.json +12 -5
- package/skills/kata-adding-phases/SKILL.md +209 -0
- package/skills/kata-adding-todos/SKILL.md +195 -0
- package/skills/kata-auditing-milestones/SKILL.md +279 -0
- package/{commands/kata/check-todos.md → skills/kata-checking-todos/SKILL.md} +16 -5
- package/skills/kata-completing-milestones/SKILL.md +137 -0
- package/skills/kata-configuring-settings/SKILL.md +139 -0
- package/skills/kata-debugging/SKILL.md +170 -0
- package/skills/kata-discussing-phases/SKILL.md +85 -0
- package/skills/kata-executing-phases/SKILL.md +335 -0
- package/skills/kata-executing-quick-tasks/SKILL.md +306 -0
- package/skills/kata-inserting-phases/SKILL.md +229 -0
- package/skills/kata-listing-phase-assumptions/SKILL.md +51 -0
- package/skills/kata-mapping-codebases/SKILL.md +70 -0
- package/skills/kata-pausing-work/SKILL.md +137 -0
- package/skills/kata-planning-milestone-gaps/SKILL.md +295 -0
- package/skills/kata-planning-phases/SKILL.md +521 -0
- package/skills/kata-providing-help/SKILL.md +495 -0
- package/skills/kata-removing-phases/SKILL.md +350 -0
- package/skills/kata-researching-phases/SKILL.md +202 -0
- package/skills/kata-resuming-work/SKILL.md +41 -0
- package/skills/kata-setting-profiles/SKILL.md +109 -0
- package/skills/kata-showing-whats-new/SKILL.md +131 -0
- package/skills/kata-starting-milestones/SKILL.md +721 -0
- package/{commands/kata/new-milestone.md → skills/kata-starting-new-milestones/SKILL.md} +256 -272
- package/{commands/kata/new-project.md → skills/kata-starting-projects/SKILL.md} +138 -29
- package/skills/kata-tracking-progress/SKILL.md +365 -0
- package/skills/kata-updating/SKILL.md +179 -0
- package/skills/kata-updating-kata/SKILL.md +179 -0
- package/skills/kata-verifying-work/SKILL.md +217 -0
- /package/hooks/{statusline.js → kata-statusline.js} +0 -0
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: kata-showing-whats-new
|
|
3
|
+
description: Use this skill when showing what's new in Kata since the installed version, displaying changelog entries, checking for Kata updates, or reviewing recent changes. Triggers include "what's new", "whats new", "show changes", "changelog", "recent changes", and "what changed".
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
user-invocable: false
|
|
6
|
+
disable-model-invocation: false
|
|
7
|
+
allowed-tools:
|
|
8
|
+
- Read
|
|
9
|
+
- Write
|
|
10
|
+
- Bash
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
<objective>
|
|
14
|
+
Display changes between installed version and latest available version.
|
|
15
|
+
|
|
16
|
+
Shows version comparison, changelog entries for missed versions, and update instructions.
|
|
17
|
+
</objective>
|
|
18
|
+
|
|
19
|
+
<process>
|
|
20
|
+
|
|
21
|
+
<step name="get_installed_version">
|
|
22
|
+
Read installed version from VERSION file:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
cat ~/.claude/get-shit-done/VERSION 2>/dev/null
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
**If VERSION file missing:**
|
|
29
|
+
```
|
|
30
|
+
## Kata What's New
|
|
31
|
+
|
|
32
|
+
**Installed version:** Unknown
|
|
33
|
+
|
|
34
|
+
Your installation doesn't include version tracking.
|
|
35
|
+
|
|
36
|
+
**To fix:** `npx get-shit-done-cc --global`
|
|
37
|
+
|
|
38
|
+
This will reinstall with version tracking enabled.
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
STOP here if no VERSION file.
|
|
42
|
+
</step>
|
|
43
|
+
|
|
44
|
+
<step name="fetch_remote_changelog">
|
|
45
|
+
Fetch latest CHANGELOG.md from GitHub:
|
|
46
|
+
|
|
47
|
+
Use WebFetch tool with:
|
|
48
|
+
- URL: `https://raw.githubusercontent.com/glittercowboy/get-shit-done/main/CHANGELOG.md`
|
|
49
|
+
- Prompt: "Extract all version entries with their dates and changes. Return in Keep-a-Changelog format."
|
|
50
|
+
|
|
51
|
+
**If fetch fails:**
|
|
52
|
+
Fall back to local changelog:
|
|
53
|
+
```bash
|
|
54
|
+
cat ~/.claude/get-shit-done/CHANGELOG.md 2>/dev/null
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
Note to user: "Couldn't check for updates (offline or GitHub unavailable). Showing local changelog."
|
|
58
|
+
</step>
|
|
59
|
+
|
|
60
|
+
<step name="parse_versions">
|
|
61
|
+
From the remote (or local) changelog:
|
|
62
|
+
|
|
63
|
+
1. **Extract latest version** - First `## [X.Y.Z]` line after `## [Unreleased]`
|
|
64
|
+
2. **Compare with installed** - From VERSION file
|
|
65
|
+
3. **Extract entries between** - All version sections from latest down to (but not including) installed
|
|
66
|
+
|
|
67
|
+
**Version comparison:**
|
|
68
|
+
- If installed == latest: "You're on the latest version"
|
|
69
|
+
- If installed < latest: Show changes since installed version
|
|
70
|
+
- If installed > latest: "You're ahead of latest release (development version?)"
|
|
71
|
+
</step>
|
|
72
|
+
|
|
73
|
+
<step name="display_output">
|
|
74
|
+
Format output clearly:
|
|
75
|
+
|
|
76
|
+
**If up to date:**
|
|
77
|
+
```
|
|
78
|
+
## Kata What's New
|
|
79
|
+
|
|
80
|
+
**Installed:** 1.4.26
|
|
81
|
+
**Latest:** 1.4.26
|
|
82
|
+
|
|
83
|
+
You're on the latest version.
|
|
84
|
+
|
|
85
|
+
[View full changelog](https://github.com/glittercowboy/get-shit-done/blob/main/CHANGELOG.md)
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
**If updates available:**
|
|
89
|
+
```
|
|
90
|
+
## Kata What's New
|
|
91
|
+
|
|
92
|
+
**Installed:** 1.4.23
|
|
93
|
+
**Latest:** 1.4.26
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
### Changes since your version:
|
|
98
|
+
|
|
99
|
+
## [1.4.26] - 2026-01-20
|
|
100
|
+
|
|
101
|
+
### Added
|
|
102
|
+
- Feature X
|
|
103
|
+
- Feature Y
|
|
104
|
+
|
|
105
|
+
### Changed
|
|
106
|
+
- **BREAKING:** Changed Z behavior
|
|
107
|
+
|
|
108
|
+
## [1.4.25] - 2026-01-18
|
|
109
|
+
|
|
110
|
+
### Fixed
|
|
111
|
+
- Bug in feature A
|
|
112
|
+
|
|
113
|
+
---
|
|
114
|
+
|
|
115
|
+
[View full changelog](https://github.com/glittercowboy/get-shit-done/blob/main/CHANGELOG.md)
|
|
116
|
+
|
|
117
|
+
**To update:** `npx get-shit-done-cc --global`
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
**Breaking changes:** Surface prominently with **BREAKING:** prefix in the output.
|
|
121
|
+
</step>
|
|
122
|
+
|
|
123
|
+
</process>
|
|
124
|
+
|
|
125
|
+
<success_criteria>
|
|
126
|
+
- [ ] Installed version read from VERSION file
|
|
127
|
+
- [ ] Remote changelog fetched (or graceful fallback to local)
|
|
128
|
+
- [ ] Version comparison displayed clearly
|
|
129
|
+
- [ ] Changes since installed version shown (if any)
|
|
130
|
+
- [ ] Update instructions provided when behind
|
|
131
|
+
</success_criteria>
|