What problem does it solve?
Long-running coding changes lose track of phase, state, and user decisions when context is compressed or sessions restart. This Skill routes every request through a deterministic open → design → build → verify → archive pipeline backed by a .comet.yaml state file, so work resumes correctly and no required user decision point is skipped.
Core Features & Use Cases
- Automatic phase detection and resume: Probes the repository with
comet resume-probe, reads .comet.yaml, and routes to the correct sub-skill (/comet-open, /comet-design, /comet-build, /comet-verify, /comet-archive) without trusting conversation history.
- Intent-based workflow routing: Classifies requests into full, hotfix, or tweak workflows using a CometIntentFrame and runtime scorer, with blocking user decision points at scope, workspace, build-mode, and archive confirmations.
- State machine enforcement: Guards phase transitions with hard constraints on isolation mode, build mode, TDD mode, and review mode, plus dirty-worktree attribution and context-recovery protocols.
- Use Case: A developer returns to a half-finished feature after a week; the Skill detects the active change, recovers the exact build-phase checkpoint, and continues subagent-dispatched task execution from where it stopped.
Quick Start
Ask the assistant to start or resume a Comet Classic change for your feature request, for example by invoking /comet-classic with a short description of the change you want to make.