parallel-execution

Installation
SKILL.md

Parallel Execution Patterns for Cognitive Reasoning

Purpose: Accelerate and improve cognitive reasoning by executing independent tasks simultaneously. Parallel execution can achieve 2-4x efficiency gains and 70% faster convergence when applied appropriately to reasoning patterns like ToT, BoT, HE, and AT.

When to Use Parallel Execution

Use parallel execution when:

  • Problem decomposes into independent sub-problems
  • Multiple solution approaches need exploration (BoT, ToT branching)
  • High confidence required (ensemble methods)
  • Multiple hypotheses need simultaneous testing (HE)
  • Time permits depth but sequential execution is unnecessary
  • Cross-domain analogies need parallel investigation (AT)

Do not parallelize when:

  • Steps have sequential dependencies (use SRC instead)
  • Each step depends on previous results
  • Problem is inherently linear (debugging traces)
  • Resource constraints limit concurrent execution
Related skills

More from kimasplund/claude_cognitive_reasoning

Installs
7
GitHub Stars
4
First Seen
Jan 25, 2026