Getting Started
Getting Started
Get DDx installed and start tracking work in under 5 minutes.
Install
Run the install script to set up DDx globally:
curl -fsSL https://raw.githubusercontent.com/DocumentDrivenDX/ddx/main/install.sh | bashThis installs the ddx CLI binary to ~/.local/bin/ddx. DDx skills
are installed per-project by ddx init and ddx install <plugin> —
nothing is written under ~/ outside the binary itself.
Verify the installation:
ddx version
ddx doctorInitialize a Project
In your project directory, run:
ddx initThis creates:
.ddx/- DDx configuration and project-local plugin tree.agents/skills/and.claude/skills/- copied skill files for Claude Code (real files, no symlinks)
Install HELIX Workflow
ddx install helixThis installs HELIX to .ddx/plugins/helix/ and copies its skills
into the project’s .agents/skills/ and .claude/skills/ trees.
Track Work
ddx bead create "Build login page" --type task
ddx bead create "Add auth middleware" --type task
ddx bead list
ddx bead readyRun Agents
ddx agent run --harness claude --prompt task.md
ddx agent usageUpdate
Check for updates:
ddx update --check # Check all
ddx update ddx # Update DDx CLI
ddx update helix # Update HELIX pluginNext Steps
- CLI reference — all commands
- Ecosystem — how DDx fits with HELIX and other tools
- Creating plugins — add your own workflow to the registry