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 @@ -250,6 +250,7 @@ The following community-contributed extensions are available in [`catalog.commun
| Staff Review Extension | Staff-engineer-level code review that validates implementation against spec, checks security, performance, and test coverage | `code` | Read-only | [spec-kit-staff-review](https://github.com/arunt14/spec-kit-staff-review) |
| Status Report | Project status, feature progress, and next-action recommendations for spec-driven workflows | `visibility` | Read-only | [Open-Agent-Tools/spec-kit-status](https://github.com/Open-Agent-Tools/spec-kit-status) |
| Superpowers Bridge | Orchestrates obra/superpowers skills within the spec-kit SDD workflow across the full lifecycle (clarification, TDD, review, verification, critique, debugging, branch completion) | `process` | Read+Write | [superpowers-bridge](https://github.com/RbBtSn0w/spec-kit-extensions/tree/main/superpowers-bridge) |
| TEKIMAX Secure SDD | Security-first extension — threat modeling (STRIDE), red teaming, AI guardrails, data contracts, model governance, polyglot inline-content scan, dependency CVE scan (Gate G), tamper-evident hash-chain audit logs | `process` | Read+Write | [speckit-security](https://github.com/TEKIMAX/speckit-security) |
| TinySpec | Lightweight single-file workflow for small tasks — skip the heavy multi-step SDD process | `process` | Read+Write | [spec-kit-tinyspec](https://github.com/Quratulain-bilal/spec-kit-tinyspec) |
| V-Model Extension Pack | Enforces V-Model paired generation of development specs and test specs with full traceability | `docs` | Read+Write | [spec-kit-v-model](https://github.com/leocamello/spec-kit-v-model) |
| Verify Extension | Post-implementation quality gate that validates implemented code against specification artifacts | `code` | Read-only | [spec-kit-verify](https://github.com/ismaelJimenez/spec-kit-verify) |
Expand Down
36 changes: 35 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-04-16T18:00:00Z",
"updated_at": "2026-04-16T18:40:00Z",
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
"extensions": {
"aide": {
Expand Down Expand Up @@ -1963,6 +1963,40 @@
"created_at": "2026-03-02T00:00:00Z",
"updated_at": "2026-03-02T00:00:00Z"
},
"tekimax-security": {
"name": "TEKIMAX Secure SDD",
"id": "tekimax-security",
"description": "Security-first extension for Spec Kit — threat modeling (STRIDE), red teaming, AI guardrails, data contracts, model governance, polyglot inline-content scan, dependency CVE scan (Gate G via osv-scanner / pnpm / npm / yarn), and project-root-confined scripts with tamper-evident hash-chain audit logs.",
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The catalog schema/publishing guide requires description to be brief (<200 chars). This new entry’s description is far longer and likely to violate the documented schema; please shorten it to a concise summary and move detail to README/docs.

Suggested change
"description": "Security-first extension for Spec Kit threat modeling (STRIDE), red teaming, AI guardrails, data contracts, model governance, polyglot inline-content scan, dependency CVE scan (Gate G via osv-scanner / pnpm / npm / yarn), and project-root-confined scripts with tamper-evident hash-chain audit logs.",
"description": "Security-first Spec Kit extension for threat modeling, AI guardrails, compliance, and secure development workflows.",

Copilot uses AI. Check for mistakes.
"author": "Christian Kaman (TEKIMAX)",
"version": "0.3.1",
"license": "Apache-2.0",
"homepage": "https://speckit.tekimax.com",
"repository": "https://github.com/TEKIMAX/speckit-security",
"documentation": "https://speckit.tekimax.com",
"changelog": "https://github.com/TEKIMAX/speckit-security/blob/main/CHANGELOG.md",
"download_url": "https://github.com/TEKIMAX/speckit-security/archive/refs/tags/v0.3.1.zip",
"requires": {
"speckit_version": ">=0.1.0"
},
"provides": {
"commands": 9,
"hooks": 5
},
"tags": [
"security",
"threat-modeling",
"red-team",
"guardrails",
"ai-safety",
"compliance",
"tekimax"
],
"verified": false,
"downloads": 0,
"stars": 0,
"created_at": "2026-04-16T00:00:00Z",
"updated_at": "2026-04-16T00:00:00Z"
Comment on lines +1997 to +1998
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

created_at/updated_at for a newly published extension are expected to use the current timestamp (per the Extension Publishing Guide). These are set to midnight (...T00:00:00Z) rather than the actual publish time; please update them to the current time (and keep them equal on first publish).

Suggested change
"created_at": "2026-04-16T00:00:00Z",
"updated_at": "2026-04-16T00:00:00Z"
"created_at": "2026-04-16T18:40:00Z",
"updated_at": "2026-04-16T18:40:00Z"

Copilot uses AI. Check for mistakes.
},
"tinyspec": {
"name": "TinySpec",
"id": "tinyspec",
Expand Down