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
npx -y skills add byerlikaya/claude-starter-kit --skill ci-pipelineAssembled 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)
- Lint / format — style and static analysis
- Build — 0 warnings / 0 errors
- Test — unit + integration, coverage collected
- Quality —
sonarqube-checkquality gate - Security —
dependency-audit+security-scan(where applicable) - 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.