From 77ca5f4ed50c2635a8a1395c0008781e941ff37a Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Mon, 27 Apr 2026 17:42:21 +0100 Subject: [PATCH 1/8] catalog: add m365 community extension Add Microsoft 365 Integration to community catalog and README. Ingests Teams messages, files, and meeting transcripts as Markdown for use with speckit specify. --- README.md | 1 + extensions/catalog.community.json | 37 ++++++++++++++++++++++++++++++- 2 files changed, 37 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 419e7f919a..636c5574de 100644 --- a/README.md +++ b/README.md @@ -231,6 +231,7 @@ The following community-contributed extensions are available in [`catalog.commun | Memory Loader | Loads .specify/memory/ files before lifecycle commands so LLM agents have project governance context | `docs` | Read-only | [spec-kit-memory-loader](https://github.com/KevinBrown5280/spec-kit-memory-loader) | | Memory MD | Repository-native durable memory for Spec Kit projects | `docs` | Read+Write | [spec-kit-memory-hub](https://github.com/DyanGalih/spec-kit-memory-hub) | | MemoryLint | Agent memory governance tool: Automatically audits and fixes boundary conflicts between AGENTS.md and the constitution. | `process` | Read+Write | [memorylint](https://github.com/RbBtSn0w/spec-kit-extensions/tree/main/memorylint) | +| Microsoft 365 Integration | Fetch Teams messages, meeting transcripts, and SharePoint/OneDrive files as local Markdown for spec generation | `docs` | Read+Write | [spec-kit-m365](https://github.com/BenBtg/spec-kit-m365) | | Onboard | Contextual onboarding and progressive growth for developers new to spec-kit projects. Explains specs, maps dependencies, validates understanding, and guides the next step | `process` | Read+Write | [spec-kit-onboard](https://github.com/dmux/spec-kit-onboard) | | Optimize | Audit and optimize AI governance for context efficiency — token budgets, rule health, interpretability, compression, coherence, and echo detection | `process` | Read+Write | [spec-kit-optimize](https://github.com/sakitA/spec-kit-optimize) | | Plan Review Gate | Require spec.md and plan.md to be merged via MR/PR before allowing task generation | `process` | Read-only | [spec-kit-plan-review-gate](https://github.com/luno/spec-kit-plan-review-gate) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 0c6e5cbfb3..b7ad69122f 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-04-24T14:00:00Z", + "updated_at": "2026-04-27T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { @@ -941,6 +941,41 @@ "created_at": "2026-03-17T00:00:00Z", "updated_at": "2026-03-17T00:00:00Z" }, + "m365": { + "name": "Microsoft 365 Integration", + "id": "m365", + "description": "Fetch Teams messages, meeting transcripts, and SharePoint/OneDrive files as local Markdown for spec generation.", + "author": "BenBtg", + "version": "1.0.0", + "download_url": "https://github.com/BenBtg/spec-kit-m365/archive/refs/tags/v1.0.0.zip", + "repository": "https://github.com/BenBtg/spec-kit-m365", + "homepage": "https://github.com/BenBtg/spec-kit-m365", + "documentation": "https://github.com/BenBtg/spec-kit-m365/blob/main/README.md", + "changelog": "https://github.com/BenBtg/spec-kit-m365/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0", + "tools": ["m365 CLI (CLI for Microsoft 365)"] + }, + "provides": { + "commands": 3, + "hooks": 0 + }, + "tags": [ + "microsoft-365", + "teams", + "meetings", + "transcripts", + "collaboration", + "extraction", + "summarization" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-04-27T00:00:00Z", + "updated_at": "2026-04-27T00:00:00Z" + }, "maqa": { "name": "MAQA — Multi-Agent & Quality Assurance", "id": "maqa", From 56f9b95b0d06d6e29d082d747225cf119efa03ce Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:07:20 +0100 Subject: [PATCH 2/8] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 8b2b5d7bdc..6b0cedac44 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -955,7 +955,12 @@ "license": "MIT", "requires": { "speckit_version": ">=0.1.0", - "tools": ["m365 CLI (CLI for Microsoft 365)"] + "tools": [ + { + "name": "m365 CLI (CLI for Microsoft 365)", + "required": true + } + ] }, "provides": { "commands": 3, From fe9f19d5690003a434718cf13623a74c3251d08f Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:16:47 +0100 Subject: [PATCH 3/8] Potential fix for pull request finding "microsoft-365", "teams", "meetings", "transcripts", Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 6b0cedac44..0df41900cd 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -969,10 +969,8 @@ "tags": [ "microsoft-365", "teams", - "meetings", "transcripts", "collaboration", - "extraction", "summarization" ], "verified": false, From 719eef3ff1c712598248fda9569f0d45a0209663 Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:31:53 +0100 Subject: [PATCH 4/8] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- 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 0df41900cd..be56c3747c 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -976,8 +976,8 @@ "verified": false, "downloads": 0, "stars": 0, - "created_at": "2026-04-27T00:00:00Z", - "updated_at": "2026-04-27T00:00:00Z" + "created_at": "2026-04-28T00:00:00Z", + "updated_at": "2026-04-28T00:00:00Z" }, "maqa": { "name": "MAQA — Multi-Agent & Quality Assurance", From 5b3ebabcaf74ff4755157f384030cdf564b8aeff Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:36:01 +0100 Subject: [PATCH 5/8] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e2fe7a1bd5..9831f48270 100644 --- a/README.md +++ b/README.md @@ -232,7 +232,7 @@ The following community-contributed extensions are available in [`catalog.commun | Memory Loader | Loads .specify/memory/ files before lifecycle commands so LLM agents have project governance context | `docs` | Read-only | [spec-kit-memory-loader](https://github.com/KevinBrown5280/spec-kit-memory-loader) | | Memory MD | Repository-native durable memory for Spec Kit projects | `docs` | Read+Write | [spec-kit-memory-hub](https://github.com/DyanGalih/spec-kit-memory-hub) | | MemoryLint | Agent memory governance tool: Automatically audits and fixes boundary conflicts between AGENTS.md and the constitution. | `process` | Read+Write | [memorylint](https://github.com/RbBtSn0w/spec-kit-extensions/tree/main/memorylint) | -| Microsoft 365 Integration | Fetch Teams messages, meeting transcripts, and SharePoint/OneDrive files as local Markdown for spec generation | `docs` | Read+Write | [spec-kit-m365](https://github.com/BenBtg/spec-kit-m365) | +| Microsoft 365 Integration | Fetch Teams messages, meeting transcripts, and SharePoint/OneDrive files as local Markdown for spec generation | `integration` | Read+Write | [spec-kit-m365](https://github.com/BenBtg/spec-kit-m365) | | Onboard | Contextual onboarding and progressive growth for developers new to spec-kit projects. Explains specs, maps dependencies, validates understanding, and guides the next step | `process` | Read+Write | [spec-kit-onboard](https://github.com/dmux/spec-kit-onboard) | | Optimize | Audit and optimize AI governance for context efficiency — token budgets, rule health, interpretability, compression, coherence, and echo detection | `process` | Read+Write | [spec-kit-optimize](https://github.com/sakitA/spec-kit-optimize) | | Plan Review Gate | Require spec.md and plan.md to be merged via MR/PR before allowing task generation | `process` | Read-only | [spec-kit-plan-review-gate](https://github.com/luno/spec-kit-plan-review-gate) | From 7d0f670b8301c1148492add147b05350ff73d188 Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:40:27 +0100 Subject: [PATCH 6/8] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index be56c3747c..c2d33aad95 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -957,7 +957,7 @@ "speckit_version": ">=0.1.0", "tools": [ { - "name": "m365 CLI (CLI for Microsoft 365)", + "name": "m365", "required": true } ] From 047be2308c55aa86ef73667020656cc23250d2a8 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Tue, 28 Apr 2026 10:50:23 -0500 Subject: [PATCH 7/8] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index c2d33aad95..3b9bec38c8 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -958,6 +958,7 @@ "tools": [ { "name": "m365", + "version": ">=0.0.0", "required": true } ] From ea92155b524c18d554828b68d8e335857f3c565e Mon Sep 17 00:00:00 2001 From: Ben Buttigieg <70525+BenBtg@users.noreply.github.com> Date: Tue, 28 Apr 2026 16:55:12 +0100 Subject: [PATCH 8/8] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 1 - 1 file changed, 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 3b9bec38c8..c2d33aad95 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -958,7 +958,6 @@ "tools": [ { "name": "m365", - "version": ">=0.0.0", "required": true } ]