Add agent-assign extension to community catalog#2030
Add agent-assign extension to community catalog#2030xymelon wants to merge 7 commits intogithub:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
Adds the Agent Assign community extension to Spec Kit’s community extension catalog for discovery.
Changes:
- Added “Agent Assign” to the Community Extensions table in the root
README.md. - Added a new
agent-assignentry toextensions/catalog.community.jsonwith metadata (version, URLs, tags, requirements, etc.).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| README.md | Adds a new row for “Agent Assign” in the Community Extensions table. |
| extensions/catalog.community.json | Registers the agent-assign extension entry in the community catalog. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mnriem
left a comment
There was a problem hiding this comment.
Please address Copilot feedback
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
Comments suppressed due to low confidence (1)
extensions/catalog.community.json:42
- The
extensionsentries in this file appear to be kept in lexicographic order by extension id (e.g.,archive,azure-devops,checkpoint, ...). Withagent-assigninserted afteraide, the ordering is now inconsistent; consider movingagent-assignbeforeaideto keep the catalog stable and reduce merge conflicts.
"agent-assign": {
"name": "Agent Assign",
"id": "agent-assign",
"description": "Assign specialized Claude Code agents to spec-kit tasks for targeted execution",
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mnriem
left a comment
There was a problem hiding this comment.
Please address Copilot feedback
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 2 out of 2 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
mnriem
left a comment
There was a problem hiding this comment.
Please resolve conflicts
There was a problem hiding this comment.
Pull request overview
Adds the Agent Assign extension to the community extensions catalog and README list.
Changes:
- Added Agent Assign row to the Community Extensions table in
README.md. - Added
agent-assignentry (metadata: URLs, version, tags, requires/provides, etc.) toextensions/catalog.community.json.
Show a summary per file
| File | Description |
|---|---|
| README.md | Adds the Agent Assign extension to the documented Community Extensions table. |
| extensions/catalog.community.json | Registers the Agent Assign extension in the community catalog JSON. |
Copilot's findings
Tip
Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comments suppressed due to low confidence (1)
extensions/catalog.community.json:69
- Per extensions/EXTENSION-PUBLISHING-GUIDE.md,
created_atandupdated_atshould use the current timestamp for the catalog entry. These are set to2026-03-31T00:00:00Z, which predates this PR’s addition/update of the entry.
"downloads": 0,
"stars": 0,
"created_at": "2026-03-31T00:00:00Z",
"updated_at": "2026-03-31T00:00:00Z"
- Files reviewed: 2/2 changed files
- Comments generated: 0 new
Summary
Adds the Agent Assign extension to the community catalog.
processWhat it does
Routes spec-kit tasks to specialized Claude Code agents for targeted execution. Scans
.claude/agents/definitions, assigns each task to the best-fit agent, and executes via dedicated subagents — replacing the flat/speckit.implementwith agent-aware, context-isolated execution.Commands
speckit.agent-assign.assignspeckit.agent-assign.validatespeckit.agent-assign.executeBenchmark
Tested on TuneMuse with three frontier models. Agent-assign scored +6.7 points higher on average (23.2 vs 16.5 out of 30), a 40% improvement over standard spec-kit.
Checklist
extension.yml— valid YAML, public repo, all command files existverified: falseanddownloads: 0as required