From f0f1ddc0ee659e651766be67ca00a8b675215cd6 Mon Sep 17 00:00:00 2001 From: stellarshenson Date: Tue, 20 Jan 2026 09:47:16 +0100 Subject: [PATCH] docs: rename short_version to version_suffix in checkpoint command --- .claude/commands/checkpoint.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.claude/commands/checkpoint.md b/.claude/commands/checkpoint.md index f6526c5..37bdc6a 100644 --- a/.claude/commands/checkpoint.md +++ b/.claude/commands/checkpoint.md @@ -4,12 +4,12 @@ description: Create checkpoint tag before major change or after important milest Create a checkpoint tag to mark a stable point before implementing major changes or after completing important work. -**Tag format**: `CHECKPOINT__` +**Tag format**: `CHECKPOINT__` - Name should be uppercase with underscores (e.g., `BEFORE_ACTIVITY_TRACKER`, `AFTER_SESSION_EXTENSION`) -- Short version is major.minor.patch extracted from project.env +- Version suffix is major.minor.patch extracted from project.env **Step 1: Get current version** -Use the Bash tool to extract the short version: +Use the Bash tool to extract the version suffix: ```bash grep "^VERSION=" project.env | sed 's/VERSION="//;s/_.*//' ```