What problem does it solve? Starting an AI-assisted development session without shared context leads to inconsistent code that ignores project conventions. This Skill bootstraps each session by loading workflow rules, current task state, and guideline indexes, then routes every request through an appropriate development workflow. ## Core Features & Use Cases - Session Initialization: Reads the workflow guide, runs get_context.py for git status and active tasks, and loads frontend/backend guideline indexes before any work begins. - Task Classification: Sorts incoming requests into questions, trivial fixes, simple tasks, or complex tasks, each with a defined handling path. - Structured Task Workflow: Creates task directories, writes PRDs, researches the codebase, configures jsonl context files, and runs implement and check phases via task.py scripts. - Use Case: A developer opens a session and says "add rate limiting to the API". The Skill classifies it as a simple task, creates a task directory, writes a PRD, injects relevant backend specs into context, and implements the change following project conventions. ## Quick Start Start my development session and help me work on adding input validation to the user registration endpoint.