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 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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>"}]
}