skills/workflow/SKILL.md
Complete 5-step development workflow
npx skillsauth add claude-world/director-mode-lite workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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 |
tools
Test automation specialist for running tests and ensuring coverage
development
Test-Driven Development (TDD Red-Green-Refactor)
testing
Conventional Commits with quality checks
data-ai
List all available skills (core + custom)