From kata
Displays Kata changelog changes since installed version by comparing to latest release, with update instructions. Auto-triggers on 'what's new', 'changelog', or similar phrases.
npx claudepluginhub withmartian-sandbox-darkside/ghrc-y-73d04e3c2aae45e2ac89d7e8506d8eaaThis skill uses the workspace's default tool permissions.
<objective>
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Shows version comparison, changelog entries for missed versions, and update instructions.
Read installed version from VERSION file (checking plugin context first):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.
Fetch latest CHANGELOG.md from GitHub:Use WebFetch tool with:
https://raw.githubusercontent.com/gannonh/kata/refs/heads/main/CHANGELOG.mdIf 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."
From the remote (or local) changelog:## [X.Y.Z] line after ## [Unreleased]Version comparison:
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>