From dev-standards
Enforces best practice development workflow for any code task. Triggers on: feature implementation, bug fixes, refactoring, code changes, debugging, testing, and any development work. Ensures DRY/SOLID principles, comprehensive testing, validation, proper git commits, and structured planning with TLDR summaries.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dev-standards:dev-workflowThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```
Investigate → Plan → Implement → Test → Validate → Commit
Never skip steps. The most common failures come from implementing without understanding.
| Task | Command | Subagent |
|---|---|---|
| Create plan | /plan | - |
| Fix a bug | /fix | @operate-root-cause-analyst |
| Validate changes | /validate | - |
| Code review | /review | @validation-code-reviewer |
| Write tests | - | @test-writer |
| Update docs | - | @doc-technical-writer |
@operate-root-cause-analyst for root cause analysis/plan the fix with TLDR/validate all changesfix(scope): description/plan with requirements breakdown@test-writer for coverage/review before completion/validate and commit@test-writer if not)/plan the refactoring approach/validate behavior unchanged- Handle ALL error cases explicitly
- Fail fast with clear error messages
- Log errors with context for debugging
- Don't swallow exceptions silently
type(scope): brief description
- Detail about what changed
- Why it was changed
- Any breaking changes
Types: feat, fix, refactor, docs, test, chore, perf
## TLDR
- **Problem**: [one sentence]
- **Solution**: [one sentence]
- **Steps**: [3-7 items]
- **Validation**: [how we verify]
## Complete
### Summary
[What was done]
### Validation
- Tests: ✅/❌
- Lint: ✅/❌
- Environment: ✅/❌
### Commit
[hash and message]
❌ Implement without investigating first ❌ Fix symptoms instead of root causes ❌ Skip validation ("it should work") ❌ Mark complete before tests pass ❌ Leave TODO placeholders in plans ❌ Make assumptions without verification ❌ Edit directly on main/master branch
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub myenquiringmind/dev-standards-plugin --plugin dev-standards