What problem does it solve?
A single Worker often faces tasks too large for one pass but too small for full team delegation. This Skill guides a QwenPaw-backed Worker in choosing between doing work directly, using native subagents for short parallelism, or spinning up temporary QwenPaw agents with custom AGENTS.md templates and skills via the worker_agentflow workflow_run tool.
Core Features & Use Cases
- Decision Framework: A decision table maps each need (direct work, native subagent, dynamic workflow, manual temp agent, team workflow) to the correct execution path.
- Dynamic Workflow Lifecycle: Covers workflow_run, workflow_update, workflow_finish, and workflow_fail, including DAG nodes with dependsOn dependencies and readyInstructions scheduling.
- Shared File System: Defines a run-level shared directory with inputs/ and per-agent outputs/ paths so temporary agents exchange files safely.
- Use Case: A Worker reviewing an auth module fans out to security-reviewer and test-reviewer subagents, merges their fixed-shape findings, deletes the temporary agents, and reports one severity-ordered list.
Quick Start
Ask the Worker to split the current task into parallel subagent reviews using workerflow and merge the results into one report.