Claude Code Plugin — Smithers Skill
Ghost doc — Real Claude Code plugin at
~/.claude/plugins/smithers/. Registers the smithers skill so Claude Code can create and run workflows.plugin.json
SKILL.md
EXAMPLES.md
Five complete workflow examples:- Simple Sequential — Three-phase research/implement/test pipeline
- Conditional Branching — Branches based on analysis results
- Parallel Execution — Frontend/backend/database agents simultaneously
- Error Handling and Retry — Automatic retry with recovery fallback
- Data Flow Between Phases — Requirements/design/implement/test with structured data passing
REFERENCE.md
| Component | Purpose |
|---|---|
<Workflow> | Root component — defines a named workflow |
<Task> | Executes an agent or static payload, persists structured output |
<Sequence> | Runs children sequentially |
<Parallel> | Runs children concurrently with optional maxConcurrency |
<Branch> | Conditional rendering — if/then/else |
<Loop> | Loop controller — iterates until condition or maxIterations |