From ushabti
Approve a phase — sets status to complete, marks all steps reviewed, updates linked card. Use when declaring a phase green.
How this skill is triggered — by the user, by Claude, or both
Slash command
/ushabti:approve-phaseThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Single command to perform all mechanical state transitions when declaring a phase green:
Single command to perform all mechanical state transitions when declaring a phase green:
complete in progress.yamlreviewed: true in progress.yamlcard: field, updates the card's status to done with current timestampYou still need to write your review decision in review.md separately — that's creative content this script doesn't touch.
python3 ${CLAUDE_PLUGIN_ROOT}/skills/approve-phase/approve-phase.py <phase-dir>
phase-dir: Path to the phase directory (e.g., .ushabti/phases/0005-my-phase)python3 ${CLAUDE_PLUGIN_ROOT}/skills/approve-phase/approve-phase.py .ushabti/phases/0009-tag-reconciler
# Output:
# Phase status: complete
# All steps: reviewed
# Card 'tag-reconciler': marked done
This replaces 4-5 separate Edit calls (status update + marking each step reviewed + card read + card update).
npx claudepluginhub adamrdrew/marketplace --plugin ushabtiExecutes individual phases of implementation plans as autonomous background sub-agents, performing pre-flight checks, file changes, and automated verifications.
Provides 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.