Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Release Check (Pre-Release Verification)

A final quality gate that verifies docs, tests, and security in three checkpoints, then issues a READY or BLOCKED verdict in a written assessment.

Dev & CodingIntermediate3,376479AI score 6/10Last updated: Aug 27, 2026

What it does

  • Runs a pre-release verification checklist right before shipping to production or tagging a version.
  • Splits the review into three independent checkpoints:
    1. Documentation & debt: CHANGELOG, TECH_DEBT, specs, docs
    2. Testing & quality: full test run, code health scan, quality verification
    3. Security & release readiness: security audit, verification, go/no-go
  • Writes the assessment to docs/reviews/release-check-{version}.md and issues a final READY FOR RELEASE or BLOCKED verdict with specific reasons.
  • Delegates the actual inspection to the plugin's Centinela (QA) agent.

Who it's for

  • Developers and tech leads who want a consistent bar before every release
  • Teams that need a documented record behind ship/no-ship decisions
  • Existing users of the agent-triforce plugin suite

Examples

  • /release-check v1.2.0 — verify docs, tests, and security before tagging 1.2.0
  • /release-check v2.0.0 — major release audit, output saved at docs/reviews/release-check-v2.0.0.md with blocking reasons listed
  • Run it as the last gate after all features are implemented and code-reviewed

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/davepoon/buildwithclaude/HEAD/plugins/agent-triforce/skills/release-check/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the plugins/agent-triforce/skills/release-check folder from the GitHub repo davepoon/buildwithclaude into my ~/.claude/skills/release-check/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/davepoon/buildwithclaude.git && mkdir -p ~/.claude/skills && cp -r buildwithclaude/plugins/agent-triforce/skills/release-check ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and prepare the skills folder: mkdir -p ~/.claude/skills
  2. Clone the repository: git clone https://github.com/davepoon/buildwithclaude.git
  3. Copy the skill: cp -r buildwithclaude/plugins/agent-triforce/skills/release-check ~/.claude/skills/
  4. Because the skill delegates to the Centinela (QA) agent, install the whole plugins/agent-triforce plugin if possible.
  5. Restart Claude Code, then run it with a version argument: /release-check v1.0.0
  6. Create a docs/reviews/ folder in your project so the assessment file lands in the expected place.