원클릭으로
release
Use when releasing a version, bumping project versions, or pushing release tags.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when releasing a version, bumping project versions, or pushing release tags.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when adding, integrating, hardening, completing, testing, or releasing an OpenBiliClaw platform/source adapter, including anonymous APIs, optional credentials, browser-extension identity or login sources, source-auth/status contracts, discover branches, guided init, config pages, recommendation cards, CLI smoke commands, and real end-to-end validation.
Drive a real serve-api process against isolated project roots to verify backend/web changes end-to-end
Use when authoring a spec or implementation plan, or planning multi-task work.
Search for videos on Bilibili using keyword queries generated from user interests.
Use OpenBiliClaw's adapter CLI to sync account signals, read profile summaries, fetch recommendations, submit feedback, and inspect runtime status.
Browse Bilibili pages using agent-browser for visual exploration and DOM interaction.
| name | release |
| description | Use when releasing a version, bumping project versions, or pushing release tags. |
Follow all six steps in order. Stop when any gate fails; never publish a partially verified release.
Require a clean worktree on main, pull the latest commit, and run the full test suite:
git status --short
git branch --show-current
git pull --ff-only
.venv/bin/python -m pytest -q
Do not continue until git status --short is empty and the branch is main.
Use the repository tool as the only writer for mechanical version fields:
.venv/bin/python scripts/release.py --bump X.Y.Z
When the extension version changes, include --extension X.Y.Z; the flag may also be used
alone for an extension-only release. Never hand-edit mechanical version fields. The changelog
heading and README callout content in the next steps are deliberate hand edits.
Hand-edit the top of docs/changelog.md with ## vX.Y.Z: theme (YYYY-MM-DD) and the release's
verified changes. The final scripts/release.py --check warns if this heading is missing.
Hand-edit the 📌 callouts under the recent-updates sections. Follow CLAUDE.md rule 10; the three hard limits are:
README.md and README_EN.md in lockstep with the same items and order.Then verify every mechanical field and both user-facing version headers:
.venv/bin/python scripts/release.py --check
Review the release-only diff, stage only those files, and commit:
git commit -m "chore: release X.Y.Z" -- <release-paths>
Create the aggregate openbiliclaw-vX.Y.Z tag and the applicable backend-vX.Y.Z,
extension-vX.Y.Z, and desktop-vX.Y.Z channel tags. Push one tag per git push
invocation. A four-tag push previously emitted no GitHub events, leaving all four release
workflows silently dead; never combine tag refspecs in one push.
git push origin openbiliclaw-vX.Y.Z
git push origin backend-vX.Y.Z
# Push each other applicable channel tag in its own invocation.
Run gh run list --limit 10 and confirm that each pushed tag triggered exactly one run of its
corresponding release workflow. Inspect failures before retrying or pushing another tag. After
the container workflow succeeds, confirm the GHCR package is public; new packages may require
their visibility to be changed to public manually.