From 9af5411b4e4539b9a6bb4cb0c1bc24c20a0c9cd3 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Wed, 27 May 2026 09:52:57 -0500 Subject: [PATCH] Add Workflow Preset to community catalog (#2725) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 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 * Fix Requires column: use — for no required extensions The Requires column lists required extensions, not the Spec Kit version. This preset has no extension dependencies. --- 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 b24e3403c..b804c1d39 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 | — | [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 b87398f66..02d53a8c9 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" } } }