Skip to content

Commit 7dc493e

Browse files
authored
feat: add "VS Code Ask Questions" preset (#2086)
* feat: add "VS Code Ask Questions" preset for enhanced interactive questioning * fix: address PR review feedback from Copilot
1 parent 5678ca7 commit 7dc493e

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,7 @@ The following community-contributed presets customize how Spec Kit behaves — o
240240
|--------|---------|----------|----------|-----|
241241
| AIDE In-Place Migration | Adapts the AIDE extension workflow for in-place technology migrations (X → Y pattern) — adds migration objectives, verification gates, knowledge documents, and behavioral equivalence criteria | 2 templates, 8 commands | AIDE extension | [spec-kit-presets](https://github.com/mnriem/spec-kit-presets) |
242242
| Pirate Speak (Full) | Transforms all Spec Kit output into pirate speak — specs become "Voyage Manifests", plans become "Battle Plans", tasks become "Crew Assignments" | 6 templates, 9 commands || [spec-kit-presets](https://github.com/mnriem/spec-kit-presets) |
243+
| VS Code Ask Questions | Enhances the clarify command to use `vscode/askQuestions` for batched interactive questioning. | 1 command || [spec-kit-presets](https://github.com/fdcastel/spec-kit-presets) |
243244

244245
To build and publish your own preset, see the [Presets Publishing Guide](presets/PUBLISHING.md).
245246

presets/catalog.community.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schema_version": "1.0",
3-
"updated_at": "2026-03-24T00:00:00Z",
3+
"updated_at": "2026-04-04T00:00:00Z",
44
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/presets/catalog.community.json",
55
"presets": {
66
"aide-in-place": {
@@ -53,6 +53,31 @@
5353
"fun",
5454
"experimental"
5555
]
56+
},
57+
"vscode-ask-questions": {
58+
"name": "VS Code Ask Questions",
59+
"id": "vscode-ask-questions",
60+
"version": "1.0.0",
61+
"description": "Enhances the clarify command to use vscode/askQuestions for batched interactive questioning, reducing API request costs in GitHub Copilot.",
62+
"author": "fdcastel",
63+
"repository": "https://github.com/fdcastel/spec-kit-presets",
64+
"download_url": "https://github.com/fdcastel/spec-kit-presets/releases/download/vscode-ask-questions-v1.0.0/vscode-ask-questions.zip",
65+
"homepage": "https://github.com/fdcastel/spec-kit-presets",
66+
"documentation": "https://github.com/fdcastel/spec-kit-presets/blob/main/vscode-ask-questions/README.md",
67+
"license": "MIT",
68+
"requires": {
69+
"speckit_version": ">=0.1.0"
70+
},
71+
"provides": {
72+
"templates": 0,
73+
"commands": 1
74+
},
75+
"tags": [
76+
"vscode",
77+
"askquestions",
78+
"clarify",
79+
"interactive"
80+
]
5681
}
5782
}
5883
}

0 commit comments

Comments
 (0)