Claude-skill-registry describe-phase-directory-structure

Phase directory layout, naming conventions, and required files. Load when creating or navigating phase directories.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/describe-phase-directory-structure" ~/.claude/skills/majiayu000-claude-skill-registry-describe-phase-directory-structure && rm -rf "$T"
manifest: skills/data/describe-phase-directory-structure/SKILL.md
source content

Phase Directory Structure

.ushabti/phases/NNNN-short-slug/
├── phase.md        # Intent, scope, acceptance criteria
├── steps.md        # Ordered implementation steps
├── progress.yaml   # Machine-tracked state
└── review.md       # Review findings

Naming: Phase IDs are zero-padded and sequential (0001, 0002, ...). Slugs are short, lowercase, hyphenated, and descriptive.

Example:

0003-http-client-retry