Skip to content

Workflow Patterns

Multiple Skills can be chained into efficient workflows. Here are proven combination patterns.

Pattern 1: Full-Stack Feature Development

grill-me → prototype → to-prd → to-issues → tdd → review → simplify
PhaseSkillOutput
Clarifygrill-meClear requirement boundaries
ValidateprototypeRunnable prototype
Documentto-prdPRD document
Break downto-issuesIssue list
DeveloptddTest-covered code
ReviewreviewReview feedback
Clean upsimplifySimplified code

Pattern 2: Bug Lifecycle

triage → diagnose → tdd → review → handoff(optional)
PhaseSkillOutput
AssesstriagePriority and category
LocatediagnoseRoot cause analysis
FixtddFix + regression test
ReviewreviewReview confirmation

Pattern 3: Architecture Evolution

improve-codebase-architecture → grill-with-docs → prototype → tdd → review
PhaseSkillOutput
Analyzeimprove-codebase-architectureProblem module identification
Aligngrill-with-docsADR alignment
ValidateprototypeNew architecture prototype
ImplementtddIncremental refactoring
ReviewreviewChange confirmation

Pattern 4: New Developer Onboarding

init → understand-anything:understand-onboard → grill-with-docs
PhaseSkillOutput
InitializeinitCLAUDE.md
Learnunderstand-onboardKnowledge graph + learning path
Deepengrill-with-docsDomain model alignment

Pattern 5: CI Guardian

loop → diagnose → tdd → review → handoff
PhaseSkillOutput
MonitorloopPeriodic CI checks
LocatediagnoseFailure analysis
FixtddFix + tests
ReviewreviewChange review
HandoffhandoffIf someone else takes over

Combination Principles

  1. One-way flow — Left to right, each step has clear output
  2. Interruptible — Any phase can pause; outputs are independently usable
  3. Progressive investment — Later steps cost more; early steps are cheap
  4. Adapt and trim — Skip to-prd and to-issues for small tasks