agentsclimarketplace

Ci pipeline

Skill byerlikaya/claude-starter-kit/plugin/skills/ci-pipeline

CI pipeline discipline: lint→build→test→quality→security, fail-fast, deterministic build, secret handling, PR gates. Trigger phrases: "ci", "pipeline", "github actions", "build pipeline", "pr gate", "workflow"From its SKILL.md

Install
npx -y skills add byerlikaya/claude-starter-kit --skill ci-pipeline

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

  • 22 stars22 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.1 KB, 218 tokens by cl100k_base, as published. Nobody here has run it

CI Pipeline

Stages (fail-fast — stop if it breaks early)

  1. Lint / format — style and static analysis
  2. Build — 0 warnings / 0 errors
  3. Test — unit + integration, coverage collected
  4. Qualitysonarqube-check quality gate
  5. Securitydependency-audit + security-scan (where applicable)
  6. Artifact / packaging — (deployment is separate, vps-deploy)

Principles

  • Deterministic: dependencies pinned, cache keyed correctly; no "it worked on my machine".
  • Secret management: CI secret store; NO plaintext secrets in the repo/logs (overlaps with trace scan).
  • PR gate: quality gate + tests must pass; a red build is not merged.
  • Branch protection: direct push to main is disabled; PR + review required.

DoD

  • All stages green; PR gates enforced; no secret leakage; build reproducible.

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.