Invoke {{command_prefix}}agent-workflow — it contains workflow principles, anti-patterns, and the Context Gathering Protocol. Follow the protocol before proceeding — if no workflow context exists yet, you MUST run {{command_prefix}}teach-maestro first.
Consult the tool-orchestration reference in the agent-workflow skill for composition patterns and error handling.
Design tool chains that do complex work reliably. A chain is only as strong as its weakest link.
Sequential: A → B → C (each step depends on the previous)
Parallel: [A, B, C] → Merge (independent steps run simultaneously)
Conditional: A → (if X then B, else C) → D (branching based on results)
Iterative: A → Check → (if not done) → A again (loop until convergence)
串行: A → B → C (每个步骤依赖前一步的结果)
并行: [A, B, C] → 合并 (独立步骤同时运行)
条件分支: A → (如果满足X则执行B,否则执行C) → D (基于结果进行分支)
迭代: A → 检查 → (如果未完成) → 重新执行A (循环直到达到收敛条件)