Skip to content

Commit 7e9d470

Browse files
authored
Add Token Budget extension to community catalog (#2712)
* Add Token Budget extension to community catalog Add token-budget extension submitted by @tinesoft to: - extensions/catalog.community.json (alphabetical order) - docs/community/extensions.md community extensions table Closes #2687 * Fix alphabetical order: Token Budget before Token Consumption Analyzer * Fix tools entry: use 'python3' instead of 'python3 + tiktoken'
1 parent e54653e commit 7e9d470

2 files changed

Lines changed: 43 additions & 0 deletions

File tree

docs/community/extensions.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ The following community-contributed extensions are available in [`catalog.commun
116116
| Team Assign | Assign tasks.md items to human engineers, split into subtasks, and generate a per-engineer workboard | `process` | Read+Write | [spec-kit-team-assign](https://github.com/tarunkumarbhati/spec-kit-team-assign) |
117117
| 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) |
118118
| 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) |
119+
| Token Budget | Reduces LLM token consumption in Spec Kit workflows: compact artifacts in-place, scope per-phase reading, suppress prose padding, and report token usage | `process` | Read+Write | [spec-kit-token-budget](https://github.com/tinesoft/spec-kit-token-budget) |
119120
| 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) |
120121
| 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) |
121122
| 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: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3160,6 +3160,48 @@
31603160
"created_at": "2026-05-01T00:00:00Z",
31613161
"updated_at": "2026-05-01T00:00:00Z"
31623162
},
3163+
"token-budget": {
3164+
"name": "Token Budget",
3165+
"id": "token-budget",
3166+
"description": "Reduces LLM token consumption in Spec Kit workflows: compact artifacts in-place, scope per-phase reading, suppress prose padding, and report token usage.",
3167+
"author": "Tine Kondo",
3168+
"version": "1.0.1",
3169+
"download_url": "https://github.com/tinesoft/spec-kit-token-budget/archive/refs/tags/v1.0.1.zip",
3170+
"repository": "https://github.com/tinesoft/spec-kit-token-budget",
3171+
"homepage": "https://github.com/tinesoft/spec-kit-token-budget",
3172+
"documentation": "https://github.com/tinesoft/spec-kit-token-budget/blob/main/README.md",
3173+
"changelog": "https://github.com/tinesoft/spec-kit-token-budget/blob/main/CHANGELOG.md",
3174+
"license": "MIT",
3175+
"requires": {
3176+
"speckit_version": ">=0.1.0",
3177+
"tools": [
3178+
{
3179+
"name": "python3",
3180+
"required": false
3181+
},
3182+
{
3183+
"name": "rtk",
3184+
"required": false
3185+
}
3186+
]
3187+
},
3188+
"provides": {
3189+
"commands": 4,
3190+
"hooks": 6
3191+
},
3192+
"tags": [
3193+
"tokens",
3194+
"budget",
3195+
"context",
3196+
"efficiency",
3197+
"cost-optimization"
3198+
],
3199+
"verified": false,
3200+
"downloads": 0,
3201+
"stars": 0,
3202+
"created_at": "2026-05-26T00:00:00Z",
3203+
"updated_at": "2026-05-26T00:00:00Z"
3204+
},
31633205
"v-model": {
31643206
"name": "V-Model Extension Pack",
31653207
"id": "v-model",

0 commit comments

Comments
 (0)