From 9234b97fa9dff1d966be41344b886248a4dd9b87 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Wed, 27 May 2026 09:27:36 -0500 Subject: [PATCH 1/2] Add Workflow Preset to community catalog Add workflow-preset submitted by @bigsmartben to: - presets/catalog.community.json (alphabetical order) - docs/community/presets.md community presets table Closes #2618 --- docs/community/presets.md | 1 + presets/catalog.community.json | 30 +++++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 1 deletion(-) diff --git a/docs/community/presets.md b/docs/community/presets.md index b24e3403ca..b5d93c9c07 100644 --- a/docs/community/presets.md +++ b/docs/community/presets.md @@ -27,5 +27,6 @@ The following community-contributed presets customize how Spec Kit behaves — o | Spec2Cloud | Spec-driven workflow tuned for shipping to Azure: spec → plan → tasks → implement → deploy | 5 templates, 8 commands | — | [spec2cloud](https://github.com/Azure-Samples/Spec2Cloud) | | Table of Contents Navigation | Adds a navigable Table of Contents to generated spec.md, plan.md, and tasks.md documents | 3 templates, 3 commands | — | [spec-kit-preset-toc-navigation](https://github.com/Quratulain-bilal/spec-kit-preset-toc-navigation) | | 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) | +| Workflow Preset | Behavior-first specification, design artifacts, and agent-native handoff orchestration — adds requirement-phase behavior drafts, formal BDD/UIF/behavior contracts, optional design artifacts, and scoped implementation handoffs with Core Agent, Vertical Planner Agent, and Worker Agent modes | 23 templates, 7 commands | >=0.8.10.dev0 | [spec-kit-workflow-preset](https://github.com/bigsmartben/spec-kit-workflow-preset) | To build and publish your own preset, see the [Presets Publishing Guide](https://github.com/github/spec-kit/blob/main/presets/PUBLISHING.md). diff --git a/presets/catalog.community.json b/presets/catalog.community.json index b87398f663..02d53a8c92 100644 --- a/presets/catalog.community.json +++ b/presets/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-05-26T00:00:00Z", + "updated_at": "2026-05-27T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/presets/catalog.community.json", "presets": { "a11y-governance": { @@ -581,6 +581,34 @@ "clarify", "interactive" ] + }, + "workflow-preset": { + "name": "Workflow Preset", + "id": "workflow-preset", + "version": "1.2.0", + "description": "Behavior-first specification, design artifacts, and agent-native handoff orchestration.", + "author": "bigsmartben", + "repository": "https://github.com/bigsmartben/spec-kit-workflow-preset", + "download_url": "https://github.com/bigsmartben/spec-kit-workflow-preset/archive/refs/tags/v1.2.0.zip", + "homepage": "https://github.com/bigsmartben/spec-kit-workflow-preset", + "documentation": "https://github.com/bigsmartben/spec-kit-workflow-preset/blob/main/README.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.8.10.dev0" + }, + "provides": { + "templates": 23, + "commands": 7 + }, + "tags": [ + "behavior", + "bdd", + "planning", + "implementation", + "handoff" + ], + "created_at": "2026-05-27T00:00:00Z", + "updated_at": "2026-05-27T00:00:00Z" } } } From 7eb785e70c23363de7beee3d90c83f175b735166 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Wed, 27 May 2026 09:41:51 -0500 Subject: [PATCH 2/2] =?UTF-8?q?Fix=20Requires=20column:=20use=20=E2=80=94?= =?UTF-8?q?=20for=20no=20required=20extensions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Requires column lists required extensions, not the Spec Kit version. This preset has no extension dependencies. --- docs/community/presets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/community/presets.md b/docs/community/presets.md index b5d93c9c07..b804c1d39b 100644 --- a/docs/community/presets.md +++ b/docs/community/presets.md @@ -27,6 +27,6 @@ The following community-contributed presets customize how Spec Kit behaves — o | Spec2Cloud | Spec-driven workflow tuned for shipping to Azure: spec → plan → tasks → implement → deploy | 5 templates, 8 commands | — | [spec2cloud](https://github.com/Azure-Samples/Spec2Cloud) | | Table of Contents Navigation | Adds a navigable Table of Contents to generated spec.md, plan.md, and tasks.md documents | 3 templates, 3 commands | — | [spec-kit-preset-toc-navigation](https://github.com/Quratulain-bilal/spec-kit-preset-toc-navigation) | | 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) | -| Workflow Preset | Behavior-first specification, design artifacts, and agent-native handoff orchestration — adds requirement-phase behavior drafts, formal BDD/UIF/behavior contracts, optional design artifacts, and scoped implementation handoffs with Core Agent, Vertical Planner Agent, and Worker Agent modes | 23 templates, 7 commands | >=0.8.10.dev0 | [spec-kit-workflow-preset](https://github.com/bigsmartben/spec-kit-workflow-preset) | +| Workflow Preset | Behavior-first specification, design artifacts, and agent-native handoff orchestration — adds requirement-phase behavior drafts, formal BDD/UIF/behavior contracts, optional design artifacts, and scoped implementation handoffs with Core Agent, Vertical Planner Agent, and Worker Agent modes | 23 templates, 7 commands | — | [spec-kit-workflow-preset](https://github.com/bigsmartben/spec-kit-workflow-preset) | To build and publish your own preset, see the [Presets Publishing Guide](https://github.com/github/spec-kit/blob/main/presets/PUBLISHING.md).