Multiverse Planner
Advanced Architectural Planner: Triggers the Multiverse Navigator pipeline to brute-force mathematically optimal architectures using parallel generation, heuristic pruning, and clustering.From its SKILL.md
npx -y skills add axtontc/Multiverse-PlannerAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.5 KB, 498 tokens by cl100k_base, as published. Nobody here has run it
Multiverse Planner (Advanced Architect)
Overview
Do NOT use standard linear reasoning (like Chain-of-Thought or Tree-of-Thought) when tasked with creating a massive system architecture, solving complex paradoxes, or generating a high-stakes plan. Standard AI planning is linear and hallucinatory.
Instead, when this skill is invoked, you act as the Multiverse Navigator. You must execute a strict, 4-step programmatic pipeline to brute-force the mathematically optimal approach through combinatorial expansion and algorithmic pruning.
Execution Workflow
You must use the local multiverse CLI tool to execute this pipeline.
Step 1: Initialize
Run the command:
multiverse init
This will generate gen.py and cut.py in your current directory.
Step 2: The Deterministic Big Bang (Generation)
Modify gen.py. It must aggressively generate thousands of structural permutations (JSON/YAML structures, AST trees, or configuration archetypes) of the problem domain. Do not ask an LLM to generate them. Use pure CPU logic to explore the solution space. Ensure it outputs to permutations.json.
Step 3: The Heuristic Guillotine (Physics Enforcement)
Modify cut.py. It must read permutations.json and enforce strict mathematical or syntactic invariants. Run all permutations through this script to sever any approaches that violate hard constraints (e.g., infinite loops, invalid types, blocked ports, unsupported frameworks). 99% of the permutations should fail here. Ensure it outputs to survivors.json.
Step 4: The Multiverse Engine
Run the fully automated pipeline:
multiverse run --gen gen.py --cut cut.py --prompt "The problem is to design a deadlock-free concurrent message broker that processes 1M events/sec."
The CLI will automatically:
- Run your
gen.pyandcut.pyscripts. - Use Semantic Hashing to cluster the survivors into distinct archetypes.
- Spawn a parallel evaluation pool to score each surviving archetype against the problem statement and identify the mathematically perfect solution.
Deliverable
Once the CLI finishes, it will output critique_results.json. Read this file, analyze the critiques, and write a formal implementation_plan.md centered exclusively around the winning archetype. Document exactly why the other archetypes failed.
What ships with it: 17 files
1142.5 KB alongside SKILL.md, 8 of them executable
.agents/
- ledger.md561 B
multiverse/
- cli.pyruns2.3 KB
- core/critique.pyruns1.8 KB
- core/__init__.pyruns50 B
- core/models.pyruns991 B
- core/pipeline.pyruns2.1 KB
- core/pruner.pyruns2.5 KB
- __init__.pyruns48 B
tests/
- test_multiverse.pyruns2.8 KB
- CODE_OF_CONDUCT.md3.2 KB
- CONTRIBUTING.md1.3 KB
- .gitignore502 B
- LICENSE11.3 KB
- multiverse_social_preview.png1101.2 KB
- pyproject.toml970 B
- README.md10.3 KB
- SECURITY.md638 B