Installation
Quick Start
Install dex globally:
$ npm install -g @zeeg/dex Or use the skills installer for Claude Code, OpenCode, Codex, or Cursor:
$ npx skills add dcramer/dex Configure Your Project
Add dex instructions to your project's AGENTS.md or CLAUDE.md file so Claude and other AI agents know to use it for task management:
## Task Management Use `/dex` to break down complex work, track progress across sessions, and coordinate multi-step implementations.
Place this file in your project root and commit it to version control so your team shares the same context.
Alternative Installation Methods
Claude Code Marketplace
Install directly from the Claude Code marketplace:
$ claude plugin marketplace add dcramer/dex $ claude plugin install dex@dex
The /dex skill will be available immediately.
Shell Completions
Enable tab completion for dex commands and task IDs.
Bash
Add to ~/.bashrc:
eval "$(dex completion bash)"
Zsh
Add to ~/.zshrc (after compinit):
eval "$(dex completion zsh)"
Fish
Add to ~/.config/fish/config.fish:
dex completion fish | source