Skip to content

Commit bb36d07

Browse files
committed
Fix alphabetical ordering of time-machine entry
Move time-machine before tinyspec in both catalog JSON (by ID) and docs table (by name), since time < tiny alphabetically.
1 parent 077c9ca commit bb36d07

2 files changed

Lines changed: 38 additions & 38 deletions

File tree

docs/community/extensions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,8 @@ The following community-contributed extensions are available in [`catalog.commun
110110
| 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) |
111111
| 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) |
112112
| Superpowers Bridge (WangX0111) | Bridges spec-kit with obra/superpowers (brainstorming, TDD, subagent, code-review) into a unified, resumable workflow with graceful degradation and session progress tracking | `process` | Read+Write | [superspec](https://github.com/WangX0111/superspec) |
113-
| 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) |
114113
| Time Machine | Retroactively apply the full SDD workflow to existing codebases — analyse, spec, and ship feature-by-feature | `process` | Read+Write | [spec-kit-time-machine](https://github.com/teeyo/spec-kit-time-machine) |
114+
| 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) |
115115
| Token Consumption Analyzer | Captures, analyzes, and compares token consumption across SDD workflows | `visibility` | Read-only | [spec-kit-token-analyzer](https://github.com/coderandhiker/spec-kit-token-analyzer) |
116116
| 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) |
117117
| 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) |

extensions/catalog.community.json

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -2885,6 +2885,43 @@
28852885
"created_at": "2026-03-02T00:00:00Z",
28862886
"updated_at": "2026-03-02T00:00:00Z"
28872887
},
2888+
"time-machine": {
2889+
"name": "Time Machine",
2890+
"id": "time-machine",
2891+
"description": "Retroactively apply the full SDD workflow to existing codebases — analyse, spec, and ship feature-by-feature",
2892+
"author": "te3yo",
2893+
"version": "1.1.0",
2894+
"download_url": "https://github.com/teeyo/spec-kit-time-machine/archive/refs/tags/v1.1.0.zip",
2895+
"repository": "https://github.com/teeyo/spec-kit-time-machine",
2896+
"homepage": "https://github.com/teeyo/spec-kit-time-machine",
2897+
"documentation": "https://github.com/teeyo/spec-kit-time-machine",
2898+
"changelog": "https://github.com/teeyo/spec-kit-time-machine/blob/main/CHANGELOG.md",
2899+
"license": "MIT",
2900+
"requires": {
2901+
"speckit_version": ">=0.1.0",
2902+
"tools": [
2903+
{
2904+
"name": "git",
2905+
"required": true
2906+
}
2907+
]
2908+
},
2909+
"provides": {
2910+
"commands": 3,
2911+
"hooks": 1
2912+
},
2913+
"tags": [
2914+
"brownfield",
2915+
"automation",
2916+
"workflow",
2917+
"process"
2918+
],
2919+
"verified": false,
2920+
"downloads": 0,
2921+
"stars": 0,
2922+
"created_at": "2026-05-15T00:00:00Z",
2923+
"updated_at": "2026-05-15T00:00:00Z"
2924+
},
28882925
"tinyspec": {
28892926
"name": "TinySpec",
28902927
"id": "tinyspec",
@@ -2949,43 +2986,6 @@
29492986
"created_at": "2026-04-25T00:00:00Z",
29502987
"updated_at": "2026-04-25T00:00:00Z"
29512988
},
2952-
"time-machine": {
2953-
"name": "Time Machine",
2954-
"id": "time-machine",
2955-
"description": "Retroactively apply the full SDD workflow to existing codebases — analyse, spec, and ship feature-by-feature",
2956-
"author": "te3yo",
2957-
"version": "1.1.0",
2958-
"download_url": "https://github.com/teeyo/spec-kit-time-machine/archive/refs/tags/v1.1.0.zip",
2959-
"repository": "https://github.com/teeyo/spec-kit-time-machine",
2960-
"homepage": "https://github.com/teeyo/spec-kit-time-machine",
2961-
"documentation": "https://github.com/teeyo/spec-kit-time-machine",
2962-
"changelog": "https://github.com/teeyo/spec-kit-time-machine/blob/main/CHANGELOG.md",
2963-
"license": "MIT",
2964-
"requires": {
2965-
"speckit_version": ">=0.1.0",
2966-
"tools": [
2967-
{
2968-
"name": "git",
2969-
"required": true
2970-
}
2971-
]
2972-
},
2973-
"provides": {
2974-
"commands": 3,
2975-
"hooks": 1
2976-
},
2977-
"tags": [
2978-
"brownfield",
2979-
"automation",
2980-
"workflow",
2981-
"process"
2982-
],
2983-
"verified": false,
2984-
"downloads": 0,
2985-
"stars": 0,
2986-
"created_at": "2026-05-15T00:00:00Z",
2987-
"updated_at": "2026-05-15T00:00:00Z"
2988-
},
29892989
"token-analyzer": {
29902990
"name": "Token Consumption Analyzer",
29912991
"id": "token-analyzer",

0 commit comments

Comments
 (0)