hive-spec:
  description: "Scout the codebase, plan features, review the plan"
  steps:
    - agent: scout
      prompt: "Explore the codebase and identify all files, components, services, and patterns: $INPUT"
    - agent: planner
      prompt: "Based on this codebase analysis, generate a complete features.md with all features found:\n\n$INPUT"
    - agent: reviewer
      prompt: "Review this features.md plan. Check for missing features, incorrect dependencies, and granularity issues:\n\n$INPUT\n\nOriginal request: $ORIGINAL"

hive-run:
  description: "Plan the next feature, build it, review it"
  steps:
    - agent: planner
      prompt: "Read features.md and identify the next pending feature that has all dependencies done. Plan the implementation: $INPUT"
    - agent: builder
      prompt: "Implement this feature plan:\n\n$INPUT"
    - agent: reviewer
      prompt: "Review this implementation for bugs, style, and correctness:\n\n$INPUT\n\nOriginal request: $ORIGINAL"
