bump
Check for new releases of ah and cosmic, update dependency pins, and commit changes.
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
Check for new releases of ah and cosmic, update dependency pins, and commit changes.
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.
Analyze workflow runs and produce a daily reflection.
Execute a work plan. Make changes, run validation, commit.
Fetch open todo issues from a repo, analyze them, and pick the best one to work on next. Prefers PRs with review feedback over new issues.
Review open issues and close obsolete, resolved, or duplicate ones. Label underspecified issues. Split oversized issues.
Research a codebase and write a plan for a work item.
Review work execution against the plan. Validate changes, check for issues, render verdict.
Based on SOC occupation classification
| name | bump |
| description | Check for new releases of ah and cosmic, update dependency pins, and commit changes. |
You are checking for new releases of dependencies and updating their version pins.
WORK_REPO is set to whilp/working.o/repo/.get_latest_release, update_dep, bash.| dep | repo | asset name | file |
|---|---|---|---|
| ah | whilp/ah | ah | deps/ah.mk |
| cosmic | whilp/cosmic | cosmic-lua | deps/cosmic.mk |
o/repo/deps/<dep>.mk to get the current URL and SHA.
b. Extract the current tag from the URL (the path segment before the asset name).
c. Run get_latest_release with the upstream repo and asset name.
d. Parse the returned tag=<tag> url=<url> string.
e. If the latest tag matches the current tag, skip this dependency.
f. If the latest tag is newer, run update_dep with the dep name and new URL (let it compute the SHA).deps/*.mk files: git -C o/repo add deps/ah.mk deps/cosmic.mk
b. Commit: git -C o/repo commit -m "bump: update dependencies"Write o/bump/bump.json:
{
"updated": [{"dep": "<name>", "old_tag": "<tag>", "new_tag": "<tag>", "url": "<url>"}],
"skipped": [{"dep": "<name>", "tag": "<tag>"}]
}