kata-whats-new
Shows version comparison, changelog entries for missed versions, and update instructions.
if [ -n "$CLAUDE_PLUGIN_ROOT" ]; then
cat "$CLAUDE_PLUGIN_ROOT/VERSION" 2>/dev/null
fi
If VERSION file missing:
## Kata What's New
**Installed version:** Unknown
Your installation doesn't include version tracking.
**To reinstall:**
`/plugin install kata@kata-marketplace`
STOP here if no VERSION file.
Use WebFetch tool with:
- URL:
https://raw.githubusercontent.com/gannonh/kata/refs/heads/main/CHANGELOG.md - Prompt: "Extract all version entries with their dates and changes. Return in Keep-a-Changelog format."
If fetch fails: Fall back to local changelog:
cat "$CLAUDE_PLUGIN_ROOT/CHANGELOG.md" 2>/dev/null
Note to user: "Couldn't check for updates (offline or GitHub unavailable). Showing local changelog."
- Extract latest version - First
## [X.Y.Z]line after## [Unreleased] - Compare with installed - From VERSION file
- Extract entries between - All version sections from latest down to (but not including) installed
Version comparison:
- If installed == latest: "You're on the latest version"
- If installed < latest: Show changes since installed version
- If installed > latest: "You're ahead of latest release (development version?)"
If up to date:
## Kata What's New
**Installed:** 1.4.26
**Latest:** 1.4.26
You're on the latest version.
[View full changelog](https://github.com/gannnonh/kata/blob/main/CHANGELOG.md)
If updates available:
## Kata What's New
**Installed:** 1.4.23
**Latest:** 1.4.26
---
### Changes since your version:
## [1.4.26] - 2026-01-20
### Added
- Feature X
- Feature Y
### Changed
- **BREAKING:** Changed Z behavior
## [1.4.25] - 2026-01-18
### Fixed
- Bug in feature A
---
[View full changelog](https://github.com/gannnonh/kata/blob/main/CHANGELOG.md)
**To update:**
`/plugin update kata@kata-marketplace`
Breaking changes: Surface prominently with BREAKING: prefix in the output.
<success_criteria>
- Installed version read from VERSION file
- Remote changelog fetched (or graceful fallback to local)
- Version comparison displayed clearly
- Changes since installed version shown (if any)
- Update instructions provided when behind </success_criteria>
More from gannonh/kata-orchestrator
kata-pause-work
Create a context handoff file, pausing work mid-phase, stopping work temporarily, or creating a checkpoint for session resumption. Triggers include "pause work", "stop work", "create handoff", "save progress", and "pause session".
2kata-brainstorm
Run structured brainstorming sessions using paired explorer/challenger agent teams. Explorers generate ideas, challengers play devil's advocate, and 2-3 rounds of debate produce pressure-tested proposals. Use when brainstorming product ideas, exploring feature directions, evaluating strategic options, generating milestone candidates, or when the user says "brainstorm", "explore ideas", "what should we build next", "generate options", or "run an ideation session".
1kata-map-codebase
Analyze an existing codebase with parallel mapper agents, creating codebase documentation, understanding brownfield projects, or mapping code structure. Triggers include "map codebase", "analyze codebase", "create project context", "document codebase", "understand code", and "codebase map".
1kata-customize
Manage template overrides for customizing Kata output formats. List available templates, copy defaults for local editing, edit overrides, validate template schemas. Triggers include "customize template", "override template", "edit template", "template overrides", "list templates", "show templates", "template customization", "manage templates", "what templates can I customize", "template schema", "custonmize Kata", "custom config".
1kata-new-project
Initialize a new project with deep context gathering and project.md. Triggers include "new project", "start project", "initialize project", "create project", "begin project", "setup project".
1kata-plan-phase
Plan detailed roadmap phases. Triggers include "plan phase n", "create phase plan", "create a plan" "roadmap planning", and "roadmap phase creation".
1