From c96917beaa927978088080d4317a446495cd5942 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 17:04:45 +0000 Subject: [PATCH 1/2] Add Analytics extension to community catalog Add analytics extension submitted by @Huljo to: - extensions/catalog.community.json (alphabetical order) - docs/community/extensions.md community extensions table Closes #3288 Assisted-by: GitHub Copilot (model: claude-sonnet-4.6, autonomous) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- docs/community/extensions.md | 1 + extensions/catalog.community.json | 36 ++++++++++++++++++++++++++++++- 2 files changed, 36 insertions(+), 1 deletion(-) diff --git a/docs/community/extensions.md b/docs/community/extensions.md index 1e938b2bc6..0da3b3db60 100644 --- a/docs/community/extensions.md +++ b/docs/community/extensions.md @@ -28,6 +28,7 @@ The following community-contributed extensions are available in [`catalog.commun | Agent Assign | Assign specialized Claude Code agents to spec-kit tasks for targeted execution | `process` | Read+Write | [spec-kit-agent-assign](https://github.com/xymelon/spec-kit-agent-assign) | | Agent Governance | Generate agent-platform repository governance files from Spec Kit metadata | `process` | Read+Write | [spec-kit-agent-governance](https://github.com/bigsmartben/spec-kit-agent-governance) | | AI-Driven Engineering (AIDE) | A structured 7-step workflow for building new projects from scratch with AI assistants — from vision through implementation | `process` | Read+Write | [aide](https://github.com/mnriem/spec-kit-extensions/tree/main/aide) | +| Analytics | Measure what your AI builds, and how much time it saves you | `visibility` | Read+Write | [spec-kit-analytics](https://github.com/Fyloss/spec-kit-analytics) | | API Evolve | Managed API contract evolution — breaking-change detection, semver enforcement, deprecation orchestration, and lifecycle gates across REST, GraphQL, and gRPC | `process` | Read+Write | [spec-kit-api-evolve](https://github.com/Quratulain-bilal/spec-kit-api-evolve) | | Architect Impact Previewer | Predicts architectural impact, complexity, and risks of proposed changes before implementation. | `visibility` | Read-only | [spec-kit-architect-preview](https://github.com/UmmeHabiba1312/spec-kit-architect-preview) | | Architecture Guard | Framework-agnostic architecture review extension for validating implementation against governance and architecture constitutions, detecting architectural drift, and generating non-blocking refactor tasks | `process` | Read+Write | [spec-kit-architecture-guard](https://github.com/DyanGalih/spec-kit-architecture-guard) | diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index e8ff96ca13..5ebab6a675 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -1,6 +1,6 @@ { "schema_version": "1.0", - "updated_at": "2026-06-30T00:00:00Z", + "updated_at": "2026-07-01T00:00:00Z", "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", "extensions": { "aide": { @@ -145,6 +145,40 @@ "created_at": "2026-05-04T00:00:00Z", "updated_at": "2026-05-04T00:00:00Z" }, + "analytics": { + "name": "Analytics", + "id": "analytics", + "description": "Measure what your AI builds, and how much time it saves you", + "author": "Fyloss", + "version": "0.1.0", + "download_url": "https://github.com/Fyloss/spec-kit-analytics/archive/refs/tags/v0.1.0.zip", + "repository": "https://github.com/Fyloss/spec-kit-analytics", + "homepage": "https://github.com/Fyloss/spec-kit-analytics", + "documentation": "https://github.com/Fyloss/spec-kit-analytics/tree/main/doc", + "changelog": "", + "license": "MIT", + "category": "visibility", + "effect": "read-write", + "requires": { + "speckit_version": ">=0.10.0" + }, + "provides": { + "commands": 2, + "hooks": 16 + }, + "tags": [ + "analytics", + "productivity", + "metrics", + "benchmarking", + "tracking" + ], + "verified": false, + "downloads": 0, + "stars": 0, + "created_at": "2026-07-01T00:00:00Z", + "updated_at": "2026-07-01T00:00:00Z" + }, "api-evolve": { "name": "API Evolve", "id": "api-evolve", From 574de82f7a60850dfab4cd471bb245e553a8d964 Mon Sep 17 00:00:00 2001 From: Manfred Riem <15701806+mnriem@users.noreply.github.com> Date: Wed, 1 Jul 2026 15:59:40 -0500 Subject: [PATCH 2/2] Fix empty changelog field for analytics extension Set the analytics extension changelog to the GitHub releases page instead of an empty string, which the catalog treats as a URI when present and can fail schema validation and downstream tooling. Assisted-by: GitHub Copilot (model: Claude Opus 4.8, autonomous) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- extensions/catalog.community.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/catalog.community.json b/extensions/catalog.community.json index 5ebab6a675..81ba3ac2b5 100644 --- a/extensions/catalog.community.json +++ b/extensions/catalog.community.json @@ -155,7 +155,7 @@ "repository": "https://github.com/Fyloss/spec-kit-analytics", "homepage": "https://github.com/Fyloss/spec-kit-analytics", "documentation": "https://github.com/Fyloss/spec-kit-analytics/tree/main/doc", - "changelog": "", + "changelog": "https://github.com/Fyloss/spec-kit-analytics/releases", "license": "MIT", "category": "visibility", "effect": "read-write",