From 1b3ab1bc77676a6d181d103e0495d1f8470786e4 Mon Sep 17 00:00:00 2001 From: Sakit Atakishiyev Date: Wed, 29 Apr 2026 17:38:36 +0200 Subject: [PATCH 1/2] Add Work IQ extension to community catalog Adds the Work IQ extension by sakitA to the community catalog. Work IQ integrates Microsoft 365 organizational knowledge (emails, meetings, documents, Teams) into spec-driven development workflows. - 4 commands: ask, context, stakeholders, enrich - 2 hooks: before_specify, after_specify - Requires: speckit >=0.1.0, Node.js >=18.0.0, workiq CLI Repository: https://github.com/sakitA/spec-kit-workiq --- README.md | 1 + extensions/catalog.community.json | 46 ++++++++++++++++++++++++++++++- 2 files changed, 46 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ab14ace731..5fed80713c 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,7 @@ The following community-contributed extensions are available in [`catalog.commun | V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | `docs` | Read+Write | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) | | Verify Extension | Post-implementation quality gate that validates implemented code against specification artifacts | `code` | Read-only | [spec-kit-verify](https://github.com/ismaelJimenez/spec-kit-verify) | | Verify Tasks Extension | Detect phantom completions: tasks marked [X] in tasks.md with no real implementation | `code` | Read-only | [spec-kit-verify-tasks](https://github.com/datastone-inc/spec-kit-verify-tasks) | +| Work IQ | Integrate Microsoft 365 organizational knowledge into spec-driven development workflows | `integration` | Read-only | [spec-kit-workiq](https://github.com/sakitA/spec-kit-workiq) | To submit your own extension, see the [Extension Publishing Guide](extensions/EXTENSION-PUBLISHING-GUIDE.md). diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 65fcb9099b..a5164b88aa 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1398,7 +1398,51 @@ "stars": 0, "created_at": "2026-03-16T00:00:00Z", "updated_at": "2026-03-16T00:00:00Z" + }, + "workiq": { + "name": "Work IQ", + "id": "workiq", + "description": "Integrate Microsoft 365 organizational knowledge into spec-driven development workflows", + "author": "sakitA", + "version": "1.0.0", + "download_url": "https://github.com/sakitA/spec-kit-workiq/archive/refs/tags/v1.0.0.tar.gz", + "repository": "https://github.com/sakitA/spec-kit-workiq", + "homepage": "https://github.com/sakitA/spec-kit-workiq", + "documentation": "https://github.com/sakitA/spec-kit-workiq/blob/main/README.md", + "changelog": "https://github.com/sakitA/spec-kit-workiq/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0", + "tools": [ + { + "name": "workiq", + "version": ">=1.0.0", + "required": true + }, + { + "name": "node", + "version": ">=18.0.0", + "required": true + } + ] + }, + "provides": { + "commands": 4, + "hooks": 2 + }, + "tags": [ + "microsoft-365", + "work-iq", + "context", + "integration", + "productivity" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-29T00:00:00Z", + "updated_at": "2026-04-29T00:00:00Z" } - + } } From b981a65f5c8a6fd49bfb68588525e51c7ba371eb Mon Sep 17 00:00:00 2001 From: Sakit Atakishiyev Date: Wed, 29 Apr 2026 17:44:55 +0200 Subject: [PATCH 2/2] Address PR review comments - Fix download_url to use .zip (Spec Kit installer requires ZIP format) - Bump top-level catalog updated_at to 2026-04-29 Co-Authored-By: Claude Sonnet 4.6 --- extensions/catalog.community.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index a5164b88aa..b814303a96 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-04-03T12:35:01Z", + "updated_at": "2026-04-29T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { @@ -1405,7 +1405,7 @@ "description": "Integrate Microsoft 365 organizational knowledge into spec-driven development workflows", "author": "sakitA", "version": "1.0.0", - "download_url": "https://github.com/sakitA/spec-kit-workiq/archive/refs/tags/v1.0.0.tar.gz", + "download_url": "https://github.com/sakitA/spec-kit-workiq/archive/refs/tags/v1.0.0.zip", "repository": "https://github.com/sakitA/spec-kit-workiq", "homepage": "https://github.com/sakitA/spec-kit-workiq", "documentation": "https://github.com/sakitA/spec-kit-workiq/blob/main/README.md",