From 244983d771036b94eff85e61eefd4e0d8d987064 Mon Sep 17 00:00:00 2001 From: xuyang Date: Tue, 31 Mar 2026 17:19:16 +0800 Subject: [PATCH 1/5] Add agent-assign extension to community catalog --- README.md | 1 + extensions/catalog.community.json | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) diff --git a/README.md b/README.md index 8b2afdee66..118c533a27 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,7 @@ The following community-contributed extensions are available in [`catalog.commun | Extension | Purpose | Category | Effect | URL | |-----------|---------|----------|--------|-----| | AI-Driven Engineering (AIDE) | A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation | `process` | Read+Write | [aide](https://github.com/mnriem/spec-kit-extensions/tree/main/aide) | +| Agent Assign | Assign specialized Claude Code agents to spec-kit tasks for targeted execution | `process` | Read+Write | [spec-kit-agent-assign](https://github.com/xymelon/spec-kit-agent-assign) | | Archive Extension | Archive merged features into main project memory. | `docs` | Read+Write | [spec-kit-archive](https://github.com/stn1slv/spec-kit-archive) | | Azure DevOps Integration | Sync user stories and tasks to Azure DevOps work items using OAuth authentication | `integration` | Read+Write | [spec-kit-azure-devops](https://github.com/pragya247/spec-kit-azure-devops) | | Checkpoint Extension | Commit the changes made during the middle of the implementation, so you don't end up with just one very large commit at the end | `code` | Read+Write | [spec-kit-checkpoint](https://github.com/aaronrsun/spec-kit-checkpoint) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index e210dd14f9..44a63bf3bc 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -36,6 +36,32 @@ "created_at": "2026-03-18T00:00:00Z", "updated_at": "2026-03-18T00:00:00Z" }, + "agent-assign": { + "name": "Agent Assign", + "id": "agent-assign", + "description": "Assign specialized Claude Code agents to spec-kit tasks for targeted execution", + "author": "xuyangxy", + "version": "1.0.0", + "download_url": "https://github.com/xymelon/spec-kit-agent-assign/archive/refs/tags/v1.0.0.zip", + "repository": "https://github.com/xymelon/spec-kit-agent-assign", + "homepage": "https://github.com/xymelon/spec-kit-agent-assign", + "documentation": "https://github.com/xymelon/spec-kit-agent-assign/blob/main/README.md", + "changelog": "https://github.com/xymelon/spec-kit-agent-assign/blob/main/CHANGELOG.md", + "license": "MIT", + "requires": { + "speckit_version": ">=0.3.0" + }, + "provides": { + "commands": 3, + "hooks": 1 + }, + "tags": ["agent", "automation", "implementation", "multi-agent", "task-routing"], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-03-31T00:00:00Z", + "updated_at": "2026-03-31T00:00:00Z" + }, "archive": { "name": "Archive Extension", "id": "archive", From f2b4891484caabf98c6781944844fa0edf971949 Mon Sep 17 00:00:00 2001 From: xuyang Date: Tue, 31 Mar 2026 17:25:07 +0800 Subject: [PATCH 2/5] Fix author name to xuyang in catalog entry --- 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 44a63bf3bc..63a396dc92 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -40,7 +40,7 @@ "name": "Agent Assign", "id": "agent-assign", "description": "Assign specialized Claude Code agents to spec-kit tasks for targeted execution", - "author": "xuyangxy", + "author": "xuyang", "version": "1.0.0", "download_url": "https://github.com/xymelon/spec-kit-agent-assign/archive/refs/tags/v1.0.0.zip", "repository": "https://github.com/xymelon/spec-kit-agent-assign", From 4b41fcf960c90b65b0f55708fbd011d6ba1b63fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8E=E5=AD=90=E5=90=8C=E8=AA=AC?= <541959443@qq.com> Date: Tue, 31 Mar 2026 20:01:19 +0800 Subject: [PATCH 3/5] Update extensions/catalog.community.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 63a396dc92..04b0e2563a 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -55,7 +55,13 @@ "commands": 3, "hooks": 1 }, - "tags": ["agent", "automation", "implementation", "multi-agent", "task-routing"], + "tags": [ + "agent", + "automation", + "implementation", + "multi-agent", + "task-routing" + ], "verified": false, "downloads": 0, "stars": 0, From 1777ce111e36088d03c2adae79ef7f75f71c05d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8E=E5=AD=90=E5=90=8C=E8=AA=AC?= <541959443@qq.com> Date: Tue, 31 Mar 2026 20:34:52 +0800 Subject: [PATCH 4/5] Update updated_at date in catalog.community.json --- 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 04b0e2563a..d96f0ff634 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-03-28T00:00:00Z", + "updated_at": "2026-03-31T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { From 42d20492085272b5b89fb52c4da2e0a9abf697ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=8E=E5=AD=90=E5=90=8C=E8=AA=AC?= <541959443@qq.com> Date: Tue, 31 Mar 2026 20:38:18 +0800 Subject: [PATCH 5/5] Update README.md Co-authored-by: Copilot <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 118c533a27..6c5b9aed7b 100644 --- a/README.md +++ b/README.md @@ -177,8 +177,8 @@ The following community-contributed extensions are available in [`catalog.commun | Extension | Purpose | Category | Effect | URL | |-----------|---------|----------|--------|-----| -| AI-Driven Engineering (AIDE) | A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation | `process` | Read+Write | [aide](https://github.com/mnriem/spec-kit-extensions/tree/main/aide) | | Agent Assign | Assign specialized Claude Code agents to spec-kit tasks for targeted execution | `process` | Read+Write | [spec-kit-agent-assign](https://github.com/xymelon/spec-kit-agent-assign) | +| AI-Driven Engineering (AIDE) | A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation | `process` | Read+Write | [aide](https://github.com/mnriem/spec-kit-extensions/tree/main/aide) | | Archive Extension | Archive merged features into main project memory. | `docs` | Read+Write | [spec-kit-archive](https://github.com/stn1slv/spec-kit-archive) | | Azure DevOps Integration | Sync user stories and tasks to Azure DevOps work items using OAuth authentication | `integration` | Read+Write | [spec-kit-azure-devops](https://github.com/pragya247/spec-kit-azure-devops) | | Checkpoint Extension | Commit the changes made during the middle of the implementation, so you don't end up with just one very large commit at the end | `code` | Read+Write | [spec-kit-checkpoint](https://github.com/aaronrsun/spec-kit-checkpoint) |