You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add bugfix spec workflow, spec type detection, and viewer enhancements
Introduce /spec-bugfix-plan command for structured bug fix planning with
root cause analysis. Spec dispatcher now auto-detects task type (feature vs
bugfix) and routes accordingly. Console viewer shows spec type badges,
extracted SpecHeaderCard component, and updated plan reader to parse Type
field. Installer adds property-based testing tools. Documentation and
workflow rules updated to reflect the dual-mode spec system.
2.**Dependencies** — Installs Vexor, playwright-cli, Claude Code
119
+
2.**Dependencies** — Installs Vexor, playwright-cli, Claude Code, property-based testing tools
120
120
3.**Shell integration** — Auto-configures bash, fish, and zsh with `pilot` alias
121
121
4.**Config & Claude files** — Sets up `.claude/` plugin, rules, commands, hooks, MCP servers
122
122
5.**VS Code extensions** — Installs recommended extensions for your stack
@@ -179,11 +179,12 @@ pilot
179
179
180
180
### /spec — Spec-Driven Development
181
181
182
-
Best for complex features, refactoring, or when you want to review a plan before implementation:
182
+
Best for features, bug fixes, refactoring, or when you want to review a plan before implementation. Auto-detects whether the task is a feature or bug fix and adapts the planning flow accordingly.
183
183
184
184
```bash
185
185
pilot
186
186
> /spec "Add user authentication with OAuth and JWT tokens"
187
+
> /spec "Fix the crash when deleting nodes with two children"
187
188
```
188
189
189
190
```
@@ -251,11 +252,11 @@ Pilot uses the right model for each phase — Opus where reasoning quality matte
251
252
252
253
### Quick Mode
253
254
254
-
Just chat. No plan file, no approval gate. All quality hooks and TDD enforcement still apply.
255
+
Just chat. No plan file, no approval gate. All quality hooks and TDD enforcement still apply. Best for small tasks, exploration, and quick questions.
0 commit comments