install
source · Clone the upstream repo
git clone https://github.com/claude-world/director-mode-lite
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/claude-world/director-mode-lite "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/check-environment" ~/.claude/skills/claude-world-director-mode-lite-check-environment && rm -rf "$T"
manifest:
skills/check-environment/SKILL.mdsource content
Environment Check
Verify your development environment is ready for Director Mode.
Checks Performed
1. Director Mode Dependencies
| Tool | Purpose | Check | Required |
|---|---|---|---|
| git | Version control | | Yes |
| python3 | Hook config merging (install.sh) | | Yes |
| jq | JSON processing in hooks | | Yes |
2. Claude Code Version
claude --version
Minimum: 2.0.0+
3. Project-Specific Tools
Auto-detect project type and check relevant tools:
| Project Type | Detected By | Tools to Check |
|---|---|---|
| Node.js | | , or |
| Python | , | , |
| Rust | | , |
| Go | | |
| Java | , | , or |
4. Director Mode Installation
-
directory exists.claude/ -
populated (31 skills expected).claude/skills/ -
populated (14 agents expected).claude/agents/ -
populated (5 hook scripts expected).claude/hooks/ -
has hooks configured.claude/settings.local.json -
existsCLAUDE.md
5. Git Status
- Inside git repository
- Clean working tree (or note uncommitted changes)
Output Format
## Environment Check Results ### Director Mode Dependencies - [x] git: 2.39.0 - [x] python3: 3.11.0 - [x] jq: 1.7 ### Claude Code - [x] Version: 2.1.76 ### Project Tools (Node.js detected) - [x] node: 20.10.0 - [x] pnpm: 8.12.0 ### Director Mode Installation - [x] .claude/ directory exists - [x] 31 skills installed - [x] 14 agents installed - [x] 5 hooks installed - [x] settings.local.json configured - [x] CLAUDE.md exists ### Git Status - [x] Git repository initialized - [ ] Warning: 3 uncommitted changes ### Summary **Status**: Ready
Follow-up Actions
| Issue | Action |
|---|---|
| Missing python3 | Install Python 3: (macOS) or (Linux) |
| Missing jq | Install jq: (macOS) or (Linux) |
| Missing git | Install git for your OS |
| Missing node | Install Node.js LTS: https://nodejs.org |
| Old Claude Code | Run |
| No .claude/ | Run install script: |
| Hooks not configured | Re-run install or check |
| No CLAUDE.md | Run or |