$git clone https://github.com/PlanExeOrg/PlanExe---
| 1 | <p align="center"> |
| 2 | <picture> |
| 3 | <source media="(prefers-color-scheme: dark)" |
| 4 | srcset="docs/hero/planexe-hero-v1-grid-dark.svg"> |
| 5 | <img src="docs/hero/planexe-hero-v1-grid-light.svg" |
| 6 | alt="The PlanExe icon is the P character and E character" |
| 7 | width="100%"> |
| 8 | </picture> |
| 9 | </p> |
| 10 | |
| 11 | <p align="center"> |
| 12 | <strong>Turn your idea into a comprehensive plan in minutes, not months.</strong> |
| 13 | </p> |
| 14 | |
| 15 | <p align="center"> |
| 16 | <a href="https://app.mach-ai.com/planexe_early_access"> |
| 17 | <img src="https://img.shields.io/badge/%F0%9F%9A%80%20Try%20PlanExe%20in%20your%20browser-Generate%20a%20free%20plan-2ea44f?style=for-the-badge" alt="Try PlanExe in your browser — generate a free plan" height="48"> |
| 18 | </a> |
| 19 | </p> |
| 20 | |
| 21 | <p align="center"> |
| 22 | Describe your idea, hit submit, and PlanExe returns a ~40-page plan in about 15 minutes. |
| 23 | </p> |
| 24 | |
| 25 | <p align="center"> |
| 26 | <a href="https://home.planexe.org/"><strong>Create an account</strong></a> | |
| 27 | <a href="https://planexe.org/examples/"><strong>See example plans</strong></a> | |
| 28 | <a href="https://docs.planexe.org/getting_started/"><strong>Getting started guide</strong></a> |
| 29 | </p> |
| 30 | |
| 31 | --- |
| 32 | |
| 33 | ## Example plans generated with PlanExe |
| 34 | |
| 35 | - A business plan for a [Minecraft-themed escape room](https://planexe.org/20251016_minecraft_escape_report.html). |
| 36 | - A business plan for a [Faraday cage manufacturing company](https://planexe.org/20250720_faraday_enclosure_report.html). |
| 37 | - A pilot project for a [Human as-a Service](https://planexe.org/20251012_human_as_a_service_protocol_report.html). |
| 38 | - See more [examples here](https://planexe.org/examples/). |
| 39 | |
| 40 | ## What is PlanExe? |
| 41 | |
| 42 | PlanExe is an open-source tool and the premier planning tool for AI agents. It turns a single plain-english goal statement into a 40-page, strategic plan in ~15 minutes using local or cloud models. It's an accelerator for outlines, but no silver bullet for polished plans. |
| 43 | |
| 44 | Typical output contains: |
| 45 | |
| 46 | - Executive summary |
| 47 | - Gantt chart |
| 48 | - Governance structure |
| 49 | - Role descriptions |
| 50 | - Stakeholder maps |
| 51 | - Risk registers |
| 52 | - SWOT analyses |
| 53 | |
| 54 | PlanExe produces well-structured, domain-aware output: correct terminology, logical task sequencing, and coherent sections. For technical topics (engineering programs, regulated industries), it often gets the vocabulary and structure right. Think of it as a first-draft scaffold that gives you something concrete to critique and refine. |
| 55 | |
| 56 | However, the output has consistent weaknesses that matter: budgets are assumed rather than derived, timeline estimates are not grounded in real resource constraints, risk mitigations tend toward generic advice, and legal/regulatory details are plausible-sounding but unverified. The output should be treated as a structured starting point, not a deliverable. How much work it saves depends heavily on the project. For brainstorming or a first outline, it can save hours. For a client-ready plan, expect significant rework on every number, timeline, and risk section. |
| 57 | |
| 58 | --- |
| 59 | |
| 60 | ## Model Context Protocol (MCP) |
| 61 | |
| 62 | PlanExe exposes an MCP server for AI agents at [https://mcp.planexe.org/](https://mcp.planexe.org/) |
| 63 | |
| 64 | Assuming you have an MCP-compatible client ([Claude](https://docs.planexe.org/mcp/claude/), [Cursor](https://docs.planexe.org/mcp/cursor/), [Codex](https://docs.planexe.org/mcp/codex/), [LM Studio](https://docs.planexe.org/mcp/lm_studio/), [Windsurf](https://docs.planexe.org/mcp/windsurf/), OpenClaw, [Antigravity](https://docs.planexe.org/mcp/antigravity/)). |
| 65 | |
| 66 | The Tool workflow |
| 67 | |
| 68 | 1. `example_plans` (optional, preview what PlanExe output looks like) |
| 69 | 2. `example_prompts` |
| 70 | 3. `model_profiles` (optional, helps choose `model_profile`) |
| 71 | 4. non-tool step: draft/approve prompt |
| 72 | 5. `plan_create` |
| 73 | 6. `plan_status` (poll every 5 minutes until done) |
| 74 | 7. optional if failed: `plan_retry` |
| 75 | 8. download the result via `plan_file_info` |
| 76 | |
| 77 | Concurrency note: each `plan_create` call returns a new `plan_id`; server-side global per-client concurrency is not capped, so clients should track their own parallel plans. |