The missing orchestrator for AI-native engineering.
Most teams building with AI run into the same problems:
- Workflow lives in chat history. No process, nothing that persists, nothing you can hand off.
- Every developer is using AI differently. Different tools, different prompts, different output.
- Results are unpredictable. Brilliant one session, wrong the next.
- No shared context. Every session starts from scratch, every developer builds their own mental model.
- Missing context causes drift. The same problem solved three ways in the same codebase.
The AI SDLC is the framework we built to fix this: start with a spec, build in phases, verify output, keep context in the repo. dmx is the orchestrator that makes the AI SDLC executable.
dmx runs as an MCP server inside Cursor, Claude Code, GitHub Copilot, and Antigravity. It gives you AI skills that govern the full engineering lifecycle — from first spec to production release — as structured loops. Each loop has a skill sequence, a shared memory context, and a validator. A loop without a validator is just a script.
/dmx/create-ticket # describe the work → spec → branch
/dmx/plan # spec → phased task list
/dmx/implement-next-phase # build next phase, stop, wait for review
/dmx/validate # quality gate: spec, security, coverage
/dmx/create-pr # sync memory, draft PR body, open PR
/dmx/create-release # tag and publish the release
Every command stops and waits. You review, decide, and move forward. Project context lives in .dmx/ — committed to the repo, read by every AI session.
- Full lifecycle workflow — spec, plan, build, validate, release
-
.dmx/memory bank — shared project context committed to the repo - Loop runtime — loops start foreground (developer reviews every step) and graduate to background as validators build a track record
- Team server — hosted MCP endpoint, shared loops and rules across the team
- Gateway — model governance, cost visibility, autonomous background execution
{
"mcpServers": {
"dmx": {
"command": "uvx",
"args": ["--from", "deepmodel-dmx", "dmx", "serve"]
}
}
}Add to your IDE config (Claude Code, Copilot, Antigravity ↓). Run /dmx/init once per project. Then:
/dmx/create-ticket
- When Is a Loop Ready to Run Without You? — the thinking behind dmx
- AI SDLC — the open framework dmx implements
Full install guide
Add to your Cursor MCP config (~/.cursor/mcp.json) and restart:
{
"mcpServers": {
"dmx": {
"command": "uvx",
"args": ["--from", "deepmodel-dmx", "dmx", "serve"]
}
}
}Claude Code, Copilot, Antigravity
Claude Code — ~/.claude/claude_desktop_config.json
{
"mcpServers": {
"dmx": {
"command": "uvx",
"args": ["--from", "deepmodel-dmx", "dmx", "serve"]
}
}
}GitHub Copilot — .vscode/settings.json
{
"mcp": {
"servers": {
"dmx": {
"command": "uvx",
"args": ["--from", "deepmodel-dmx", "dmx", "serve"]
}
}
}
}Antigravity — ~/.gemini/config/mcp_config.json
{
"mcpServers": {
"dmx": {
"command": "uvx",
"args": ["--from", "deepmodel-dmx", "dmx", "serve"]
}
}
}Open any chat and run /dmx/init. It will:
- Write always-apply engineering rules into your project (
.cursor/rules/,CLAUDE.md, etc.) - Scaffold the
.dmx/memory bank — durable core files plus anactiveContext.mdlearning inbox - Configure your workflow mode (feature branches or trunk) and ticketing system
Safe to re-run. Updates config without overwriting memory bank files that already have content.
/dmx/create-ticket
Describe what you want to build. dmx scaffolds the spec, asks clarifying questions, and waits for your answers before writing a line of code.
Full skill catalog
| Skill | What it does |
|---|---|
/dmx/init |
One-time project setup: rules, memory bank, IDE config |
/dmx/create-ticket |
Idea → ticket → branch → spec in one command |
/dmx/derive-ticket |
Uncommitted changes → ticket → branch → derived spec |
/dmx/plan |
Answered spec → phased tasks.md |
/dmx/implement-next-phase |
Execute the next phase in tasks.md, stop |
/dmx/implement-next-task |
Execute the next single task, stop |
/dmx/validate |
Pre-PR quality gate: ticket, code, security |
/dmx/create-branch |
Create a properly named branch, scaffold spec |
/dmx/commit |
Conventional commit from staged diff |
/dmx/create-pr |
Open PR with correct title + description |
/dmx/draft-pr-description |
Generate PR body without opening the PR |
/dmx/close-ticket |
Post-merge: close ticket, delete branch |
| Skill | What it does |
|---|---|
/dmx/hotfix |
Create hotfix branch from production_branch |
/dmx/draft-release-note |
Generate release notes from merged PRs |
/dmx/release-merge |
Open integration → production release gate PR |
/dmx/create-release |
Tag production branch and publish GitHub release |
| Skill | What it does |
|---|---|
/dmx/status |
Snapshot of in-progress tickets and open PRs |
/dmx/sync-branch |
Rebase/merge integration branch onto current branch |
/dmx/update-memory |
Deep sync: promote inbox learnings, reconcile contradictions |
/dmx/review |
Code review: clarity, correctness, maintainability |
/dmx/test |
Write tests that enable change |
/dmx/docs |
Write clear, human-first documentation |
/dmx/secure |
Security analysis — thinks like an attacker |
Memory bank (.dmx/)
The .dmx/ directory is the project's shared memory — committed to the repo so every developer and every AI session starts from the same understanding.
| File | Role | Lifetime |
|---|---|---|
config.md |
Project settings — ticketing, integration/production branches, credentials; injected as always-apply rule | Updated by /dmx/init |
projectbrief.md |
Goals, scope, non-negotiables | Durable — updated rarely |
productContext.md |
User-facing behaviour and flows | Durable — updated when features ship |
systemPatterns.md |
Architecture, patterns, component relationships | Durable — updated when design changes |
techContext.md |
Stack, dependencies, constraints | Durable — updated when tooling changes |
activeContext.md |
Learning inbox: open learnings, decisions, session notes | Branch-local — promoted to durable files on commit/PR |
spec.md |
What is being built and why — YAML frontmatter + scope + Q&A | Branch-scoped — created by create-ticket, committed with the PR |
tasks.md |
Phased implementation plan | Branch-scoped — created by plan, committed with the PR |
Branch-as-identity model: each branch holds exactly one unit of work. spec.md and tasks.md live directly in .dmx/ on the feature branch. When a PR merges, they go with it; the next branch starts fresh.
Three-tier memory sync: learnings accumulate in activeContext.md during implementation. /dmx/commit promotes qualifying items (light sync), /dmx/create-pr promotes all remaining items (full sync), and /dmx/update-memory does a deep reconciliation on demand.