Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions extensions/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ The following community-contributed extensions are available in [`catalog.commun
| Project Status | Show current SDD workflow progress — active feature, artifact status, task completion, workflow phase, and extensions summary | `visibility` | Read-only | [spec-kit-status](https://github.com/KhawarHabibKhan/spec-kit-status) |
| Ralph Loop | Autonomous implementation loop using AI agent CLI | `code` | Read+Write | [spec-kit-ralph](https://github.com/Rubiss/spec-kit-ralph) |
| Reconcile Extension | Reconcile implementation drift by surgically updating feature artifacts. | `docs` | Read+Write | [spec-kit-reconcile](https://github.com/stn1slv/spec-kit-reconcile) |
| Repository Index | Generate index for existing repo for overview, architecture and module level. | `docs` | Read-only | [spec-kit-repoindex ](https://github.com/liuyiyu/spec-kit-repoindex) |
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The markdown link text has an extra trailing space ([spec-kit-repoindex ]), which renders inconsistently and can break text-based checks. Remove the extra space in the link label.

Suggested change
| Repository Index | Generate index for existing repo for overview, architecture and module level. | `docs` | Read-only | [spec-kit-repoindex ](https://github.com/liuyiyu/spec-kit-repoindex) |
| Repository Index | Generate index for existing repo for overview, architecture and module level. | `docs` | Read-only | [spec-kit-repoindex](https://github.com/liuyiyu/spec-kit-repoindex) |

Copilot uses AI. Check for mistakes.
| Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | `docs` | Read+Write | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) |
| Review Extension | Post-implementation comprehensive code review with specialized agents for code quality, comments, tests, error handling, type design, and simplification | `code` | Read-only | [spec-kit-review](https://github.com/ismaelJimenez/spec-kit-review) |
| SDD Utilities | Resume interrupted workflows, validate project health, and verify spec-to-task traceability | `process` | Read+Write | [speckit-utils](https://github.com/mvanhorn/speckit-utils) |
Expand Down
38 changes: 38 additions & 0 deletions extensions/catalog.community.json
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,43 @@
"created_at": "2026-03-14T00:00:00Z",
"updated_at": "2026-03-14T00:00:00Z"
},
"repoindex":{
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Formatting: this entry key is missing a space after the colon ("repoindex":{). The rest of the catalog uses "id": { spacing; please align to keep diffs/linting consistent.

Suggested change
"repoindex":{
"repoindex": {

Copilot uses AI. Check for mistakes.
"name": "Repository Index",
"id": "repoindex",
"description": "Generate index of your repo for overview, architecuture and module",
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The description field contains a spelling error (architecuture). This text is user-facing in specify extension search/info, so please correct it (and consider completing the sentence, e.g., ending with a period).

Suggested change
"description": "Generate index of your repo for overview, architecuture and module",
"description": "Generate index of your repo for overview, architecture and module.",

Copilot uses AI. Check for mistakes.
"author": "Yiyu Liu",
"version": "1.0.0",
"download_url": "https://github.com/liuyiyu/spec-kit-repoindex/archive/refs/tags/v1.0.0.zip",
"repository": "https://github.com/liuyiyu/spec-kit-repoindex",
"homepage": "https://github.com/liuyiyu/spec-kit-repoindex",
"documentation": "https://github.com/liuyiyu/spec-kit-repoindex/blob/main/docs/",
"changelog": "https://github.com/liuyiyu/spec-kit-repoindex/blob/main/CHANGELOG.md",
"license": "MIT",
"requires": {
"speckit_version": ">=0.1.0",
"tools": [
{
"name": "no need",
"version": ">=1.0.0",
"required": false
}
]
Comment on lines +432 to +439
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this extension has no external tool dependencies, omit requires.tools entirely (consistent with other entries) rather than listing a placeholder tool name like no need. As-is, this will show a confusing requirement in CLI output.

Suggested change
"speckit_version": ">=0.1.0",
"tools": [
{
"name": "no need",
"version": ">=1.0.0",
"required": false
}
]
"speckit_version": ">=0.1.0"

Copilot uses AI. Check for mistakes.
},
"provides": {
"commands": 3,
"hooks": 0
},
"tags": [
"utility",
"brownfield",
"analysis"
],
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-03-23T13:30:00Z",
"updated_at": "2026-03-23T13:30:00Z"
Copy link

Copilot AI Mar 26, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Trailing whitespace after the updated_at value should be removed to avoid churn in future diffs and to satisfy common linters.

Suggested change
"updated_at": "2026-03-23T13:30:00Z"
"updated_at": "2026-03-23T13:30:00Z"

Copilot uses AI. Check for mistakes.
},
"retrospective": {
"name": "Retrospective Extension",
"id": "retrospective",
Expand Down Expand Up @@ -745,5 +782,6 @@
"created_at": "2026-03-16T00:00:00Z",
"updated_at": "2026-03-16T00:00:00Z"
}

}
}
Loading