Getting Started
Getting Started with Assemble
Section titled “Getting Started with Assemble”Assemble is an open-source prompt orchestration system that generates native configuration files for 21 AI coding platforms. It gives you a team of 34 specialized AI agents — coordinated by Jarvis, the orchestrator — without any runtime, daemon, or background process.
How it works
Section titled “How it works”- You run
npx cohesiumai-assemblein your project - Assemble generates platform-native config files (
.cursorrules,CLAUDE.md,.github/copilot-instructions.md, etc.) - Your AI coding tool reads these files automatically
- You use commands like
/go,/feature,/bugfixto orchestrate agents
Zero runtime. Zero dependency. Pure prompt engineering.
Prerequisites
Section titled “Prerequisites”- Node.js 18 or later
- An AI coding tool: Cursor, Claude Code, VS Code with Copilot, Windsurf, etc.
Quick install
Section titled “Quick install”npx cohesiumai-assemblecurl -fsSL https://assemble.cohesium.ai/install.sh | bashThe interactive wizard guides you through:
- Selecting your target platforms (Cursor, Claude Code, VS Code, etc.)
- Choosing a team profile (startup, enterprise, or agency)
- Configuring governance level (none, standard, strict)
- Setting language preferences
What gets generated?
Section titled “What gets generated?”After setup, Assemble creates platform-native configuration files in your project root:
your-project/├── .cursorrules # Cursor├── CLAUDE.md # Claude Code├── .github/│ └── copilot-instructions.md # GitHub Copilot├── .windsurfrules # Windsurf├── .assemble.yaml # Assemble configuration├── .assemble/│ ├── agents/ # Agent definitions│ ├── workflows/ # Workflow definitions│ └── rules/ # Routing, teams, orchestrator└── assemble-output/ # Workflow deliverablesYour first command
Section titled “Your first command”Once configured, open your AI coding tool and try:
/go fix the auth bug in the login flowJarvis (the orchestrator) will:
- Assess complexity (TRIVIAL, MODERATE, or COMPLEX)
- Select the right agents (e.g.,
@bruce-bannerfor backend,@hawkeyefor tests) - Chain them in the optimal order
- Produce deliverables in
assemble-output/
Next steps
Section titled “Next steps”- Installation details — all 3 install methods explained
- Quick Start guide — build your first feature in 5 minutes
- Core Concepts — understand agents, workflows, and the orchestrator