一键导入
ship
Run pre-deploy checks, determine version bump, and execute release. Use when ready to cut a release.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Run pre-deploy checks, determine version bump, and execute release. Use when ready to cut a release.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Drive the live Acolyte chat TUI through a real multi-turn session to catch behavior and transcript regressions. Use when verifying a change against the running app or reproducing a chat bug.
Guide for working on the Acolyte codebase. Use when building features, fixing bugs, or extending Acolyte itself.
Run benchmarks and update docs/benchmarks.md. Use before releases or when comparing against other projects.
| name | ship |
| description | Run pre-deploy checks, determine version bump, and execute release. Use when ready to cut a release. |
Run a structured pre-deploy checklist, determine the version bump, and execute the release.
Check the entire project. This is a release gate, not a diff review.
scripts/release.shCHANGELOG.mddocs/features.mdmain branchbun run verify passes (lint, typecheck, tests)sk-, ANTHROPIC_API_KEY, OPENAI_API_KEY, Bearer, private keys in non-.env tracked fileshandoff before the release gate so checks start from a compact project summary.TODO or FIXME in non-test source filesdocs/features.md covers high-signal capabilities introduced by commits since last tag — only user-visible features, not internal improvements (cross-reference feat commit subjects)/benchmark skill to refresh docs/benchmarks.mdgit describe --tags --abbrev=0 --match 'v[0-9]*' to find the previous taggit log <prev_tag>..HEAD --oneline --no-merges to list commitsmajor — any commit contains BREAKING CHANGE in the body or !: in the subjectminor — any commit subject matches feat( or feat:patch — everything elsebash scripts/release.sh <level>. This runs verify, generates the changelog entry, and creates the commit and tag.<level> — reason)release.sh if any precondition fails.release.sh.