Ci cd
🧿 Minimal but effective AI agent skill definitions in 100 lines or less.
npx -y skills add kimtth/agent-skill-100-lines-or-less --skill ci-cdAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 2 stars2 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.
What its author says it does
Copied from the file, not written here
Use when: design or improve a CI/CD pipeline for fast, reliable, automated build-test-deploy.
SKILL.md
1.0 KB, as published. Nobody here has run it
Goal: every change is built, tested, and deployable automatically.
Use for:
- setting up or improving build/test/deploy automation
- making pipelines fast, reliable, and trustworthy
- adding safe, repeatable deployments
Workflow:
- Build and test on every push and pull request.
- Keep the pipeline fast: cache deps, parallelize jobs.
- Fail fast and surface clear, actionable errors.
- Gate merges on green checks and required reviews.
- Deploy from a known-good artifact, not a fresh build.
- Make rollback a one-step, practiced operation.
Pipeline stages:
- lint and type-check
- unit and integration tests
- build a versioned artifact once
- deploy with health checks and easy rollback
Rules:
- a red pipeline blocks merge; keep main always green
- build the artifact once and promote it across stages
- make pipelines deterministic; eliminate flaky tests
- ensure rollback is fast and rehearsed