From director-mode-lite
Verifies development environment readiness for Director Mode by checking git/python3/jq, Claude Code v2+, project tools for Node/Python/Rust/Go/Java, .claude/ installation, and git status.
npx claudepluginhub claude-world/director-mode-liteThis skill uses the workspace's default tool permissions.
Verify your development environment is ready for Director Mode.
Guides new users through 5-minute Director Mode Lite onboarding: verifies installation with bash checks, runs /project-init for project setup, and starts first workflows like /workflow or /auto-loop.
Validates dev environment by checking OS, runtime versions (Node, Python, Rust, Go, Ruby), installed tools, port availability, env vars, and disk space. Use for new projects, machine switches, or 'works on my machine' bugs.
Audits .claude/ directory for config hygiene, junk files, .gitignore completeness, naming consistency, cache size; syncs plugins and detects version drift. Outputs health report with fix commands.
Share bugs, ideas, or general feedback.
Verify your development environment is ready for Director Mode.
| Tool | Purpose | Check | Required |
|---|---|---|---|
| git | Version control | git --version | Yes |
| python3 | Hook config merging (install.sh) | python3 --version | Yes |
| jq | JSON processing in hooks | jq --version | Yes |
claude --version
Minimum: 2.0.0+
Auto-detect project type and check relevant tools:
| Project Type | Detected By | Tools to Check |
|---|---|---|
| Node.js | package.json | node --version, npm --version or pnpm --version |
| Python | requirements.txt, pyproject.toml | python3 --version, pip --version |
| Rust | Cargo.toml | rustc --version, cargo --version |
| Go | go.mod | go version |
| Java | pom.xml, build.gradle | java --version, mvn --version or gradle --version |
.claude/ directory exists.claude/skills/ populated (31 skills expected).claude/agents/ populated (14 agents expected).claude/hooks/ populated (5 hook scripts expected).claude/settings.local.json has hooks configuredCLAUDE.md exists## 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
| Issue | Action |
|---|---|
| Missing python3 | Install Python 3: brew install python3 (macOS) or apt install python3 (Linux) |
| Missing jq | Install jq: brew install jq (macOS) or apt install jq (Linux) |
| Missing git | Install git for your OS |
| Missing node | Install Node.js LTS: https://nodejs.org |
| Old Claude Code | Run claude update |
| No .claude/ | Run install script: ./install.sh . |
| Hooks not configured | Re-run install or check .claude/settings.local.json |
| No CLAUDE.md | Run /project-init or /claude-md-template |