adk-expert
Google ADK (Agent Development Kit) orchestration patterns — boundaries, agent composition, and tool seams. Trigger when designing or reviewing multi-agent…
Go / no-go gate before any deployment. Checks failure modes, rollback plan, cost, production bar, and definition of done. Trigger before releasing to any environment that carries real consequences.
$ npx -y skills add jpantsjoha/ai-native-developer-experience --skill release-readiness --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/release-readinessContext preview
The summary Claude sees to decide when to auto-load this skill.
Go / no-go gate before any deployment. Checks failure modes, rollback plan, cost, production bar, and definition of done. Trigger before releasing to any environment that carries real consequences.
name: release-readiness description: Go / no-go gate before any deployment. Checks failure modes, rollback plan, cost, production bar, and definition of done. Trigger before releasing to any environment that carries real consequences.
> **A working demo is not evidence of production readiness. Production readiness is proven through sustained operation, incident handling, cost predictability, and controlled evolution.**
This skill enforces the production bar. It produces a go / no-go verdict with a signed checklist. No checklist = no go.
1. **Validate the definition of done** — confirm that acceptance criteria from the spec are met. "Looks good" is not a criterion. Run the actual validation commands.
2. **Check all quality gates pass**:
3. **Name the failure modes** — at minimum:
4. **Confirm rollback exists and is tested** — a rollback plan that has never been tested is not a rollback plan. If the rollback has not been exercised, flag it.
5. **Estimate cost impact** — LLM calls, storage writes, egress, third-party API calls. Any unbounded cost vector must be capped or accepted explicitly.
6. **Confirm monitoring and alerting** — what fires when this breaks? Who gets the alert? What is the on-call runbook?
7. **Check data boundaries** — does the release touch PII, regulated data, or cross a tenant boundary? If yes, confirm the appropriate controls are in place.
8. **Sign off** — record: who reviewed, what was checked, what was accepted as known risk, and the go/no-go verdict.
| Excuse | Counter | |---|---| | "CI is green, we're good to go" | CI checks known paths. Release readiness checks failure modes CI doesn't cover. | | "We'll monitor it after launch" | The first failure will be invisible. Add monitoring before go-live. | | "Rollback is just redeploy the previous version" | Untested. Run the rollback in staging first. | | "Cost is fine, it's low traffic" | Low traffic + an LLM loop bug = runaway spend. Cap it. |
A team-project AI harness bootstrap that gives humans and agents a shared operating contract from day one, moving AI leverage from an individual “IC superhero” advantage to a repeatable team capability on an equal playing field.
Google ADK (Agent Development Kit) orchestration patterns — boundaries, agent composition, and tool seams. Trigger when designing or reviewing multi-agent…
JP's signature red-team pass — "how would I break this?" Argue against your own approach before proceeding. Trigger on any high-stakes decision, architecture…
Alibaba Cloud expert guardrails — RAM least-privilege, data boundaries, residency (mainland/international split), cost, and official-source validation. Trigger…
AWS expert guardrails — IAM least-privilege, data boundaries, cost controls, residency, and official-source validation. Trigger when designing or reviewing any…
Azure expert guardrails — Entra ID least-privilege, policy-first governance, data boundaries, cost, residency, and official-source validation. Trigger when…
LLM and cloud cost awareness — model tiering, token budgets, right-sizing, and when a cheaper model suffices. Trigger before finalising any architecture that…