agentsclimarketplace

Ci cd quality gates

Skill charlieviettq/awesome-agent-skill/.cursor/skills/reliability-ops/ci-cd-quality-gates

Design lightweight CI quality gates—lint, test tiers, security scans, and merge policies. Use when setting up or improving pipelines without tying to one stack only. Triggers: "CI", "quality gate", "pipeline", "GitHub Actions", "pre-merge checks".From its SKILL.md

Install
npx -y skills add charlieviettq/awesome-agent-skill --skill ci-cd-quality-gates

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 24 stars24 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.4 KB, 278 tokens by cl100k_base, as published. Nobody here has run it

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

TierWhenExamples
PR requiredEvery pushLint, unit tests, typecheck
PR optionalLarge reposIntegration, e2e subset
Main/nightlyPost-mergeFull 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

Related

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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.