Skip to content

Commit 4f81fc2

Browse files
authored
feat(extensions): add Archive and Reconcile extensions to community catalog (#1844)
* feat(extensions): add reconcile and archive to community catalog * Update extension link text and add changelogs Normalize extension link text in extensions/README.md (replace `[@stn1slv]` with `spec-kit-archive` and `spec-kit-reconcile`) and add CHANGELOG URLs to the corresponding entries in extensions/catalog.community.json for the Archive and Reconcile extensions. --------- Co-authored-by: Stanislav Deviatov <stn1slv@users.noreply.github.com>
1 parent 4a32344 commit 4f81fc2

File tree

2 files changed

+65
-1
lines changed

2 files changed

+65
-1
lines changed

extensions/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,15 @@ The following community-contributed extensions are available in [`catalog.commun
7272

7373
| Extension | Purpose | URL |
7474
|-----------|---------|-----|
75+
| Archive Extension | Archive merged features into main project memory. | [spec-kit-archive](https://github.com/stn1slv/spec-kit-archive) |
7576
| Azure DevOps Integration | Sync user stories and tasks to Azure DevOps work items using OAuth authentication | [spec-kit-azure-devops](https://github.com/pragya247/spec-kit-azure-devops) |
7677
| Cleanup Extension | Post-implementation quality gate that reviews changes, fixes small issues (scout rule), creates tasks for medium issues, and generates analysis for large issues | [spec-kit-cleanup](https://github.com/dsrednicki/spec-kit-cleanup) |
7778
| DocGuard — CDD Enforcement | Canonical-Driven Development enforcement. Generates, validates, scores, and traces project documentation against 92 automated checks with config-aware traceability, quality labels, and AI-ready fix prompts. Zero dependencies. | [spec-kit-docguard](https://github.com/raccioly/docguard) |
7879
| Fleet Orchestrator | Orchestrate a full feature lifecycle with human-in-the-loop gates across all SpecKit phases | [spec-kit-fleet](https://github.com/sharathsatish/spec-kit-fleet) |
7980
| Jira Integration | Create Jira Epics, Stories, and Issues from spec-kit specifications and task breakdowns with configurable hierarchy and custom field support | [spec-kit-jira](https://github.com/mbachorik/spec-kit-jira) |
8081
| Project Health Check | Diagnose a Spec Kit project and report health issues across structure, agents, features, scripts, extensions, and git | [spec-kit-doctor](https://github.com/KhawarHabibKhan/spec-kit-doctor) |
8182
| Ralph Loop | Autonomous implementation loop using AI agent CLI | [spec-kit-ralph](https://github.com/Rubiss/spec-kit-ralph) |
83+
| Reconcile Extension | Reconcile implementation drift by surgically updating feature artifacts. | [spec-kit-reconcile](https://github.com/stn1slv/spec-kit-reconcile) |
8284
| Retrospective Extension | Post-implementation retrospective with spec adherence scoring, drift analysis, and human-gated spec updates | [spec-kit-retrospective](https://github.com/emi-dm/spec-kit-retrospective) |
8385
| Review Extension | Post-implementation comprehensive code review with specialized agents for code quality, comments, tests, error handling, type design, and simplification | [spec-kit-review](https://github.com/ismaelJimenez/spec-kit-review) |
8486
| Spec Sync | Detect and resolve drift between specs and implementation. AI-assisted resolution with human approval | [spec-kit-sync](https://github.com/bgervin/spec-kit-sync) |

extensions/catalog.community.json

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,39 @@
11
{
22
"schema_version": "1.0",
3-
"updated_at": "2026-03-13T12:00:00Z",
3+
"updated_at": "2026-03-14T00:00:00Z",
44
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
55
"extensions": {
6+
"archive": {
7+
"name": "Archive Extension",
8+
"id": "archive",
9+
"description": "Archive merged features into main project memory, resolving gaps and conflicts.",
10+
"author": "Stanislav Deviatov",
11+
"version": "1.0.0",
12+
"download_url": "https://github.com/stn1slv/spec-kit-archive/archive/refs/tags/v1.0.0.zip",
13+
"repository": "https://github.com/stn1slv/spec-kit-archive",
14+
"homepage": "https://github.com/stn1slv/spec-kit-archive",
15+
"documentation": "https://github.com/stn1slv/spec-kit-archive/blob/main/README.md",
16+
"changelog": "https://github.com/stn1slv/spec-kit-archive/blob/main/CHANGELOG.md",
17+
"license": "MIT",
18+
"requires": {
19+
"speckit_version": ">=0.1.0"
20+
},
21+
"provides": {
22+
"commands": 1,
23+
"hooks": 0
24+
},
25+
"tags": [
26+
"archive",
27+
"memory",
28+
"merge",
29+
"changelog"
30+
],
31+
"verified": false,
32+
"downloads": 0,
33+
"stars": 0,
34+
"created_at": "2026-03-14T00:00:00Z",
35+
"updated_at": "2026-03-14T00:00:00Z"
36+
},
637
"azure-devops": {
738
"name": "Azure DevOps Integration",
839
"id": "azure-devops",
@@ -250,6 +281,37 @@
250281
"created_at": "2026-03-09T00:00:00Z",
251282
"updated_at": "2026-03-09T00:00:00Z"
252283
},
284+
"reconcile": {
285+
"name": "Reconcile Extension",
286+
"id": "reconcile",
287+
"description": "Reconcile implementation drift by surgically updating the feature's own spec, plan, and tasks.",
288+
"author": "Stanislav Deviatov",
289+
"version": "1.0.0",
290+
"download_url": "https://github.com/stn1slv/spec-kit-reconcile/archive/refs/tags/v1.0.0.zip",
291+
"repository": "https://github.com/stn1slv/spec-kit-reconcile",
292+
"homepage": "https://github.com/stn1slv/spec-kit-reconcile",
293+
"documentation": "https://github.com/stn1slv/spec-kit-reconcile/blob/main/README.md",
294+
"changelog": "https://github.com/stn1slv/spec-kit-reconcile/blob/main/CHANGELOG.md",
295+
"license": "MIT",
296+
"requires": {
297+
"speckit_version": ">=0.1.0"
298+
},
299+
"provides": {
300+
"commands": 1,
301+
"hooks": 0
302+
},
303+
"tags": [
304+
"reconcile",
305+
"drift",
306+
"tasks",
307+
"remediation"
308+
],
309+
"verified": false,
310+
"downloads": 0,
311+
"stars": 0,
312+
"created_at": "2026-03-14T00:00:00Z",
313+
"updated_at": "2026-03-14T00:00:00Z"
314+
},
253315
"retrospective": {
254316
"name": "Retrospective Extension",
255317
"id": "retrospective",

0 commit comments

Comments
 (0)