← Back to Director Mode Lite
Installation
Get Started
Install Director Mode Lite in under 30 seconds.
Requirements
- ✓ Claude Code v2.1.4 or later
- ✓ Git (for version control)
- ○ Node.js (optional, for running examples)
Recommended
Option A: Plugin Install
The easiest way. Use Claude Code's built-in plugin system.
# Install via Claude Code plugin marketplace:
claude plugin install director-mode-lite
This installs to your project's .claude/ directory.
Option B: One-Line Install
For terminal users who prefer shell scripts.
curl -fsSL https://raw.githubusercontent.com/claude-world/director-mode-lite/main/install.sh | bash -s .
The . at the end installs to the current directory.
Option C: Try Demo First
Want to test before installing in your project?
# Clone the repo
git clone https://github.com/claude-world/director-mode-lite.git
cd director-mode-lite
# Run demo in a temp directory
./demo.sh ~/director-mode-demo Creates a sandbox environment for testing.
What Gets Installed
your-project/
└── .claude/
├── skills/ # 32 skills (27 commands + 5 internal)
│ ├── workflow.md
│ ├── auto-loop.md
│ ├── focus-problem.md
│ ├── test-first.md
│ ├── smart-commit.md
│ └── ...
├── agents/ # 14 agents
│ ├── code-reviewer.md
│ ├── debugger.md
│ └── doc-writer.md
├── skills/ # 32 skills
│ ├── code-reviewer/
│ ├── debugger/
│ ├── doc-writer/
│ └── test-runner/
└── hooks/ # Auto-Loop hook
├── hooks.json
└── auto-loop-stop.sh Installation Features
🔒 Safe
Automatically backs up existing .claude/ directory before installing.
🔄 Merge
Merges hooks.json instead of overwriting. Your existing hooks are preserved.
⏭️ Skip
Skips files that already exist. Safe to run multiple times.
🗑️ Uninstall
Includes uninstall.sh script for clean removal.
Verify Installation
After installing, verify everything works:
# Start Claude Code in your project
claude
# Check available commands
/agents # Should list 14 agents
/skills # Should list 32 skills
# Try the workflow
/workflow Uninstall
To remove Director Mode Lite:
# If you used the install script
./uninstall.sh
# Or manually remove
rm -rf .claude/commands .claude/agents .claude/skills .claude/hooks