This repository is a working local product for generating markdown-native agent systems.
It does a few things:
- accepts a product brief through a web interface
- accepts a local repository path plus a concrete implementation task
- maps the codebase into slices and generates markdown mini-agents per slice
- breaks both repo-backed and greenfield projects into smaller task agents
- generates a full markdown-native project workspace under
instances/ - exports integration bundles for Codex, Claude Code, Cursor, Windsurf, and GitHub Copilot
It is also directly consumable as a repository by agentic coding tools:
- AGENTS.md for Codex-style workflows
- CLAUDE.md plus
.claude/agents/and.claude/commands/for Claude Code - .github/copilot-instructions.md for GitHub Copilot
- .cursor/rules for Cursor
- AGENT_ENTRYPOINTS.md as the cross-platform map
For deeper documentation, start with docs/README.md.
Concrete demos live in examples/README.md. These are committed snapshots of real runs, not mocked screenshots or static concepts.
Each workspace includes:
AGENTS.mdCLAUDE.mdAGENT_ENTRYPOINTS.mdCODEBASE_MAP.mdwhen a repo path is providedPRODUCT.mdROADMAP.mdTASK_BREAKDOWN.mdTASK_DISPATCH.mdwhen a repo path is provided.claude/agents/*.mdand.claude/commands/*.md.claude/agents/*.mdincludes product specialists, task agents, and repo-slice specialists for Claude Codeskills/generated/tasks/*.mdtask agents for greenfield and repo-backed work.cursor/rules/*.mdc.github/copilot-instructions.mdand.github/prompts/*.prompt.mdmemory/scaffoldingskills/generated/*.mdproduct-specific sub-agentsskills/generated/slices/*.mdcodebase slice agents when a repo path is providedmcp/execution-layer guidancecompliance/templatesintegrations/bundles for supported coding-agent toolsmanifest.jsonfor UI/API rendering
npm startThen open:
npm testThis runs:
- Node tests for the generator and file outputs
- Python tests for the original bootstrap script
GET /api/healthPOST /api/analyzeGET /api/projectsPOST /api/projectsGET /api/projects/:slugGET /api/projects/:slug/file?path=...
The app generates tool-specific instruction bundles under each workspace:
integrations/codex/integrations/claude/integrations/cursor/integrations/windsurf/integrations/github-copilot/
Each generated workspace is also directly consumable at the repo root through AGENTS.md, CLAUDE.md, .claude/, .cursor/, and .github/, so flagship coding agents can operate on it without a separate import step.
- Existing repo demo: examples/vite-repo-demo/README.md
- Greenfield demo: examples/greenfield-demo/README.md