From 74100d19a8b8741f1a0ddeef6d8ec9c47a8968e8 Mon Sep 17 00:00:00 2001 From: "F.D.Castel" Date: Sat, 4 Apr 2026 00:53:32 -0300 Subject: [PATCH 1/2] feat: add "VS Code Ask Questions" preset for enhanced interactive questioning --- README.md | 1 + presets/catalog.community.json | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/README.md b/README.md index ab14ace731..5273d79d79 100644 --- a/README.md +++ b/README.md @@ -239,6 +239,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 commands | — | [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 9f7f045b31..d8aa01d48b 100644 --- a/presets/catalog.community.json +++ b/presets/catalog.community.json @@ -53,6 +53,31 @@ "fun", "experimental" ] + }, + "vscode-ask-questions": { + "name": "VS Code Ask Questions Clarify", + "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" + ] } } } From 274571005f0b29d8c6711dc447382d1d9a27ae2b Mon Sep 17 00:00:00 2001 From: "F.D.Castel" Date: Sat, 4 Apr 2026 01:15:16 -0300 Subject: [PATCH 2/2] fix: address PR review feedback from Copilot --- README.md | 2 +- presets/catalog.community.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5273d79d79..a428fce455 100644 --- a/README.md +++ b/README.md @@ -239,7 +239,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 commands | — | [spec-kit-presets](https://github.com/fdcastel/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 d8aa01d48b..3bcd325aec 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": { @@ -55,7 +55,7 @@ ] }, "vscode-ask-questions": { - "name": "VS Code Ask Questions Clarify", + "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.", @@ -74,7 +74,7 @@ }, "tags": [ "vscode", - "askQuestions", + "askquestions", "clarify", "interactive" ]