director-mode-lite
Health Gecti
- License — License: MIT
- Description — Repository has a description
- Active repo — Last push 0 days ago
- Community trust — 71 GitHub stars
Code Gecti
- Code scan — Scanned 12 files during light audit, no dangerous patterns found
Permissions Gecti
- Permissions — No dangerous permissions requested
Bu listing icin henuz AI raporu yok.
Use Claude Code like a Director, not a Programmer. Free toolkit with Auto-Loop, Self-Evolving Loop, 25 commands, 14 agents, 29 skills.
Director Mode Lite
Use Claude Code like a Director, not a Programmer
Website | Quick Start | Features | Examples | Discord
"Don't write code. Direct Claude to write code for you."
Start Here
After installing, run these 3 commands:
/getting-started # Guided 5-minute onboarding
/project-init # Auto-detect project and configure
/workflow # Start your first feature
CompatibilityNew to Director Mode? Read What is Director Mode? below, or jump to Quick Start.
Director Mode Lite is fully compatible with the latest Claude Code release (Claude 5 era), including support for:
- Claude 5 family model selection in agent/skill frontmatter (
fable,opus,sonnet,haikualiases) - Agent Teams (experimental multi-agent collaboration)
- 1M context window models (
opus[1m],sonnet[1m]) - All 30 hook event types including
SessionStart,PreCompact, andPostCompact - Multi-account delegation via
CLAUDE_CONFIG_DIRprofiles (/handoff-claude)
Tested with Claude Code CLI v2.1.201 as of July 2026. Works with Claude Fable 5, Opus 4.8, Sonnet 5, and Haiku 4.5.
What is Director Mode?
Director Mode is a paradigm shift in AI-assisted development. Instead of writing code line by line, you direct Claude to execute your vision autonomously.
Traditional Coding Director Mode
━━━━━━━━━━━━━━━━━━ ━━━━━━━━━━━━━━
You: Write code You: Define the vision
AI: Follow orders AI: Execute autonomously
↓ ↓
Micromanagement Strategic oversight
One task at a time Parallel agent execution
Manual intervention Continuous automation
Core Principles
| Principle | Description |
|---|---|
| Efficiency First | Direct execution, minimal interruption |
| Parallel Processing | Multiple agents working simultaneously |
| Autonomous Execution | AI handles implementation details |
| Strategic Oversight | You focus on "what" and "why" |
Key Feature: TDD-Driven Auto-Loop
Test-Driven Development AutomationSimilar to Ralph Wiggum, Auto-Loop uses Stop hooks but focuses on TDD:
Stop anytime with:
|
|
NEW: Self-Evolving Loop
Beyond Auto-Loop: Strategy EvolutionSelf-Evolving Loop takes automation further by:
Key difference from auto-loop:
|
Check status:
|
See docs/SELF-EVOLVING-LOOP.md for complete documentation.
Quick Start
Option A: Plugin Install (Recommended)
# 1. Install plugin via Claude Code marketplace
claude plugin install director-mode-lite
# 2. Navigate to your project directory
cd your-project
# 3. Run installation script from cached plugin
~/.claude/plugins/cache/director-mode-lite/director-mode-lite/1.8.0/install.sh .
# 4. Verify installation
~/.claude/plugins/cache/director-mode-lite/director-mode-lite/1.8.0/scripts/verify-install.sh .
🔧 Plugin Management Commands
# Update plugin to latest version
claude plugin marketplace update director-mode-lite
claude plugin uninstall director-mode-lite
claude plugin install director-mode-lite
# Check installed plugins
cat ~/.claude/plugins/installed_plugins.json | jq '.'
# View plugin cache
ls -la ~/.claude/plugins/cache/director-mode-lite/director-mode-lite/1.8.0/
Option B: Clone and Install
git clone https://github.com/claude-world/director-mode-lite.git
cd director-mode-lite
./install.sh /path/to/your/project
Option C: Try Demo First
git clone https://github.com/claude-world/director-mode-lite.git
cd director-mode-lite
./demo.sh ~/director-mode-demo
Verify Installation
Run the verifier against the project where you installed Director Mode Lite:
# Plugin install
~/.claude/plugins/cache/director-mode-lite/director-mode-lite/1.8.0/scripts/verify-install.sh .
# Clone install
./scripts/verify-install.sh /path/to/your/project
The script checks:
CLAUDE.mdplus core.claude/files and directories- Required
CLAUDE.mdsections from the template .claude/skills/and.claude/agents/are populated
It prints colored PASS and FAIL lines, exits 0 when all checks pass, and exits 1 if any check fails.
- Automatic Backup - Backups existing
.claude/to.claude-backup-TIMESTAMP/ - Portable Path Hooks - All hooks use
$CLAUDE_PROJECT_DIRfor portability (no more "file not found" errors) - Smart Merge - Preserves existing settings, only adds new hooks
- Skip Existing - Won't overwrite already-installed commands/agents/skills
- Clean Uninstall -
./uninstall.shremoves all installed files - Automated Tests -
./tests/run-tests.shvalidates installation
What's Included
Commands (27)Workflow:
Setup & Health:
Validators (NEW):
Generators (NEW):
Utilities:
|
Agents (14)Core Agents:
Expert Agents:
Self-Evolving Agents (NEW):
|
Skills (32)27 of the skills are the slash commands listed left. The other 5 are internal knowledge bases, auto-loaded by agents or triggered by Claude:
Plus:
|
The 5-Step Workflow
┌─────────────────────────────────────────────────────────────────┐
│ │
│ Step 1 Step 2 Step 3 │
│ ┌─────────┐ ┌─────────┐ ┌─────────┐ │
│ │ FOCUS │ ──► │ PREVENT │ ──► │ TEST │ │
│ │ PROBLEM │ │ OVERDEV │ │ FIRST │ │
│ └─────────┘ └─────────┘ └─────────┘ │
│ │ │ │ │
│ Understand Only build Red-Green- │
│ before coding what's needed Refactor │
│ │
│ Step 4 Step 5 │
│ ┌─────────┐ ┌─────────┐ │
│ ──► │DOCUMENT │ ──► │ COMMIT │ │
│ └─────────┘ └─────────┘ │
│ │ │ │
│ Auto-generated Conventional │
│ documentation Commits │
│ │
└─────────────────────────────────────────────────────────────────┘
Parallel Agent Execution
One of Director Mode's key advantages is parallel processing:
Traditional (Sequential)
|
Director Mode (Parallel)
|
Example: Problem Analysis
# Old way: Sequential manual searches
grep -r "authentication" src/
grep -r "login" src/
cat src/auth/index.ts
# ... slow, tedious
# Director Mode: One command, 5 parallel agents
/focus-problem "understand the authentication flow"
Agents
|
|
|
Expert Agents (NEW)
Director Mode Lite includes 5 Expert Agents that deeply understand Claude Code's official features:
|
|
|
|
|
Why? Anthropic provides documentation, but no specialized helpers. These experts know the official docs and help you implement correctly.
Validators & Generators (NEW)
Pair with Expert Agents for validate-then-fix or template-then-customize workflows:
Validators (5)Validate your configurations and get actionable fix suggestions:
Output format:
|
Generators (4)Generate properly-formatted files from templates:
Example:
Hook types:
|
CLAUDE.md Configuration
The CLAUDE.md file configures Claude's behavior in your project:
# Project: My App
Tech: TypeScript, React, PostgreSQL
# Policies
- Always write tests first
- Use conventional commits
- Document public APIs
# Workflow
- Parallel agents: enabled
- Auto-commit: disabled
- Review before merge: required
See docs/CLAUDE-TEMPLATE.md for a complete template.
Comparison
| Traditional AI Coding | Director Mode Lite | |
|---|---|---|
| Workflow | Ask → Wait → Copy → Test → Repeat | Direct → Auto-execute → Review |
| Parallelism | One task at a time | Multiple agents simultaneously |
| Automation | Manual intervention needed | Auto-Loop runs until done |
| Testing | Often forgotten | TDD built into workflow |
| Documentation | Afterthought | Auto-generated |
Examples
Learn by doing with hands-on tutorials:
| Example | Description | Time |
|---|---|---|
| Calculator | Auto-Loop TDD demo | 5 min |
| REST API | Building an API with TDD | 15 min |
| CLI Tool | Command-line tool | 10 min |
| TypeScript Library | Publishable npm library | 20 min |
See examples/ for full tutorials.
Community
|
🌐 Website claude-world.com |
💬 Discord Join the community |
📊 Live Stats Traffic & community growth |
🐛 Issues Report bugs, request features |
Documentation
| Document | Description |
|---|---|
| FAQ | Common questions answered |
| Concepts | Deep dive into methodology |
| CLAUDE.md Template | Project configuration guide |
| Hooks Guide | Hook implementation reference (12 types) |
| Self-Evolving Loop | Dynamic skill evolution system |
| Development Patterns | Learned best practices |
Related Projects
Other open-source tools from the Claude World community:
| Project | Description | Link |
|---|---|---|
| cf-browser | Cloudflare Browser MCP server for headless browsing, screenshots, and web scraping within Claude Code | github.com/anthropic-community/cf-browser |
| trend-pulse | Real-time trend aggregation MCP server -- monitors 8+ sources (GitHub, Hacker News, Reddit, etc.) for content ideas | github.com/anthropic-community/trend-pulse |
These tools work great alongside Director Mode Lite. Use
cf-browserfor web research agents andtrend-pulsefor staying on top of developer trends.
Author
Lucas Wang (@lukashanren1)
- GitHub: @gn00295120
- Website: claude-world.com
License
MIT License - Free for personal and commercial use.
See LICENSE for details.
About Director Mode Lite
This is a free, open-source toolkit (v1.8.0) from the Claude World community, compatible with the latest Claude Code (Claude 5 era).
|
What's included (FREE):
|
Want more? Visit claude-world.com for:
|
Made with direction by Claude World Taiwan
Yorumlar (0)
Yorum birakmak icin giris yap.
Yorum birakSonuc bulunamadi