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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,7 @@ The following community-contributed extensions are available in [`catalog.commun
| Extensify | Create and validate extensions and extension catalogs | `process` | Read+Write | [extensify](https://github.com/mnriem/spec-kit-extensions/tree/main/extensify) |
| Fleet Orchestrator | Orchestrate a full feature lifecycle with human-in-the-loop gates across all SpecKit phases | `process` | Read+Write | [spec-kit-fleet](https://github.com/sharathsatish/spec-kit-fleet) |
| Iterate | Iterate on spec documents with a two-phase define-and-apply workflow — refine specs mid-implementation and go straight back to building | `docs` | Read+Write | [spec-kit-iterate](https://github.com/imviancagrace/spec-kit-iterate) |
| 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](https://github.com/luno/spec-kit-plan-review) |
| Jira Integration | Create Jira Epics, Stories, and Issues from spec-kit specifications and task breakdowns with configurable hierarchy and custom field support | `integration` | Read+Write | [spec-kit-jira](https://github.com/mbachorik/spec-kit-jira) |
| Learning Extension | Generate educational guides from implementations and enhance clarifications with mentoring context | `docs` | Read+Write | [spec-kit-learn](https://github.com/imviancagrace/spec-kit-learn) |
Comment on lines +182 to 184
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.

This row is not in alphabetical order within the Community Extensions table (it is placed between "Iterate" and "Jira Integration"). The publishing guide explicitly asks to insert new extensions alphabetically (see extensions/EXTENSION-PUBLISHING-GUIDE.md:228); please move this row to the correct position (around the other "P" entries).

Suggested change
| 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](https://github.com/luno/spec-kit-plan-review) |
| Jira Integration | Create Jira Epics, Stories, and Issues from spec-kit specifications and task breakdowns with configurable hierarchy and custom field support | `integration` | Read+Write | [spec-kit-jira](https://github.com/mbachorik/spec-kit-jira) |
| Learning Extension | Generate educational guides from implementations and enhance clarifications with mentoring context | `docs` | Read+Write | [spec-kit-learn](https://github.com/imviancagrace/spec-kit-learn) |
| Jira Integration | Create Jira Epics, Stories, and Issues from spec-kit specifications and task breakdowns with configurable hierarchy and custom field support | `integration` | Read+Write | [spec-kit-jira](https://github.com/mbachorik/spec-kit-jira) |
| Learning Extension | Generate educational guides from implementations and enhance clarifications with mentoring context | `docs` | Read+Write | [spec-kit-learn](https://github.com/imviancagrace/spec-kit-learn) |
| 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](https://github.com/luno/spec-kit-plan-review) |

Copilot uses AI. Check for mistakes.
| Presetify | Create and validate presets and preset catalogs | `process` | Read+Write | [presetify](https://github.com/mnriem/spec-kit-extensions/tree/main/presetify) |
Expand Down
32 changes: 31 additions & 1 deletion extensions/catalog.community.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schema_version": "1.0",
"updated_at": "2026-03-19T12:08:20Z",
"updated_at": "2026-03-26T00:00: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.

updated_at should reflect the actual time the catalog was updated (the publishing guide calls for a current timestamp). Using a day-boundary value (00:00:00Z) can be misleading for consumers and makes it harder to correlate catalog updates with commits/releases; please set this to the current UTC timestamp at the time of the change.

Suggested change
"updated_at": "2026-03-26T00:00:00Z",
"updated_at": "2026-03-26T15:30:00Z",

Copilot uses AI. Check for mistakes.
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
"extensions": {
"aide": {
Expand Down Expand Up @@ -406,6 +406,36 @@
"created_at": "2026-03-17T00:00:00Z",
"updated_at": "2026-03-17T00:00:00Z"
},
"plan-review": {
"name": "Plan Review Gate",
"id": "plan-review",
"description": "Require spec.md and plan.md to be merged via MR/PR before allowing task generation",
"author": "luno",
"version": "2.0.0",
"download_url": "https://github.com/luno/spec-kit-plan-review/archive/refs/tags/v2.0.0.zip",
"repository": "https://github.com/luno/spec-kit-plan-review",
"homepage": "https://github.com/luno/spec-kit-plan-review",
"documentation": "https://github.com/luno/spec-kit-plan-review/blob/main/README.md",
"license": "MIT",
"requires": {
"speckit_version": ">=0.1.0"
},
"provides": {
"commands": 1,
"hooks": 1
},
"tags": [
"review",
"quality",
"workflow",
"gate"
],
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-03-26T00:00:00Z",
"updated_at": "2026-03-26T00:00:00Z"
},
"jira": {
Comment on lines +409 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.

The new "plan-review" entry is inserted between "iterate" and "jira", which breaks the (mostly) alphabetical ordering of extension keys in this section of the catalog. Please relocate it to the correct position (after "jira" and before other "p*" entries) to keep diffs stable and make manual lookups easier.

Copilot uses AI. Check for mistakes.
"name": "Jira Integration",
"id": "jira",
Expand Down
Loading