원클릭으로
release
Use when preparing a new crate release, bumping versions, or tagging a release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when preparing a new crate release, bumping versions, or tagging a release
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when the user wants to create a new cryochamber application, set up a scheduled agent task, or scaffold a cryo project with plan.md and cryo.toml
Use when the user wants a screenshot of the cryohub web dashboard for documentation, README, mdbook, or a slide deck. Spawns cryohub on a chamber workspace, drives headless Chrome, and saves a PNG to the requested path.
Use when the user wants visual state machines of the cryochamber daemon — the overall event loop around inbox messages and TODO-triggered wakes, plus per-item lifecycles for a message and for a reminder — rendered as hand-written SVGs
Use when a PR has review comments to address, CI failures to fix, or codecov coverage gaps to resolve
Use after implementing a feature or any code change to verify completeness and correctness before committing
| name | release |
| description | Use when preparing a new crate release, bumping versions, or tagging a release |
Guide for creating a new release of cryochamber.
Compare against the last release tag:
git tag -l 'v0.*' | sort -V # find latest tag
git log <last-tag>..HEAD --oneline # review commits
git diff <last-tag>..HEAD --stat # review scope
Apply semver for 0.x (pre-1.0):
make check
make check runs fmt-check + clippy + test in sequence. All must pass with zero warnings before proceeding.
Also confirm:
git status is cleanmain branch, up to date with originmake release V=x.y.z
This target bumps version in Cargo.toml, runs cargo check, commits as release: vX.Y.Z, tags vX.Y.Z, and pushes main plus tags. CI publishes the crate to crates.io.