quality-release

quality-release is a skill for Claude Code, Codex from d4rkNinja/arcforge. It costs 103 tokens per session (3,713 once invoked), scanned A, original, MIT.

A quality and release-readiness guide for checking whether software is safe to ship, including its failure, load, concurrency, and resource behaviour.

In plain words
What is it for?
Planning verification, testing failures and concurrent use, measuring performance and scalability, reviewing release checklists, and documenting exceptions.
Why use it?
It replaces unsupported claims that something is ready with tests, measurements, and checks tied to the exact code or system being released.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/d4rkninja/arcforge/quality-release
Any agent
npx skills add d4rkNinja/arcforge --skill quality-release
Clone the repo
git clone --depth 1 https://github.com/d4rkNinja/arcforge

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for quality-release

README.md
[![agentmods](https://agentmods.dev/badge/skills/d4rkninja/arcforge/quality-release.svg)](https://agentmods.dev/skills/d4rkninja/arcforge/quality-release)
Your own site
<a href="https://agentmods.dev/skills/d4rkninja/arcforge/quality-release"><img src="https://agentmods.dev/badge/skills/d4rkninja/arcforge/quality-release.svg" alt="Measured on agentmods" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,713 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00103 $0.03713
Opus 5 $0.00051 $0.01857
Sonnet 5 $0.00021 $0.00743
Haiku 4.5 $0.00010 $0.00371

Measured today against content hash 2869b7e40205, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

quality-release scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/quality-release/SKILL.md · 198 lines

How it starts

The opening of the file, as written. The whole thing — 198 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Think Through Quality & Release Readiness

Overview

Production guidance for verification. Each reference paper captures the gap between "tests pass" and "production-safe": races that only appear under real isolation, failures that only appear when dependencies die, load targets with no workload model, and releases that never walked the cross-cutting checklist.

Core principle: Evidence, not assertion. Every quality or performance claim needs a test, measurement, or drill that would have failed if the claim were false — including the failure paths users and operators will actually hit. A plan is not executed evidence, and a waiver does not change what the evidence says.

Domain Law

NO 'DONE' CLAIM WITHOUT:
1. the minimum required primary paper(s) for the verification type selected from the context table;
2. a named workload, failure, or interleaving the tests must force;
3. the pre-release checklist walked for the changed surface;
4. every claim assigned an evidence state and bound to the exact subject tested;
5. every touched sibling-skill boundary and exception closed under the
   Release Decision Gate below — never silently waived.

When to Use

Use this skill when:

  • planning tests for a backend feature and choosing the test pyramid shape;
  • building test data that respects constraints, tenancy, and privacy;
  • writing concurrency tests that force real interleavings with barriers;
  • designing failure tests: crashes between steps, dependency outages, malformed inputs;
  • defining load/performance tests with realistic targets, sustained soak, and burst;
  • investigating or preventing performance regressions;
  • validating scaling behavior and limit assumptions;
  • checking resource management: pools, file descriptors, memory, cleanup;
  • evaluating compression trade-offs for payloads and storage;
  • walking the cross-cutting pre-release checklist;
  • reviewing a release exception, waiver, risk acceptance, or "ship anyway" request;
  • reviewing whether a change is actually production-ready.

Read the full file on GitHub · 198 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed · +5 lines · +17 tokens per session 2869b7e40205
  2. 5d ago First seen · 193 lines · 86 tokens per session scan A 1c2e4c9f1931

Subscribe to this mod's changes

quality-release is a skill published in the GitHub repository d4rkNinja/arcforge (16 stars, last pushed yesterday), licensed MIT. It adds 103 tokens to every session and 3,713 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

release

Guide through the Cortex TMS release process — version bump, changelog, sync, tag, publish. Every step requires user approval.

cortex-tms/cortex-tms · 29 tokens

generate-release-changelog

Generate a polished changelog for the latest Git tag. Classifies commits by impact, adds product and technical perspective, and prints the result directly in chat. Triggers on /generate-release-changelog or requests to generate/draft a changelog for the latest release.

archcore-ai/cli · 58 tokens

git-flow-pr

Executes the full PR-driven development workflow: create an isolated feature branch from the current work, commit all staged changes, rebase cleanly onto the selected base branch (skipping any ancestor commits already merged), push the branch, and open a GitHub pull request linked to a related issue. Includes guidance…

soulcodex/agentic · 103 tokens

write-changelog

Generates a CHANGELOG.md entry for a release by summarizing git commits since the last tag. Groups changes by type: Added, Changed, Fixed, Removed. Follows Keep a Changelog format (https://keepachangelog.com). Invoked when the user asks to update the changelog, write release notes, or prepare a release.

soulcodex/agentic · 73 tokens

release

This skill should be used when the user asks to "release", "create a release", "ship it", "publish a new version", "bump version and release", "cut a release", or mentions releasing to GitHub/npm/PyPI. Orchestrates the full release pipeline from pre-flight checks through GitHub release creation.

Data-Wise/craft · 70 tokens

preflight-check

This skill should be used when the user asks to "pre-flight check", "validate before commit", "validate before PR", "validate before deploy", "is this ready to ship", "check readiness", "run pre-flight", "validate project state", or wants context-aware validation across commit/PR/release/deploy boundaries.…

Data-Wise/craft · 100 tokens