一键导入
parallelize
Use when planning parallel execution of independent tasks via subagents or concurrent tool calls; for workflow planning or throughput optimization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when planning parallel execution of independent tasks via subagents or concurrent tool calls; for workflow planning or throughput optimization.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Systematic analysis and reasoning workflows. Use when performing audits, investigation, requirements analysis, risk analysis, scenario/edge-case enumeration, or design analysis that demands evidence-based, comprehensive coverage.
Code quality and safety standards. Activates when editing or reviewing code. Use for quality priorities, safety checks, and code correctness verification.
Use when performing coding tasks (implement features, fix bugs, refactor code). Orchestrates language detection, mode switching (normal/autopilot/full-auto), quality enforcement, and verification.
Break a problem into atomic, testable subproblems. Use when facing complex tasks, unclear requirements, or planning implementation strategy.
Start structured feature implementation workflow. Use when implementing new features, adding functionality, or building complete user-facing capabilities.
Use when starting work that needs isolated branches or parallel feature development using git worktrees.
| name | parallelize |
| description | Use when planning parallel execution of independent tasks via subagents or concurrent tool calls; for workflow planning or throughput optimization. |
| allowed-tools | ["read_file","update_plan"] |
| metadata | {"short-description":"Analyze parallelization opportunities"} |
Read this reference:
references/parallelization.md - Concurrent execution patterns and strategiesImportant: This is about parallelizing implementation work (spawning subagents, concurrent tool calls), NOT writing parallel code.
Identify independent work units
Map dependency graph
Calculate potential speedup
Design execution strategy
Pattern 1: Independent Reads
Read file A, Read file B, Read file C in parallel
→ Process results sequentially if needed
Pattern 2: Independent Analysis
Analyze module A, Analyze module B in parallel
→ Combine results
Pattern 3: Pipeline Parallelism
Stage 1 (Task A) → Stage 2 (Tasks B, C in parallel) → Stage 3 (Task D)
When tasks are independent, batch tool calls in a single message or use multi_tool_use.parallel for concurrent reads/analysis. Keep scopes narrow and independent to avoid conflicts.
"Always use subagents wherever possible to speed up work" - apply this principle throughout.
Work to analyze for parallelization: ${ARGUMENTS}