一键导入
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 页面并帮你完成安装。
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}."