From claude-toolkit
Check the status of all open OpenSpec changes — identify stale ones already merged into dev, and surface open PRs that address them.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-toolkit:openspec-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Check the status of all open OpenSpec changes: identify stale ones already merged into dev, and surface open PRs that address them.
Check the status of all open OpenSpec changes: identify stale ones already merged into dev, and surface open PRs that address them.
npx openspec listnpx openspec show <change-name> to understand what it intends to do.gh pr list --state open --json number,title,headRefName,author,url --limit 30 once upfront, then match against each change by branch name (often matches the change name) and by keywords from the proposal.gh pr list --state closed --search "<keywords> merged:>YYYY-MM-DD" --json number,title,mergedAt,author,headRefName --limit 20 with keywords extracted from the change proposal (key terms like class names, feature descriptions, ticket numbers).gh pr diff <number> to confirm the change's goal was achieved.Present a summary table:
| OpenSpec Change | Status | Evidence |
|---|---|---|
| change-name | Done | PR #1234 by @author (merged Mar 20) — description of what it did |
| change-name | PR open | PR #1234 by @author — title (draft/ready, review status) |
| change-name | Not started | No matching PRs found |
| change-name | Partially done | PR #1234 covers X but not Y |
rm -rf openspec/changes/<name>.npx claudepluginhub kfitzpatrick/claude-toolkit --plugin claude-toolkitProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.