원클릭으로
release
Complete development workflow: run lint (clippy + fmt), tests, update changelog, commit changes, and create a release.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Complete development workflow: run lint (clippy + fmt), tests, update changelog, commit changes, and create a release.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Implement the fix described in tasks/todo/<slug>.md, run the project's verification loop, and stop without committing. Use when the orchestrator dispatches a task into a fresh worktree and asks you to do the work.
Review the uncommitted fix in this worktree against tasks/todo/<slug>.md, then commit (or stop with a Rejected verdict). Use after /do-task — the orchestrator runs us in the same worktree to verify and commit the change.
Run the full CI pipeline: clippy, fmt, and tests.
Update documentation about current changes in the www/ folder (.md and .slv files).
Review code changes and provide feedback on quality, style, and potential issues.
| name | release |
| description | Complete development workflow: run lint (clippy + fmt), tests, update changelog, commit changes, and create a release. |
cargo test --lib)soli test tests/)./scripts/release.sh (default: minor bump)/release # Run full workflow with minor release
/release patch # Patch release
/release major # Major release
/release --dry-run # Preview without making changes
cargo fmt
cargo clippy -- -D warnings
cargo test --lib
soli test tests/
# Update CHANGELOG.md with unreleased changes
git add -A
git commit -m "chore: release v[new-version]"
git push
./scripts/release.sh <type> # default: minor
Before committing, update CHANGELOG.md:
[Unreleased] section in appropriate categories:
### Features - new functionality### Bug Fixes - bug corrections### Documentation - docs updates### Refactoring - code restructuringExample format:
## [Unreleased]
### Features
* **feature-name:** description ([commit-hash](link))
### Bug Fixes
* **component:** fix description ([commit-hash](link))
main branch