ワンクリックで
release
Bump version, generate changelog draft, tag, and deploy a release.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Bump version, generate changelog draft, tag, and deploy a release.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Create a feature branch, commit changes, push, and open a PR to main.
Check docs/ai/ spec files and ADRs for inconsistencies with the actual codebase. Report only, no modifications.
Check docs/ai/ spec files and ADRs for inconsistencies with the codebase, then fix all discrepancies.
Scan the codebase for security vulnerabilities. Check OWASP top 10, input validation, auth, crypto, and known BACKLOG security items.
Scan the project for refactoring opportunities, then fix them. No behavior/visual changes.
Create a new Architecture Decision Record (ADR) for a proposed feature or design change.
| name | release |
| description | Bump version, generate changelog draft, tag, and deploy a release. |
| allowed-tools | Bash(git *), Bash(gh *), Bash(pnpm check *), Bash(pnpm test *), Bash(node *), Read, Edit, Write, AskUserQuestion |
Bump version, generate a changelog draft, open a release PR, and create a GitHub Release after merge.
/release [patch|minor|major] (default: minor)
git tag --sort=-v:refname | head -10.1.0main branch with clean working treepnpm check and pnpm test must passgit log v{prev}..HEAD --format='%s'CHANGELOG.md doesn't exist, create it with the Keep a Changelog headerversion in package.jsongit checkout -b release/v{version}
git add package.json CHANGELOG.md
git commit -m "chore: release v{version}"
git push -u origin release/v{version}
gh pr create --title "chore: release v{version}" --body "Version bump and changelog for v{version}."