一键导入
ci-cd-pipelines
Automated quality gates from commit to production. Every merge to main is potentially shippable. No manual steps in the deployment path.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Automated quality gates from commit to production. Every merge to main is potentially shippable. No manual steps in the deployment path.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Document decisions, not just implementations. ADRs for architectural choices, inline docs for non-obvious code, and runbooks for operational knowledge.
Graceful degradation and meaningful error messages. Errors are first-class citizens, not afterthoughts. Every error path is designed, not discovered.
Test real system boundaries, not mocks of mocks. Integration tests verify that components work together, not that they work in isolation.
Converts unstructured meeting notes into structured, assigned, time-bounded action items. Never leave a meeting without knowing who does what by when.
Safe, behavior-preserving code transformation backed by tests. Refactor with evidence, not instinct.
Distill complex topics into layered, actionable summaries. Start with the key insight, layer in detail, end with recommended next action.
| name | ci-cd-pipelines |
| description | Automated quality gates from commit to production. Every merge to main is potentially shippable. No manual steps in the deployment path. |
| category | ship |
| applies-to | ["claude","gemini","cursor","copilot","any"] |
| version | 1.0.0 |
CI/CD is the automation layer that enforces quality gates consistently, without relying on human memory or discipline. When CI is green, you know the code is tested, linted, and deployable. When it's red, nothing ships.
Verify: Merging is blocked when any gate fails.
Verify: A push to main triggers automated deployment with no human intervention required.
Verify: New features are behind flags. No feature branches > 2 days old.
.github/workflows/, .gitlab-ci.yml, etc.).Verify: CI config is in the repo and reviewed.
| Excuse | Rebuttal |
|---|---|
| "It's a small change, CI is optional" | Every "small change" that skipped CI is in the origin story of a major incident. |
| "Manual deployment gives us control" | Manual steps introduce human error. Automation gives you control. |
| "CI is too slow" | Optimize it. Don't skip it. |