parallel-planner

Installation
SKILL.md

Parallel Planner Protocol

Analyze task steps — which ones must wait for each other, which ones can run simultaneously? Build a dependency graph, form parallel groups, and prevent conflicts.

Core principle: Sequential is safe but slow. Parallel is fast but requires care. Making the right distinction is this skill's job.


Parallelization Criteria

A step can run in parallel only if all conditions are met:

  • Not dependent on another step's output
  • Does not write to a resource another step reads (no write conflict)
  • Does not modify shared state (global variable, same file)
  • If it fails, it does not block other parallel steps

A step must run sequentially if any of these apply:

  • Its input is another step's output
  • It writes to the same file / DB table / API resource
Related skills

More from fatih-developer/fth-skills

Installs
14
GitHub Stars
4
First Seen
Feb 21, 2026