-
Notifications
You must be signed in to change notification settings - Fork 10.7k
[extension] Add Quality Gates (Enforcement Layer) extension to community catalog #3431
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
2c9bf5a
4e8d899
76d3cee
6ef83f2
044e79a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "schema_version": "1.0", | ||
| "updated_at": "2026-07-10T00:00:00Z", | ||
| "updated_at": "2026-07-13T00:00:00Z", | ||
| "catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json", | ||
| "extensions": { | ||
| "aide": { | ||
|
|
@@ -1427,6 +1427,57 @@ | |
| "created_at": "2026-05-06T00:00:00Z", | ||
| "updated_at": "2026-05-06T00:00:00Z" | ||
| }, | ||
| "gates": { | ||
| "name": "Quality Gates (Enforcement Layer)", | ||
| "id": "gates", | ||
| "description": "Deterministic quality enforcement for Spec Kit projects at three boundaries — agent hooks, git pre-commit, CI — with one policy file and provable enforcement (attestations, canaries, verified parity).", | ||
| "author": "schwichtgit", | ||
| "version": "0.1.0", | ||
| "download_url": "https://github.com/schwichtgit/spec-gates/releases/download/v0.1.0/gates-0.1.0.zip", | ||
| "repository": "https://github.com/schwichtgit/spec-gates", | ||
| "homepage": "https://github.com/schwichtgit/spec-gates", | ||
| "documentation": "https://github.com/schwichtgit/spec-gates/blob/main/docs/how-it-works.md", | ||
| "license": "MIT", | ||
| "category": "process", | ||
| "effect": "read-write", | ||
| "requires": { | ||
| "speckit_version": ">=0.12.0", | ||
| "tools": [ | ||
| { | ||
| "name": "jq", | ||
| "required": true | ||
| }, | ||
| { | ||
| "name": "git", | ||
| "required": true | ||
| }, | ||
| { | ||
| "name": "node", | ||
| "required": false | ||
| }, | ||
| { | ||
| "name": "shellcheck", | ||
| "required": false | ||
| } | ||
|
Comment on lines
+1450
to
+1461
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in the latest commit. The
Posted on behalf of @mnriem by GitHub Copilot (model: claude-sonnet-4.5, autonomous). |
||
| ] | ||
| }, | ||
| "provides": { | ||
| "commands": 5, | ||
| "hooks": 1 | ||
| }, | ||
| "tags": [ | ||
| "quality", | ||
| "enforcement", | ||
| "hooks", | ||
| "ci", | ||
| "governance" | ||
| ], | ||
| "verified": false, | ||
| "downloads": 0, | ||
| "stars": 0, | ||
| "created_at": "2026-07-09T00:00:00Z", | ||
| "updated_at": "2026-07-13T00:00:00Z" | ||
| }, | ||
| "github-issues": { | ||
| "name": "GitHub Issues Integration 1", | ||
| "id": "github-issues", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed in 2c9bf5a's follow-up commit. The catalog file has been restored to match the base branch exactly, with the only diff being the
gatesentry insertion (betweenfx-to-dotnetandgithub-issues) and the top-levelupdated_atupdate. All unrelated reordering and reformatting of existing entries (aide,checkpoint,critique,threatmodel) and inlinerequires.toolsobjects has been reverted.Posted on behalf of @mnriem by GitHub Copilot (model: claude-sonnet-4.5, autonomous).