viepilot 2.4.0 → 2.15.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,6 +2,14 @@
2
2
  Create and manage project requests: bugs, features, enhancements, tech debt, and brainstorm continuation.
3
3
  </purpose>
4
4
 
5
+ ## Adapter Compatibility
6
+
7
+ | Feature | Claude Code (terminal) | Cursor (Agent/Skills) | Codex CLI | Antigravity (native) |
8
+ |---------|----------------------|-----------------------|-----------|----------------------|
9
+ | Interactive prompts | ✅ `AskUserQuestion` tool | ❌ text fallback | ❌ text fallback | ❌ text fallback |
10
+
11
+ When `AskUserQuestion` is not available, each prompt block falls back to the plain-text numbered list shown below it — no configuration needed.
12
+
5
13
  ## ViePilot Skill Scope Policy (BUG-004)
6
14
 
7
15
  - Default behavior: only use and suggest skills under `vp-*`.
@@ -53,6 +61,15 @@ Parse `{{VP_ARGS}}` for type flag:
53
61
  - `--list` → List Requests
54
62
 
55
63
  If no flag, ask user:
64
+
65
+ > **Adapter-aware prompt:**
66
+ > - **Claude Code (terminal):** use `AskUserQuestion` tool — spec:
67
+ > - question: "What type of request would you like to create?"
68
+ > - header: "Request type"
69
+ > - options: [{ label: "🐛 Bug Report", description: "Something is broken — file a defect report" }, { label: "✨ Feature Request", description: "New functionality — add a capability that doesn't exist yet" }, { label: "🔧 Enhancement", description: "Improve existing feature — make something better" }, { label: "🧹 Technical Debt", description: "Code cleanup / refactor — no new behavior" }]
70
+ > - multiSelect: false
71
+ > - **Cursor / Codex / Antigravity / other:** use text menu below (Brainstorm and List options remain text-only)
72
+
56
73
  ```
57
74
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
58
75
  VIEPILOT ► REQUEST
@@ -117,6 +134,15 @@ Options:
117
134
  >
118
135
 
119
136
  6. Severity?
137
+
138
+ > **Adapter-aware prompt:**
139
+ > - **Claude Code (terminal):** use `AskUserQuestion` tool — spec:
140
+ > - question: "What is the bug severity?"
141
+ > - header: "Severity"
142
+ > - options: [{ label: "Critical", description: "System down, data loss — needs immediate attention" }, { label: "High", description: "Major feature broken — significantly impacts users" }, { label: "Medium", description: "Feature impaired — workaround exists" }, { label: "Low", description: "Minor / cosmetic issue — no functional impact" }]
143
+ > - multiSelect: false
144
+ > - **Cursor / Codex / Antigravity / other:** use text list below
145
+
120
146
  1. Critical - System down, data loss
121
147
  2. High - Major feature broken
122
148
  3. Medium - Feature impaired
@@ -191,6 +217,15 @@ Create `BUG-{N}.md`:
191
217
  >
192
218
 
193
219
  5. Priority?
220
+
221
+ > **Adapter-aware prompt:**
222
+ > - **Claude Code (terminal):** use `AskUserQuestion` tool — spec:
223
+ > - question: "What is the feature priority?"
224
+ > - header: "Priority"
225
+ > - options: [{ label: "Must-have", description: "Critical for release — cannot ship without it" }, { label: "Should-have", description: "Important but not blocking — include if capacity allows" }, { label: "Nice-to-have", description: "Quality-of-life improvement — can defer to next milestone" }]
226
+ > - multiSelect: false
227
+ > - **Cursor / Codex / Antigravity / other:** use text list below
228
+
194
229
  1. Must-have - Critical for release
195
230
  2. Should-have - Important but not blocking
196
231
  3. Nice-to-have - Can defer