When to Use Tweak
Use/comet-tweak only when all of the following conditions are met:
- The change is a local, non-capability adjustment: copy, configuration, documentation, or prompt edits
- Fewer than 5 files are affected (typically no more than 4)
- No cross-module coordination is required
- Fewer than 5 new test cases are needed
- Configuration changes involve only value modifications — no new config items are added or deleted
- No new capability, architecture changes, or interface changes are introduced
- No delta spec is needed (if an existing spec acceptance scenario is affected, upgrade to full)
Tweak Workflow
| Phase | What Happens |
|---|---|
| Open | Streamlined artifacts — proposal.md (motivation + goals + scope), design.md (brief description, no solution comparison), tasks.md (no more than 3 tasks) |
| Lightweight Build | Direct build (build_mode: direct) — tasks executed one by one, formatter and tests run per task, commits use tweak: prefix |
| Light Verify | comet-verify scale assessment confirms lightweight path (≤ 3 tasks, ≤ 4 files, no delta spec, no new capability) |
| Archive | Reuses /comet-archive after verify_result: pass is confirmed |
Starting a Tweak
In your AI coding tool, describe the small change you want to make. Comet evaluates your description automatically:- If it meets tweak conditions,
/cometauto-routes to/comet-tweak— you don’t need to invoke it directly. - You can also invoke
/comet-tweakdirectly to explicitly use the preset.
Upgrade Conditions
Preset Comparison
| Aspect | Tweak | Hotfix | Full |
|---|---|---|---|
| Brainstorming | Skipped | Skipped | Required |
| Full Implementation Plan | Skipped | Skipped (transfers to /comet-build if tasks > 3) | Included |
| Verify Mode | Light (5 quick checks) | Scale-assessed (light or full) | Full |
| Build Mode | direct (default) | direct (default) | Chosen by user |
| Delta Spec | Not allowed (triggers upgrade) | Optional (triggers full verify) | Supported |
| Typical Use | Docs / copy / config / prompt | Bug fixes | Features / new capabilities |
| Max Files | < 5 | < 3 | Unrestricted |
| Max Tasks | ≤ 3 | ≤ 3 (else transfers to /comet-build) | Unrestricted |
Upgrading to Full Workflow
When a tweak is confirmed to need upgrading, Comet follows this path:- Updates the
workflowfield in.comet.yamltofull - Loads the
comet-designskill to supplement a full Design Doc on top of the existing tweak artifacts - Proceeds normally through the full workflow from the design phase onward
proposal.md, design.md, and tasks.md are preserved — you don’t start over.
Phase Guards
Tweak enforces the same guard transitions as the full workflow:verify without isolation and build_mode set, and cannot archive without verify_result: pass.