964 B
964 B
Workflow Patterns
Linear workflow
Use when each step depends on the previous step.
Pattern: inspect -> decide -> implement -> validate -> report.
Branching workflow
Use when task type changes the next steps.
Pattern:
- Classify the task.
- Select the matching branch.
- Run only branch-specific references.
- Rejoin at validation.
Evidence-first workflow
Use when correctness depends on files, logs, sources, or user-provided examples.
Pattern: collect evidence -> summarize constraints -> make the smallest effective change -> verify against evidence.
Iterative workflow
Use when outputs improve through examples or feedback.
Pattern: gather examples -> identify deltas -> patch instructions -> test against holdout cases -> record remaining gaps.
Release or publishing workflow
Use when the skill must produce public artifacts.
Pattern: preflight -> changelog or notes -> version/tag/release -> publish -> close linked work.