manifold-m-solve

Generate parallel execution plans from manifold YAML constraint networks.

8|Updated Jan 12, 2026
One-click install
npx skills add https://github.com/dhanesh/manifold --skill manifold-m-solve
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: manifold-m-solve
Source: https://github.com/dhanesh/manifold/tree/main/install/agents/codex/skills/manifold-m-solve
Command: npx skills add https://github.com/dhanesh/manifold --skill manifold-m-solve

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Generates a parallel execution plan from a constraint network, revealing waves, the critical path, and bidirectional dependencies to optimize delivery.

Core Features & Use Cases

  • Constraint graph-based planning: Build and analyze a constraint network to expose parallelizable tasks.
  • Wave-based execution plan: Automatically group tasks into execution waves with dependency ordering.
  • Export & visualize: Produce ASCII diagrams or GraphViz DOT output and generate actionable artifacts for CI/CD.

Quick Start

Invoke /m-solve <feature-name> to generate an execution plan from the current constraint network.

Frequently Asked Questions about manifold-m-solve

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate a parallel execution plan from a dependency graph?

To generate a parallel execution plan from a dependency graph, you can parse constraint networks and dependencies to compute execution waves and identify the critical path using topological sorting.

What is a wave-based execution plan in constraint network planning?

A wave-based execution plan in constraint network planning groups tasks into sequential waves based on dependency ordering, allowing parallelizable tasks within the same wave to execute simultaneously.

How do I visualize parallelizable tasks and bidirectional dependencies?

You can visualize parallelizable tasks and bidirectional dependencies by exporting the topological sort results into ASCII diagrams or GraphViz DOT output for graphical representation.

Can I use constraint graph-based planning for product roadmaps and operational workflows?

Yes, constraint graph-based planning applies to product roadmaps and operational workflows by reading manifold YAML to parse required truths, tensions, and dependencies that define task ordering and parallelism.

What is the best way to identify the critical path in a complex software delivery workflow?

The best way to identify the critical path in a complex software delivery workflow is to compute topological waves from a constraint network, revealing the longest sequence of dependent tasks.

How do I export actionable artifact plans for CI/CD from a constraint network?

You can export actionable artifact plans for CI/CD by generating execution waves from parsed manifold YAML constraints and exporting the resulting dependency structure into visual or actionable formats.