Claude-skill-registry meta:cli-feature-creator
CLI Feature Creator wizard for adding new aaa CLI commands. Use when user asks to "add aaa command", "create CLI feature", "add CLI command", or needs to extend the aaa CLI with new functionality.
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/aaa-feature-wizard" ~/.claude/skills/majiayu000-claude-skill-registry-meta-cli-feature-creator && rm -rf "$T"
manifest:
skills/data/aaa-feature-wizard/SKILL.mdsource content
AAA CLI Feature Wizard
Wizard-style guide for adding new CLI features to the
aaa command.
@context/workflows/aaa-cli-feature.md
When to Use
- Adding a new
subcommandaaa <command> - Adding a new
subcommandaaa ralph plan <feature> - Adding new flags to existing commands
- Extending the CLI with new functionality
Workflow
1. Gather Requirements
Ask about:
- Feature name
- Feature type (plan-subcommand, top-level, flag)
- Required arguments and optional flags
- Whether it needs auto mode
2. Create Files
Follow the workflow to create:
- Prompt file (source of truth)
- CLI command implementation
- Shell completions (bash/zsh/fish)
- E2E tests
- Skill file (if auto-triggered)
3. Verify
Run verification checklist from workflow.
References
- Full workflow: @context/workflows/aaa-cli-feature.md
- CLI architecture: @tools/CLAUDE.md
- CLI stack: @context/stacks/cli/cli-bun.md