Skip to content

Commit f43b850

Browse files
Quratulain-bilalmnriemCopilot
authored
Add SpecTest extension to community catalog (#2159)
* Add SpecTest extension to community catalog Adds spec-kit-spectest: auto-generate test scaffolds from spec criteria. 4 commands: - /speckit.test.generate — generate framework-native test scaffolds - /speckit.test.coverage — map spec requirements to test coverage - /speckit.test.gaps — find untested requirements with suggestions - /speckit.test.plan — generate structured test plan documents 1 hook: after_implement (gap detection) Bridges the spec-to-test gap in the SDD workflow. * Update extensions/catalog.community.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Fix spectest created_at/updated_at to use current timestamp per Copilot review Set both to 2026-04-10T16:00:00Z instead of midnight. --------- Co-authored-by: Manfred Riem <15701806+mnriem@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent d1b95c2 commit f43b850

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ The following community-contributed extensions are available in [`catalog.commun
230230
| Spec Diagram | Auto-generate Mermaid diagrams of SDD workflow state, feature progress, and task dependencies | `visibility` | Read-only | [spec-kit-diagram-](https://github.com/Quratulain-bilal/spec-kit-diagram-) |
231231
| Spec Refine | Update specs in-place, propagate changes to plan and tasks, and diff impact across artifacts | `process` | Read+Write | [spec-kit-refine](https://github.com/Quratulain-bilal/spec-kit-refine) |
232232
| Spec Sync | Detect and resolve drift between specs and implementation. AI-assisted resolution with human approval | `docs` | Read+Write | [spec-kit-sync](https://github.com/bgervin/spec-kit-sync) |
233+
| SpecTest | Auto-generate test scaffolds from spec criteria, map coverage, and find untested requirements | `code` | Read+Write | [spec-kit-spectest](https://github.com/Quratulain-bilal/spec-kit-spectest) |
233234
| 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) |
234235
| 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) |
235236
| 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) |

extensions/catalog.community.json

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"schema_version": "1.0",
3-
"updated_at": "2026-04-10T12:34:56Z",
3+
"updated_at": "2026-04-10T16:00:00Z",
44
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.community.json",
55
"extensions": {
66
"aide": {
@@ -1486,6 +1486,39 @@
14861486
"created_at": "2026-03-18T00:00:00Z",
14871487
"updated_at": "2026-03-18T00:00:00Z"
14881488
},
1489+
"spectest": {
1490+
"name": "SpecTest",
1491+
"id": "spectest",
1492+
"description": "Auto-generate test scaffolds from spec criteria, map coverage, and find untested requirements.",
1493+
"author": "Quratulain-bilal",
1494+
"version": "1.0.0",
1495+
"download_url": "https://github.com/Quratulain-bilal/spec-kit-spectest/archive/refs/tags/v1.0.0.zip",
1496+
"repository": "https://github.com/Quratulain-bilal/spec-kit-spectest",
1497+
"homepage": "https://github.com/Quratulain-bilal/spec-kit-spectest",
1498+
"documentation": "https://github.com/Quratulain-bilal/spec-kit-spectest/blob/main/README.md",
1499+
"changelog": "https://github.com/Quratulain-bilal/spec-kit-spectest/blob/main/CHANGELOG.md",
1500+
"license": "MIT",
1501+
"requires": {
1502+
"speckit_version": ">=0.4.0"
1503+
},
1504+
"provides": {
1505+
"commands": 4,
1506+
"hooks": 1
1507+
},
1508+
"tags": [
1509+
"testing",
1510+
"test-generation",
1511+
"coverage",
1512+
"quality",
1513+
"automation",
1514+
"traceability"
1515+
],
1516+
"verified": false,
1517+
"downloads": 0,
1518+
"stars": 0,
1519+
"created_at": "2026-04-10T16:00:00Z",
1520+
"updated_at": "2026-04-10T16:00:00Z"
1521+
},
14891522
"staff-review": {
14901523
"name": "Staff Review Extension",
14911524
"id": "staff-review",

0 commit comments

Comments
 (0)