Guide for implementing thread-based engineering patterns. Use when discussing or implementing Base, Parallel, Chained, Fusion, Big, Long, or Zero-Touch thread patterns for agentic coding.
This skill provides guidance on choosing and implementing the right thread pattern for your task.
| Thread | Best For | Complexity | Human Time |
|---|---|---|---|
| Base | Simple tasks | Low | High |
| Parallel | Independent work | Medium | Medium |
| Chained | Critical work | Medium | High |
| Fusion | High confidence | Medium | Low |
| Big | Complex orchestration | High | Low |
| Long | Extended autonomy | High | Very Low |
| Zero-Touch | Full automation | Very High | None |
Is it a simple, single task?
āā YES ā Base Thread
āā NO ā Can tasks run independently?
āā YES ā Need multiple perspectives?
ā āā YES ā Fusion Thread
ā āā NO ā Parallel Thread
āā NO ā Is it high-risk/production?
āā YES ā Chained Thread
āā NO ā Need specialized agents?
āā YES ā Big Thread
āā NO ā Want extended autonomy?
āā YES ā Have validation suite?
ā āā YES ā Zero-Touch or Long
ā āā NO ā Long Thread
āā NO ā Base Thread
When: Simple tasks, learning, experimentation Pattern: Prompt ā Tools ā Review Example: "Explain this codebase"
When: Multiple independent tasks, scaling compute Pattern: Spawn N agents, each on different work Example: Review auth/, api/, and db/ simultaneously
When: Production work, large migrations, high-risk changes Pattern: Phase 1 ā Review ā Phase 2 ā Review ā ... Example: Plan migration ā Review ā Execute ā Review ā Validate
When: Need high confidence, comparing approaches Pattern: N agents same prompt ā Aggregate best Example: 3 reviewers ā Synthesize findings
When: Complex workflows needing specialized agents Pattern: Primary agent orchestrates sub-agents Example: Researcher ā Reviewer ā Builder ā Validator
When: Extended autonomous work, self-correcting Pattern: Work ā Stop Hook validates ā Continue if needed Example: "Fix all bugs until tests pass" (Ralph Wiggum)
When: Mature codebase, comprehensive validation Pattern: Prompt ā Work ā Auto-validate ā Done Example: Automated dependency updates with full CI
You're getting better when you:
examples.md for detailed code examples/agent-threads:<type>scripts/ directory