Afficher les nouveautés de Kata

VérifiéSûr

Affiche les entrées du journal des modifications entre la version installée et la dernière version disponible, compare les versions et fournit des instructions de mise à jour. Utile pour passer rapidement en revue les changements récents et décider de mettre à jour.

Spar Skills Guide Bot
DeveloppementIntermédiaire
5002/06/2026
Claude Code
#kata#whats-new#changelog#version-check

Recommandé pour

Notre avis

Affiche les modifications entre la version installée de Kata et la dernière version disponible, y compris les entrées du journal des modifications et les instructions de mise à jour.

Points forts

  • Comparaison claire des versions avec mise en évidence des changements majeurs.
  • Récupération du journal des modifications distant avec repli local en cas d'absence de connexion.
  • Instructions de mise à jour fournies directement.
  • Surface les changements cassants (breaking changes) de manière proéminente.

Limites

  • Ne fonctionne que pour le plugin Kata, pas pour d'autres outils.
  • Nécessite une connexion internet pour la version distante (repli local sinon).
  • Dépend de l'existence du fichier VERSION pour la comparaison.
Quand l'utiliser

Lorsque vous voulez vérifier si des mises à jour de Kata sont disponibles et voir ce qui a changé depuis votre version.

Quand l'éviter

Lorsque vous devez mettre à jour d'autres plugins ou outils non-Kata, ou si vous cherchez des changements généraux du système.

Analyse de sécurité

Sûr
Score qualité92/100

The skill only reads local files (VERSION, CHANGELOG.md) using safe bash commands. No external network calls are made via shell; the WebFetch tool reference is safe and non-destructive. No destructive actions, exfiltration, or obfuscation. Safe for execution.

Aucun point d'attention détecté

Exemples

Check for Kata updates
What's new in Kata?
Show changelog
Show the Kata changelog
Recent changes
What changed in Kata recently?

name: kata-whats-new description: Show 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". metadata: version: "0.1.0" allowed-tools: Read Write Bash

<objective> Display changes between installed version and latest available version.

Shows version comparison, changelog entries for missed versions, and update instructions. </objective>

<process> <step name="get_installed_version"> 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. </step>

<step name="fetch_remote_changelog"> Fetch latest CHANGELOG.md from GitHub:

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." </step>

<step name="parse_versions"> From the remote (or local) changelog:
  1. Extract latest version - First ## [X.Y.Z] line after ## [Unreleased]
  2. Compare with installed - From VERSION file
  3. 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?)" </step>
<step name="display_output"> Format output clearly:

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. </step>

</process>

<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>
Skills similaires