What problem does it solve? Development requests often mix multiple intents—fixing a bug, reviewing the change, writing tests, and updating docs—and handling them ad hoc leads to skipped steps, wrong ordering, and incomplete checklists. This Skill classifies each request by intent and runs the correct workflow checklists in a safe dependency order. ## Core Features & Use Cases - Intent-Based Routing: Keyword routing table maps requests to one of six workflows: bug-fix, code-review, documentation, performance-optimization, security-review, or tests. - Dependency-Ordered Execution: Multi-intent requests run in a fixed order—fix bugs and vulnerabilities first, then optimize, test, review, and document last. - Structured Checklists: Each workflow has a concrete checklist, such as root cause analysis for bugs, six security review categories, and test coverage across happy paths, edge cases, and integration points. - Use Case: A user asks to "fix the login crash, then review and test the fix." The Skill runs bug-fix first with root cause analysis, generates regression tests, then performs a five-area code review, ending with a summary of files touched. ## Quick Start Ask the assistant to fix a bug, review code, generate documentation, optimize performance, run a security review, or write test cases for specific files in your project.