소스 정보
- 저장소
- whiteguo233/OpenBiliClaw
- 최근 소스 활동
- 2026년 7월 10일 08:43
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3,223
- 포크
- 160
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/whiteguo233/OpenBiliClaw --skill release명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Add, repair, or validate an OpenBiliClaw platform source across fetching, account signals, discovery, and user surfaces. Use for source-specific integration work and its acceptance; exclude unrelated UI, recommendation-algorithm, or release-only work.
Add, repair, or validate an OpenBiliClaw platform source across fetching, account signals, discovery, and user surfaces. Use for source-specific integration work and its acceptance; exclude unrelated UI, recommendation-algorithm, or release-only work.
Use OpenBiliClaw's versioned Agent Bridge CLI to read multi-source recommendations, profile state, dialogue, probes, saved lists, and submit explicit feedback.
SOC 직업 분류 기준
SKILL.md 표시 중
| 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.