Skip to main content

Documentation Index

Fetch the complete documentation index at: https://smithers.sh/llms.txt

Use this file to discover all available pages before exploring further.

research-plan-implement is a full pipeline for changes that need context before code. It asks one agent to research, another to plan, then passes the enriched prompt into the same validation loop used by implement.
bunx smithers-orchestrator workflow run research-plan-implement --prompt "Replace the auth cookie format"

Inputs

InputTypeDefault
promptstring"Implement the requested change."
tddbooleanfalse
Pass structured input when you want test-first planning:
bunx smithers-orchestrator workflow run research-plan-implement \
  --input '{"prompt":"Add invite-only signup","tdd":true}'

How It Runs

  1. Research gathers repo context, prior art, and relevant implementation details.
  2. Planning turns the request and research into concrete steps.
  3. Implementation receives the original prompt plus research and plan context.
  4. Validation and review decide whether another implementation pass is needed.