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:
ddxCLI binary to~/.local/bin/ddx- DDx skills to
~/.ddx/skills/ - Symlinks in
~/.agents/skills/and~/.claude/skills/for Claude Code
Verify the installation:
ddx version
ddx doctorInitialize a Project
In your project directory, run:
ddx initThis creates:
.ddx/- DDx configuration and project-local skills.ddx/skills/- Bootstrap skills (ddx-doctor, ddx-run).agents/skills→.ddx/skills- Symlink for Claude Code
Install HELIX Workflow
ddx install helixThis installs HELIX to ~/.ddx/plugins/helix/ and adds its skills to your skill search path.
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