From director-mode-lite
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/director-mode-lite:getting-startedThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Welcome! This guide walks you through your first 5 minutes with Director Mode Lite.
Welcome! This guide walks you through your first 5 minutes with Director Mode Lite.
Run a quick check:
ls .claude/skills/ | wc -l # Should show 31+
ls .claude/agents/ | wc -l # Should show 14
ls .claude/hooks/ | wc -l # Should show 5+
If any are missing, re-run the install script.
Also check dependencies:
python3 --version # Required for hook configuration
jq --version # Required for hook scripts
Run /project-init to auto-detect your project and generate a CLAUDE.md:
/project-init
This will:
Try the 5-step development workflow:
/workflow
Or jump straight to autonomous TDD:
/auto-loop "Implement [your feature]
Acceptance Criteria:
- [ ] First requirement
- [ ] Second requirement
- [ ] Tests pass"
| Command | When to Use |
|---|---|
/project-init | First time in a new project |
/workflow | Starting a new feature (guided) |
/auto-loop "task" | Autonomous TDD development |
/focus-problem "issue" | Understanding a bug or codebase area |
/smart-commit | Ready to commit changes |
| Level | Commands |
|---|---|
| Beginner | /workflow, /auto-loop, /focus-problem, /smart-commit, /plan |
| Intermediate | /test-first, /check-environment, /project-health-check, /changelog |
| Advanced | /evolving-loop, /evolving-status, /handoff-codex, /handoff-gemini |
| Customization | /agent-template, /skill-template, /hook-template |
| Validation | /claude-md-check, /agent-check, /skill-check, /hooks-check, /mcp-check |
/agents - List all available agents/skills - List all available skillsdocs/FAQ.md) - Common questionsnpx claudepluginhub claude-world/director-mode-liteLists all available skills in Director Mode Lite: core (code-reviewer, test-runner), workflow (/workflow, /test-first), utility (/project-init, /skill-check), templates (/skill-template), and custom creation guide. Use to discover invocable skills.
Interactive getting-started walkthrough for new Claude Code users. Guides you through environment setup, your first session, and best practices.
Guides developers on creating, structuring, and organizing slash commands for Claude Code. Covers YAML frontmatter, dynamic arguments, bash execution, user interactions, and best practices for reusable command workflows.