bump
Check for new releases of ah and cosmic, update dependency pins, and commit changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Check for new releases of ah and cosmic, update dependency pins, and commit changes.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
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.
| 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>"}]
}