From 818da95a6427ca6ffeb3e5a93172b9517b3d3831 Mon Sep 17 00:00:00 2001 From: Ash Brener Date: Mon, 8 Jun 2026 14:19:01 +0200 Subject: [PATCH 1/3] chore(catalog): add Jira Integration (Sync Engine) extension Adds a new community-catalog listing for `spec-kit-jira-sync` (ashbrener/spec-kit-jira-sync), a reconcile-engine bridge that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase): idempotent, drift-aware, fail-closed. Catalog id is `jira-sync` because the `jira` id is already taken by an unrelated extension; display name "Jira Integration (Sync Engine)" disambiguates from the existing "Jira Integration" listing. Touches the two catalog surfaces: 1. extensions/catalog.community.json - the new "jira-sync" entry, inserted after the existing "jira" entry. Field shape matches the sibling "linear" entry exactly. 2. docs/community/extensions.md - the table row, after the existing Jira Integration row. JSON validated; diff is the single entry + the one table row. --- docs/community/extensions.md | 1 + extensions/catalog.community.json | 33 +++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/docs/community/extensions.md b/docs/community/extensions.md index 8d41db95c6..3bb61c8524 100644 --- a/docs/community/extensions.md +++ b/docs/community/extensions.md @@ -55,6 +55,7 @@ The following community-contributed extensions are available in [`catalog.commun | Intelligent Agent Orchestrator | Cross-catalog agent discovery and intelligent prompt-to-command routing | `process` | Read+Write | [spec-kit-orchestrator](https://github.com/pragya247/spec-kit-orchestrator) | | 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) | | 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) | +| Jira Integration (Sync Engine) | A real reconcile engine — idempotent, drift-aware, fail-closed — that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase) and never corrupts your board | `integration` | Read+Write | [spec-kit-jira-sync](https://github.com/ashbrener/spec-kit-jira-sync) | | 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) | | Linear Integration | Mirror spec-kit feature directories into Linear (filesystem → Linear, reconcile-based, unidirectional). | `integration` | Read+Write | [spec-kit-linear](https://github.com/ashbrener/spec-kit-linear) | | MAQA — Multi-Agent & Quality Assurance | Coordinator → feature → QA agent workflow with parallel worktree-based implementation. Language-agnostic. Auto-detects installed board plugins. Optional CI gate. | `process` | Read+Write | [spec-kit-maqa-ext](https://github.com/GenieRobot/spec-kit-maqa-ext) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 1af9940652..4ef5ca80b8 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1215,6 +1215,39 @@ "created_at": "2026-03-05T00:00:00Z", "updated_at": "2026-03-05T00:00:00Z" }, + "jira-sync": { + "name": "Jira Integration (Sync Engine)", + "id": "jira-sync", + "description": "A real reconcile engine — idempotent, drift-aware, fail-closed — that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase) and never corrupts your board.", + "author": "Ash Brener", + "version": "0.1.0", + "download_url": "https://github.com/ashbrener/spec-kit-jira-sync/archive/refs/tags/v0.1.0.zip", + "repository": "https://github.com/ashbrener/spec-kit-jira-sync", + "homepage": "https://github.com/ashbrener/spec-kit-jira-sync", + "documentation": "https://github.com/ashbrener/spec-kit-jira-sync/blob/main/README.md", + "changelog": "https://github.com/ashbrener/spec-kit-jira-sync/releases", + "license": "MIT", + "requires": { + "speckit_version": ">=0.1.0" + }, + "provides": { + "commands": 2, + "hooks": 0 + }, + "tags": [ + "issue-tracking", + "jira", + "tasks-sync", + "lifecycle-mirror", + "reconcile", + "drift-aware" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-06-08T00:00:00Z", + "updated_at": "2026-06-08T00:00:00Z" + }, "learn": { "name": "Learning Extension", "id": "learn", From 279e692ddc65664b8d3f638e2e3394ab0b4b0aa7 Mon Sep 17 00:00:00 2001 From: Ash Brener Date: Mon, 8 Jun 2026 15:07:31 +0200 Subject: [PATCH 2/3] catalog(jira-sync): neutral capability-focused description (address Copilot review) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Drop the comparative/absolute framing ('A real …', 'never corrupts your board') flagged by Copilot; keep the factual, tested capability descriptors (idempotent, drift-aware, fail-closed). Applies to both the catalog entry and the docs table row. --- docs/community/extensions.md | 2 +- extensions/catalog.community.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/community/extensions.md b/docs/community/extensions.md index 3bb61c8524..d50e204cda 100644 --- a/docs/community/extensions.md +++ b/docs/community/extensions.md @@ -55,7 +55,7 @@ The following community-contributed extensions are available in [`catalog.commun | Intelligent Agent Orchestrator | Cross-catalog agent discovery and intelligent prompt-to-command routing | `process` | Read+Write | [spec-kit-orchestrator](https://github.com/pragya247/spec-kit-orchestrator) | | 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) | | 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) | -| Jira Integration (Sync Engine) | A real reconcile engine — idempotent, drift-aware, fail-closed — that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase) and never corrupts your board | `integration` | Read+Write | [spec-kit-jira-sync](https://github.com/ashbrener/spec-kit-jira-sync) | +| Jira Integration (Sync Engine) | Idempotent, drift-aware, fail-closed reconcile engine mirroring spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase) | `integration` | Read+Write | [spec-kit-jira-sync](https://github.com/ashbrener/spec-kit-jira-sync) | | 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) | | Linear Integration | Mirror spec-kit feature directories into Linear (filesystem → Linear, reconcile-based, unidirectional). | `integration` | Read+Write | [spec-kit-linear](https://github.com/ashbrener/spec-kit-linear) | | MAQA — Multi-Agent & Quality Assurance | Coordinator → feature → QA agent workflow with parallel worktree-based implementation. Language-agnostic. Auto-detects installed board plugins. Optional CI gate. | `process` | Read+Write | [spec-kit-maqa-ext](https://github.com/GenieRobot/spec-kit-maqa-ext) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 4ef5ca80b8..dda4a32d51 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1218,7 +1218,7 @@ "jira-sync": { "name": "Jira Integration (Sync Engine)", "id": "jira-sync", - "description": "A real reconcile engine — idempotent, drift-aware, fail-closed — that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase) and never corrupts your board.", + "description": "An idempotent, drift-aware, fail-closed reconcile engine that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase).", "author": "Ash Brener", "version": "0.1.0", "download_url": "https://github.com/ashbrener/spec-kit-jira-sync/archive/refs/tags/v0.1.0.zip", From c740502b1424f3d702f8d3bfc05de71b80fdd1a1 Mon Sep 17 00:00:00 2001 From: Ash Brener Date: Mon, 8 Jun 2026 23:45:38 +0200 Subject: [PATCH 3/3] chore(catalog): bump jira-sync to v0.2.0 (re-mode + engine unification) --- extensions/catalog.community.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index dda4a32d51..e12d7fb50f 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1220,8 +1220,8 @@ "id": "jira-sync", "description": "An idempotent, drift-aware, fail-closed reconcile engine that mirrors spec-kit specs into Jira (Epic per repo, Story per spec, Subtask per phase).", "author": "Ash Brener", - "version": "0.1.0", - "download_url": "https://github.com/ashbrener/spec-kit-jira-sync/archive/refs/tags/v0.1.0.zip", + "version": "0.2.0", + "download_url": "https://github.com/ashbrener/spec-kit-jira-sync/archive/refs/tags/v0.2.0.tar.gz", "repository": "https://github.com/ashbrener/spec-kit-jira-sync", "homepage": "https://github.com/ashbrener/spec-kit-jira-sync", "documentation": "https://github.com/ashbrener/spec-kit-jira-sync/blob/main/README.md",