Agent workflow
全球最大的 Claude Code 技能聚合库 · 收录 3900+ 来自 12+ 来源的技能,提供在线搜索与趋势分析看板 / The world's largest Claude Code skill aggregation hub — 3900+ skills from 12+ sources with online search and trend dashboard
npx -y skills add bg-szy/TOP-SKILLS --skill agent-workflowAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 4 stars4 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Multi-agent development workflow system. Load when orchestrating development tasks, spawning subagents, or managing workflow phases.
SKILL.md
3.4 KB, 853 tokens by cl100k_base, as published. Nobody here has run it
Agent Workflow System
This skill provides the multi-agent workflow orchestration system.
When to Use
Load when:
- Starting a new development task
- Spawning subagents for parallel work
- Managing workflow phase transitions
- Coordinating multi-agent collaboration
Core Concepts
Workflow Phases
- REQUIREMENTS - PM gathers and clarifies user needs
- ARCHITECTURE - Architects design solutions in parallel
- IMPLEMENTATION - Executor manages parallel implementers
- VERIFICATION - QA validates the implementation
- REFLECTION - Capture learnings for evolution
Agent Hierarchy
Tier-1 (can spawn subagents):
- PM - Requirements gathering
- Architect - Technical design
- Roundtable - Design synthesis
- Executor - Implementation orchestration
- QA - System verification
Tier-2 (focused workers):
- Explorer - Fast codebase scouting
- Implementer - Focused code writing
- Verifier - Independent verification
- Tester - Test execution
- Contract Resolver - Handle blocked tasks
- Reflector - Extract learnings
- Evolver - System improvement
Agent Definitions
Tier-1 Agents:
- @.claude/agents/pm.md
- @.claude/agents/architect.md
- @.claude/agents/roundtable.md
- @.claude/agents/executor.md
- @.claude/agents/qa.md
Tier-2 Agents:
- @.claude/agents/explorer.md
- @.claude/agents/implementer.md
- @.claude/agents/verifier.md
- @.claude/agents/tester.md
- @.claude/agents/contract-resolver.md
- @.claude/agents/reflector.md
- @.claude/agents/evolver.md
Spawning Pattern
Custom Agents (Dotagent System)
Use lowercase names matching agent definitions:
Task(
subagent_type: "explorer", # Fast codebase scouting
model: "haiku",
prompt: "Query: ... Output: ..."
)
Task(
subagent_type: "implementer", # Focused code writing
model: "sonnet",
prompt: "Task: ... Boundaries: ... Output: ..."
)
Task(
subagent_type: "pm", # Requirements gathering
model: "sonnet",
prompt: "Request: ... Output: memory/reports/demand.json"
)
Built-in Agents (Claude Code)
These are different from custom agents above:
Task(
subagent_type: "Explore", # Built-in: quick codebase exploration
model: "haiku",
prompt: "Find all API endpoints..."
)
Task(
subagent_type: "Plan", # Built-in: planning agent
model: "sonnet",
prompt: "Plan the implementation..."
)
Subagent Type Reference
| Custom (Dotagent) | Model | Purpose |
|---|---|---|
pm | sonnet | Requirements gathering |
architect | opus | Technical design |
roundtable | opus | Design synthesis |
executor | sonnet | Implementation orchestration |
qa | sonnet | System verification |
explorer | haiku | Fast codebase scouting |
implementer | sonnet | Focused code writing |
verifier | haiku | Independent verification |
tester | haiku | Test execution |
contract-resolver | sonnet | Handle blocked tasks |
reflector | sonnet | Extract learnings |
evolver | opus | System improvement |
| Built-in (Claude Code) | Purpose |
|---|---|
Explore | Quick codebase exploration |
Plan | Planning and analysis |
general-purpose | Flexible multi-step tasks |
Workflow State
@workflows/main.json @memory/state/phase.json