用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/pactkit/claude-code-plugin --skill pactkit-board命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | pactkit-board |
| description | Sprint Board atomic operations: add Story, update Task, archive completed Stories |
| model | haiku |
Atomic operations tool for sharded Story facts (docs/product/stories/{ITEM_ID}.yaml). docs/product/sprint_board.md is an optional read-only projection.
Script location: Use the base directory from the skill invocation header to resolve script paths.
StoryRepository schema used by every adapter.render explicitly to update the optional projection.python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py add_story ITEM-ID "Title" "Task A|Task B"
ITEM-ID: Work item identifier, e.g. STORY-001, HOTFIX-001, BUG-001Title: Item titleTask A|Task B: Task list, use | as separator for multiple tasks✅ Story ITEM-ID added or ❌ error messagepython3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py update_task ITEM-ID "Task Name"
Task Name: Must be an exact match with the task name in the Board✅ Task updated or ❌ Task not foundpython3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py archive
archived; no shared archive file is appended.python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py list_stories
python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py render
python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py render --check
python3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py snapshot "v1.0.0"
docs/architecture/snapshots/{version}_*.mmdpython3 ${CLAUDE_PLUGIN_ROOT}/skills/pactkit-board/scripts/board.py fix_board
/project-plan: Use add_story to create a Story/project-act: Use update_task to mark completed tasks/project-done: Use archive to archive completed Storiespactkit-release skill: Use snapshot to archive architecture graphs during releasepactkit-doctor skill: Use fix_board to repair misplaced stories