From 7dc493e6136c920b4e14e0715070e8703cec3bfc Mon Sep 17 00:00:00 2001 From: "F.D.Castel" Date: Mon, 6 Apr 2026 10:03:31 -0300 Subject: [PATCH] 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 --- README.md | 1 + presets/catalog.community.json | 27 ++++++++++++++++++++++++++- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ba2b7c5d..52f31641f 100644 --- a/README.md +++ b/README.md @@ -240,6 +240,7 @@ The following community-contributed presets customize how Spec Kit behaves — o |--------|---------|----------|----------|-----| | 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) | | 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) | +| 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) | To build and publish your own preset, see the [Presets Publishing Guide](presets/PUBLISHING.md). diff --git a/presets/catalog.community.json b/presets/catalog.community.json index 9f7f045b3..3bcd325ae 100644 --- a/presets/catalog.community.json +++ b/presets/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-03-24T00:00:00Z", + "updated_at": "2026-04-04T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/presets/catalog.community.json", "presets": { "aide-in-place": { @@ -53,6 +53,31 @@ "fun", "experimental" ] + }, + "vscode-ask-questions": { + "name": "VS Code Ask Questions", + "id": "vscode-ask-questions", + "version": "1.0.0", + "description": "Enhances the clarify command to use vscode/askQuestions for batched interactive questioning, reducing API request costs in GitHub Copilot.", + "author": "fdcastel", + "repository": "https://github.com/fdcastel/spec-kit-presets", + "download_url": "https://github.com/fdcastel/spec-kit-presets/releases/download/vscode-ask-questions-v1.0.0/vscode-ask-questions.zip", + "homepage": "https://github.com/fdcastel/spec-kit-presets", + "documentation": "https://github.com/fdcastel/spec-kit-presets/blob/main/vscode-ask-questions/README.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0" + }, + "provides": { + "templates": 0, + "commands": 1 + }, + "tags": [ + "vscode", + "askquestions", + "clarify", + "interactive" + ] } } }