com um clique
release
Bump version, generate changelog draft, tag, and deploy a release.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Bump version, generate changelog draft, tag, and deploy a release.
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional 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}."