Skip to content
Development
Skill

/pre-release-verification

Use when a release candidate needs final checks before tagging, publishing, or production deployment.

From plugin
agent-powerups
6113 skills46 agents54 commands
Install
$ npx -y skills add yeaight7/agent-powerups --skill pre-release-verification --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/pre-release-verification

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use when a release candidate needs final checks before tagging, publishing, or production deployment.

SKILL.md

pre-release-verification.SKILL.md
name: pre-release-verification
description: Use when a release candidate needs final checks before tagging, publishing, or production deployment.

Purpose

Block releases until the repository state, CI status, local validation, and publish metadata are known and reproducible.

When to Use

  • Before creating a release tag.
  • Before deploying to production.
  • Before approving a release candidate prepared by another agent.
  • When CI is green but local package or catalog checks still need proof.

Do not use as a substitute for fixing failures. If any gate fails, stop and report the blocker.

Inputs

  • Intended version or deployment identifier
  • Current branch and commit
  • CI status for the release commit
  • Project-specific build, lint, test, and packaging commands

Workflow

1. Confirm the working tree is clean:

git status --short

2. Confirm the release commit and recent history:

git log --oneline --decorate -n 10

3. Confirm CI is green for the exact commit. For GitHub:

gh run list --limit 5
gh run view <run-id> --json conclusion,status,headSha,url

4. Run local validation. Use the project's documented commands, for example:

npm run build
npm test
python scripts/validate-skills.py
python scripts/validate-catalog.py

5. Check for secrets or accidental local files:

git diff --stat
git status --short

6. Report go/no-go with exact evidence.

Output

RELEASE VERIFICATION: go / no-go
Commit: <sha>
CI: <status and URL>
Local checks: <commands and results>
Blockers: <none or list>
Next action: <tag / deploy / stop>

Verification

  • [ ] Working tree was clean or dirty files were reported.
  • [ ] CI status was tied to the exact release commit.
  • [ ] Local validation commands exited 0.
  • [ ] No secrets or accidental local files were included.
  • [ ] Go/no-go recommendation included evidence, not confidence.

Failure Modes

  • Releasing from an uncommitted or untracked local state.
  • Checking CI for a different commit than the release candidate.
  • Treating lint/build success as full test coverage.
  • Continuing after a failed gate because the release is "small".
Read more
Ships withagent-powerups

Curated power-ups for coding agents: skills, slash commands, MCP configs, hooks, AGENTS.md templates, and workflows for serious software engineering. Claude Code, Codex, Antigravity CLI, Cursor and more

Get the whole plugin

Other skills on agent-powerups.