From 4ce50be417306d7272d90d8664cf0f222f8b39e0 Mon Sep 17 00:00:00 2001 From: Gianluca Carucci Date: Sun, 12 Jul 2026 19:02:07 +0200 Subject: [PATCH] fix: remove project-specific story citation from checkpoint SKILL.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Both the frontmatter description and the Composition Interface section cited "(story #256)" — a Pair-repo-specific issue number, meaningless to any project that installs this KB-shipped skill. KB guidelines and skills must not reference this repo's own ADRs, decision-log entries, or issue-tracker numbers, since they distribute in isolation to other projects. Removed both citations, dataset + installed mirror. Co-Authored-By: Claude Sonnet 5 --- .claude/skills/pair-capability-checkpoint/SKILL.md | 4 ++-- .../dataset/.skills/capability/checkpoint/SKILL.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.claude/skills/pair-capability-checkpoint/SKILL.md b/.claude/skills/pair-capability-checkpoint/SKILL.md index 105e8073..9d2c3b1f 100644 --- a/.claude/skills/pair-capability-checkpoint/SKILL.md +++ b/.claude/skills/pair-capability-checkpoint/SKILL.md @@ -1,6 +1,6 @@ --- name: pair-capability-checkpoint -description: "Writes and resumes a self-contained progress checkpoint (story, branch, tasks done, decisions, remaining todos) so work survives context resets. Write mode persists state to .pair/working/checkpoints/.md, one file per story; resume mode locates and parses it. Invocable independently; composed by a future closing phase of /pair-process-implement (story #256) and a future /pair-capability-publish-pr as a handoff." +description: "Writes and resumes a self-contained progress checkpoint (story, branch, tasks done, decisions, remaining todos) so work survives context resets. Write mode persists state to .pair/working/checkpoints/.md, one file per story; resume mode locates and parses it. Invocable independently; composed by a future closing phase of /pair-process-implement and a future /pair-capability-publish-pr as a handoff." version: 0.4.1 author: Foomakers --- @@ -114,7 +114,7 @@ CHECKPOINT RESUMED: ## Composition Interface -When composed by a future closing phase of `/pair-process-implement` (story #256): +When composed by a future closing phase of `/pair-process-implement`: - **Input**: `/pair-process-implement` would invoke `/pair-capability-checkpoint` with `$mode=write` between tasks (or on developer request) to persist progress, `$mode=resume` at Phase 0 when re-invoked on a story that may have been interrupted, and remove the checkpoint on story completion (cleanup). - **Output**: Write mode's returned text becomes the session's record of state. Resume mode's parsed state lets `/pair-process-implement` skip re-analysis and jump straight to the first pending task. diff --git a/packages/knowledge-hub/dataset/.skills/capability/checkpoint/SKILL.md b/packages/knowledge-hub/dataset/.skills/capability/checkpoint/SKILL.md index 6b61c59b..ec231cab 100644 --- a/packages/knowledge-hub/dataset/.skills/capability/checkpoint/SKILL.md +++ b/packages/knowledge-hub/dataset/.skills/capability/checkpoint/SKILL.md @@ -1,6 +1,6 @@ --- name: checkpoint -description: "Writes and resumes a self-contained progress checkpoint (story, branch, tasks done, decisions, remaining todos) so work survives context resets. Write mode persists state to .pair/working/checkpoints/.md, one file per story; resume mode locates and parses it. Invocable independently; composed by a future closing phase of /implement (story #256) and a future /publish-pr as a handoff." +description: "Writes and resumes a self-contained progress checkpoint (story, branch, tasks done, decisions, remaining todos) so work survives context resets. Write mode persists state to .pair/working/checkpoints/.md, one file per story; resume mode locates and parses it. Invocable independently; composed by a future closing phase of /implement and a future /publish-pr as a handoff." version: 0.4.1 author: Foomakers --- @@ -114,7 +114,7 @@ CHECKPOINT RESUMED: ## Composition Interface -When composed by a future closing phase of `/implement` (story #256): +When composed by a future closing phase of `/implement`: - **Input**: `/implement` would invoke `/checkpoint` with `$mode=write` between tasks (or on developer request) to persist progress, `$mode=resume` at Phase 0 when re-invoked on a story that may have been interrupted, and remove the checkpoint on story completion (cleanup). - **Output**: Write mode's returned text becomes the session's record of state. Resume mode's parsed state lets `/implement` skip re-analysis and jump straight to the first pending task.