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 & CodingIntermediate★ 3,376⑂ 479AI 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:
- Documentation & debt: CHANGELOG, TECH_DEBT, specs, docs
- Testing & quality: full test run, code health scan, quality verification
- Security & release readiness: security audit, verification, go/no-go
- Writes the assessment to
docs/reviews/release-check-{version}.mdand 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 atdocs/reviews/release-check-v2.0.0.mdwith 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal and prepare the skills folder:
mkdir -p ~/.claude/skills - Clone the repository:
git clone https://github.com/davepoon/buildwithclaude.git - Copy the skill:
cp -r buildwithclaude/plugins/agent-triforce/skills/release-check ~/.claude/skills/ - Because the skill delegates to the Centinela (QA) agent, install the whole
plugins/agent-triforceplugin if possible. - Restart Claude Code, then run it with a version argument:
/release-check v1.0.0 - Create a
docs/reviews/folder in your project so the assessment file lands in the expected place.
View source on GitHub ↗License: MIT