ai-output-validation
Validates, parses, and sanitizes AI-generated outputs before they reach end users or downstream systems. Structured output enforcement, schema validation, and…
Automated quality gates from commit to production. Every merge to main is potentially shippable. No manual steps in the deployment path.
$ npx -y skills add DevelopersGlobal/ai-agent-skills --skill ci-cd-pipelines --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/ci-cd-pipelinesContext preview
The summary Claude sees to decide when to auto-load this skill.
Automated quality gates from commit to production. Every merge to main is potentially shippable. No manual steps in the deployment path.
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.
1. All gates must pass before merge is allowed:
2. Gates run in parallel where possible (speed matters). 3. Maximum CI time: 10 minutes. If slower, optimize.
**Verify:** Merging is blocked when any gate fails.
4. Main branch is always deployable. 5. Deployment pipeline:
6. Every step is automated — no manual "click to deploy." 7. Rollback is automated and tested.
**Verify:** A push to main triggers automated deployment with no human intervention required.
8. Incomplete features go behind feature flags — not long-lived branches. 9. Feature flags allow dark launching, A/B testing, and instant rollback without redeployment. 10. Feature flag state is tracked in a dashboard.
**Verify:** New features are behind flags. No feature branches > 2 days old.
11. CI/CD config is in the repo (`.github/workflows/`, `.gitlab-ci.yml`, etc.). 12. Pipeline changes go through code review like any other change. 13. Pipeline config is tested: changes to CI don't break CI.
**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. |
AI agent skills for production grade applications
Validates, parses, and sanitizes AI-generated outputs before they reach end users or downstream systems. Structured output enforcement, schema validation, and…
Design stable, versioned, self-documenting APIs. Easy to use correctly, hard to use incorrectly. Apply Hyrum's Law from day one.
Get layered, context-aware explanations of unfamiliar code. Understand what it does, why it was written that way, and how to work with it safely.
Structured code review focusing on correctness, security, and maintainability. Correctness before style. Every reviewer comment must be actionable.
Load minimum necessary context into agent context windows. Prevents token bloat, reduces cost, and improves focus. Only load what the current task needs.
Systematic root cause analysis for production and development bugs. Hypothesis-driven debugging — never guess-and-check.