← ClaudeAtlas

pmstudio-changeloglisted

Create or update a structured change log for a product or platform. Use when someone asks to "create a change log", "log this change", "what changed", "update the change log", "release notes", or "changelog". Reads project memory (CLAUDE.local.md Recent Changes) and meeting notes to build chronological change records. Supports init (backfill from memory), update (append new entries), and release (summarize for a version).
rkz91/coco · ★ 3 · AI & Automation · score 69
Install: claude install-skill rkz91/coco
# Change Log — Running Product Change Record ## Purpose Maintains a chronological, append-only record of all meaningful changes to a product. Unlike CLAUDE.local.md (which is AI context), the change log is a **stakeholder-facing** document suitable for sharing with leadership, auditors, and team members. ## Process ### Step 1: Determine Mode - **`/change-log init`** — Create new change log, backfill from CLAUDE.local.md - **`/change-log update`** — Find changes since last entry, propose new entries - **`/change-log release {version}`** — Create release summary from accumulated entries - **`/change-log`** (no args) — Same as `update` ### Step 2: Read Context **Always read:** - `CLAUDE.local.md` — Recent Changes section (primary source of truth for what changed) - Existing change log file (if `update` or `release` mode) **For `init` mode, also read:** - `Meeting-Notes/` directory listing — to identify decision-bearing meetings - `PRD/` — version history sections - `.sync-watch.json` — project name **For `update` mode:** - Find the date of the last change log entry - Read any `Meeting-Notes/` files dated after that - Read `CLAUDE.local.md` Recent Changes entries dated after that ### Step 3: Extract Changes For each source, extract structured change data: ``` - Date: YYYY-MM-DD - Summary: one-line description - Type: Feature | Enhancement | Bug Fix | Configuration | Process | Security | Documentation - Impact: High | Medium | Low - Components: which modules/layers/doc