version-bump
Bump the version across all 3 tracked locations and verify consistency
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Bump the version across all 3 tracked locations and verify consistency
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Incrementally fix build errors with minimal diffs, one error at a time
Dispatch an independent Codex verification job for the current changes
Inspect all changed files, group by logical concern, and guide atomic per-concern commits
Launch parallel deep-dive agents to review completed work for quality, standards, and completeness
Regression-safe cleanup of AI-generated bloat in Lua code. Deletion-first, requires passing tests before starting
Create a GitHub issue for a feature, bug fix, or crash with structured sections
| name | version-bump |
| description | Bump the version across all 3 tracked locations and verify consistency |
| user_invocable | true |
Update the package version in all 3 locations that must stay in sync.
4.4.0)Read current versions from all 3 locations:
version.txt — plain textmuddler_project/mfile — JSON "version" fieldsrc_new/scripts/_groups.yaml — Lua line containing ataxiaVersion = "X.Y.Z"Report current state: show the version found in each file. If they are already out of sync, warn the user before proceeding.
Update all 3 files with the new version:
version.txt: replace entire content with the new version stringmuddler_project/mfile: update the "version" JSON fieldsrc_new/scripts/_groups.yaml: update the ataxiaVersion = "..." value in the inline Lua init scriptVerify: re-read all 3 files and confirm they now match the target version.
Report: list the changes made and suggest next steps (build + commit + push).
mfile is JSON — preserve all other fields (package, title, author)_groups.yaml version is inside an inline Lua script block — match the existing format exactly