From director-mode-lite
Guides through 5-step development workflow: problem focus, prevent overdevelopment (YAGNI), test-first TDD, documentation, and conventional commits. Use for structured coding.
npx claudepluginhub claude-world/director-mode-liteThis skill uses the workspace's default tool permissions.
A structured approach to software development that emphasizes understanding, minimal implementation, testing, documentation, and clean commits.
Guides end-to-end feature implementation: requirements analysis, task planning, TDD coding, full testing, self-review, and commit/PR. Use for feature specs or issues.
Guides test-driven development: decompose features/bugs into behaviors, cycle Red (failing test)→Green (minimal code)→Refactor. For test-first new features/bug fixes.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
A structured approach to software development that emphasizes understanding, minimal implementation, testing, documentation, and clean commits.
Step 1: Focus Problem → Understand before coding
Step 2: Prevent Overdev → Only build what's needed (YAGNI)
Step 3: Test First → Red-Green-Refactor
Step 4: Document → Keep it clear and current
Step 5: Smart Commit → Conventional Commits
/focus-problem)Goal: Thoroughly understand the problem before writing code.
Task(subagent_type="Explore", model="haiku", prompt="""
Explore the codebase for: [feature name] (thoroughness: medium)
Find related files, similar implementations, and test patterns.
""")
Goal: Ensure minimal viable implementation (YAGNI principle).
"We might need this later..." → Don't build it now
"Just in case..." → YAGNI
"Let's make it generic..." → Solve current problem only
"We should create a framework..." → Write concrete implementation
/test-first)Goal: Strict TDD (Red-Green-Refactor).
Goal: Ensure code is understandable.
/smart-commit)Goal: Clean version history with Conventional Commits.
<type>(<scope>): <description>
feat - New featurefix - Bug fixdocs - Documentationtest - Testsrefactor - Code restructure# Run full workflow
/workflow
# Or individual steps
/focus-problem "implement user login"
/test-first
/smart-commit
| Skill | Purpose |
|---|---|
/focus-problem | Step 1: Problem analysis |
/test-first | Step 3: TDD cycle |
/smart-commit | Step 5: Create commit |
/plan | Break down complex tasks |