Skip to content

Commit 80473da

Browse files
committed
Add Cleanup Extension to catalog
**Repository**: https://github.com/dsrednicki/spec-kit-cleanup **Version**: 1.0.0 **License**: MIT **Author**: @dsrednicki ### What it does Post-implementation quality gate that reviews changes and handles issues by severity: | Severity | Action | |----------|--------| | SMALL | Fix immediately (Scout Rule) - debug statements, unused imports | | MEDIUM | Create follow-up tasks in tasks.md | | LARGE | Generate tech-debt-report.md with analysis and options | | CRITICAL | Halt and alert (security issues) | ### Command | Command | Description | |---------|-------------| | `/speckit.cleanup.run` | Review implementation, fix small issues, identify tech debt | | `/speckit.cleanup` | Alias for above | ### Hook - `after_implement` - Prompts to run cleanup after `/speckit.implement` ### Installation (once merged) ```bash specify extension add cleanup ```
1 parent c78f842 commit 80473da

File tree

1 file changed

+34
-2
lines changed

1 file changed

+34
-2
lines changed

extensions/catalog.json

Lines changed: 34 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
11
{
22
"schema_version": "1.0",
3-
"updated_at": "2026-02-03T00:00:00Z",
3+
"updated_at": "2026-02-22T00:00:00Z",
44
"catalog_url": "https://raw.githubusercontent.com/github/spec-kit/main/extensions/catalog.json",
5-
"extensions": {}
5+
"extensions": {
6+
"cleanup": {
7+
"name": "Cleanup Extension",
8+
"id": "cleanup",
9+
"description": "Post-implementation quality gate that reviews changes, fixes small issues (scout rule), creates tasks for medium issues, and generates analysis for large issues.",
10+
"author": "dsrednicki",
11+
"version": "1.0.0",
12+
"download_url": "https://github.com/dsrednicki/spec-kit-cleanup/archive/refs/tags/v1.0.0.zip",
13+
"repository": "https://github.com/dsrednicki/spec-kit-cleanup",
14+
"license": "MIT",
15+
"requires": {
16+
"speckit_version": ">=0.1.0"
17+
},
18+
"provides": {
19+
"commands": 1,
20+
"hooks": 1
21+
},
22+
"tags": [
23+
"quality",
24+
"tech-debt",
25+
"review",
26+
"cleanup",
27+
"scout-rule"
28+
],
29+
"verified": false,
30+
"created_at": "2026-02-22T00:00:00Z",
31+
"updated_at": "2026-02-22T00:00:00Z",
32+
"statistics": {
33+
"downloads": 0,
34+
"stars": 0
35+
}
36+
}
37+
}
638
}

0 commit comments

Comments
 (0)