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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/director-mode-lite:workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A structured approach to software development that emphasizes understanding, minimal implementation, testing, documentation, and clean commits.
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 |
npx claudepluginhub claude-world/director-mode-liteGuides Red-Green-Refactor cycles for test-first feature implementation and bug fixes. Requires /optimus:init and working test infrastructure.
Establishes interaction style, commit conventions, documentation discipline, and skill-trust principles for disciplined agent-assisted development.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.