ci-cd-quality-gates

ci-cd-quality-gates is a skill for Claude Code from charlieviettq/awesome-agent-skill. It costs 39 tokens per session (332 once invoked), scanned A, original, MIT.

A guide for setting up CI/CD quality checks, where automated software checks run during development and delivery. It covers linting, tests, security scans, builds, API contract checks, and merge rules.

In plain words
What is it for?
Use it to design required and optional checks for pull requests, post-merge builds, nightly jobs, protected branches, and emergency bypasses.
Why use it?
It helps teams catch style problems, broken code, security issues, and API changes before they reach the main codebase. It also helps keep checks fast for everyday changes.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: built for gstack.

Good fit Use it to design required and optional checks for pull requests, post-merge builds, nightly jobs, protected branches, and emergency bypasses.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates
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.

Any agent
npx skills add charlieviettq/awesome-agent-skill --skill ci-cd-quality-gates
Clone the repo
git clone --depth 1 https://github.com/charlieviettq/awesome-agent-skill

Made for: Claude Code.

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 ci-cd-quality-gates

README.md
[![agentmods](https://agentmods.dev/badge/skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates/github.svg)](https://agentmods.dev/skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates)
Your own site
<a href="https://agentmods.dev/skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates"><img src="https://agentmods.dev/badge/skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for ci-cd-quality-gates

Your own site · 80×15
<a href="https://agentmods.dev/skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates"><img src="https://agentmods.dev/badge/skills/charlieviettq/awesome-agent-skill/ci-cd-quality-gates.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 332 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00039 $0.00332
Opus 5 $0.00019 $0.00166
Sonnet 5 $0.00008 $0.00066
Haiku 4.5 $0.00004 $0.00033

Measured 8d ago against content hash b46eecb2471c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

ci-cd-quality-gates 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 8d ago.

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.

.claude/skills/ci-cd-quality-gates/SKILL.md · 46 lines

What it actually says

CI/CD quality gates

Principles

  • Fast feedback on every PR; expensive jobs scheduled or nightly
  • Fail closed on security and contract breaks
  • Same commands locally and in CI

Tiered gates

Tier When Examples
PR required Every push Lint, unit tests, typecheck
PR optional Large repos Integration, e2e subset
Main/nightly Post-merge Full e2e, perf budget, dependency audit

Gate design

  1. Lint/format — consistent style, catch syntax issues
  2. Unit tests — required; flaky tests fixed or quarantined
  3. Build — artifact or package builds for deployable repos
  4. Security — secret scan, dependency audit (fail on critical)
  5. Contract — OpenAPI/schema diff when APIs change

Merge policy

  • Required checks green before merge
  • No force-push to protected default branch without policy
  • Document bypass process for emergencies

Anti-patterns

  • 30+ minute PR feedback loops
  • Different test command in CI vs README
  • Ignored flaky tests accumulating

verify-before-done, gstack/ship, test-failure-triage, api-security-testing

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. 8d ago First seen · 46 lines · 39 tokens per session scan A b46eecb2471c

Subscribe to this mod's changes

ci-cd-quality-gates is a skill published in the GitHub repository charlieviettq/awesome-agent-skill (25 stars, last pushed 1mo ago), licensed MIT. It adds 39 tokens to every session and 332 once invoked, about $0.0002 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-09-03.

Related

Other skills, from other repositories

mk:verify

Unified verification: build→lint→test→type-check→coverage. Use for 'is everything green', 'run all checks', 'verify build'. Auto-called by mk:cook. NOT for lint/format only (see mk:lint-and-validate); NOT for test-to-requirement coverage mapping (see mk:nyquist).

ngocsangyem/MeowKit · 72 tokens

github-actions-gen

A guide for creating or updating GitHub Actions workflows, which are automated jobs that test, build, release, or deploy code. It first examines the real project before choosing commands, runtimes, caches, and permissions.

laolaoshiren/claude-code-skills-zh · 57 tokens

api-tester

A tool for creating and checking API tests from the real API contract and implementation. An API is the agreed way that software sends requests and receives responses.

laolaoshiren/claude-code-skills-zh · 86 tokens

test-generator

A test-writing helper that creates unit or integration tests from the code's actual behavior and contracts. Unit tests check small pieces of code, while integration tests check how real components work together.

laolaoshiren/claude-code-skills-zh · 79 tokens

lab:autoresearch

Self-improving loop for plugin skills. Reads program.md, proposes one mutation per iteration, evaluates against deterministic scorer, keeps improvements via git, reverts failures. Targets weakest skill+dimension. Use with /loop for overnight runs.

oliver-kriska/claude-elixir-phoenix · 52 tokens

verify

Verify Elixir/Phoenix changes — compile, format, and test in one loop. Use after implementation, before PRs, or after fixing bugs.

oliver-kriska/claude-elixir-phoenix · 33 tokens