release
Release a new version of adversarial-review (bumps version, tags git, pushes, triggers npm publish)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Release a new version of adversarial-review (bumps version, tags git, pushes, triggers npm publish)
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Skeptical ship/no-ship code review of a git diff or branch, run against any LLM (Anthropic / OpenAI / Gemini API, or a local claude / codex / agy CLI). Use before merging or pushing to catch the expensive failure classes a normal review misses: auth and trust-boundary holes, injection, secrets, data loss, rollback safety, race conditions, schema drift, supply-chain and CI/CD changes, test weakening, and observability gaps. Triggers on "review my diff", "review this git diff", "review this branch", "will this break", "is this safe to ship", "adversarial review", "code review before merge", "review before push", "pre-push review", "CI review gate", "ship or no-ship", "find the strongest reason not to ship".
Skeptical ship/no-ship code review of a git diff or branch, run against any LLM (Anthropic / OpenAI / Gemini API, or a local claude / codex / agy CLI). Use before merging or pushing to catch the expensive failure classes a normal review misses: auth and trust-boundary holes, injection, secrets, data loss, rollback safety, race conditions, schema drift, supply-chain and CI/CD changes, test weakening, and observability gaps. Triggers on "review my diff", "review this git diff", "review this branch", "will this break", "is this safe to ship", "adversarial review", "code review before merge", "review before push", "pre-push review", "CI review gate", "ship or no-ship", "find the strongest reason not to ship".
| name | release |
| description | Release a new version of adversarial-review (bumps version, tags git, pushes, triggers npm publish) |
| license | Apache-2.0 |
| user-invocable | true |
| metadata | {"version":"1.0.0","internal":true} |
Use this command to release a new version of adversarial-review.
Determine the new version. Read the current version from package.json. Apply the requested semver bump (default "minor") to compute the new version number.
Verify preconditions:
git status --porcelain is empty)main branchgit pull --dry-run shows no changes)npm test)Bump version:
"version" field in package.jsonmetadata.version in skills/adversarial-review/SKILL.md frontmatter to match the new versionCommit the version bump:
git commit -am "chore: bump version to X.Y.Z"
Create the version tag: vX.Y.Z
Push commit and tag:
git push origin main
git push origin vX.Y.Z
Confirm completion. Print a summary of:
.github/workflows/publish.yml, triggered on v* tags) will handle the npmjs release automatically.