一键导入
rollout
Design a phased AI feature rollout — shadow → canary → limited GA → full GA with eval gates and rollback triggers
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Design a phased AI feature rollout — shadow → canary → limited GA → full GA with eval gates and rollback triggers
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Audit a Google ADK tool file against the five known gotchas (DI params, thin wrappers, _j helper, async-wrap blocking calls, httpx context manager) before they bite in production
After creating an ADR, run the cross-referencing checklist — update README Artifacts table, add Related Decisions section to source proposal, cross-link sibling ADRs to each other
Mid-task durability — dump current state and a next-step file before context fills, so the next session resumes without re-deriving where you were
Generate and verify a pre-demo checklist for an ADK/agent project — env vars, GCP auth, embedding swap, ngrok/Slack wiring, dry-run, tests, real-vs-synthetic data
Scan a project's docs (README, CLAUDE.md, ADRs, runbooks) for inconsistent project naming, scope, or framing — catches the "README says retail, CLAUDE.md still says Kroger" class of bug
Refresh a project's status — derive current state from code/tests/git, regenerate the project's status memory entry and (if requested) a status section in the README
| name | rollout |
| description | Design a phased AI feature rollout — shadow → canary → limited GA → full GA with eval gates and rollback triggers |
User runs /rollout followed by a feature description, or runs it alone.
| Phase | Traffic | Purpose | Exit Criteria |
|---|---|---|---|
| Shadow mode | 0% (parallel, no user impact) | Validate output quality vs. baseline without risk | Eval score ≥ threshold, no HIGH severity findings |
| Internal / dogfood | Internal users only | Real usage patterns, low blast radius | Success metrics stable over N days |
| Canary | 1–5% of target population | Catch production-specific issues | Error rate, latency, and quality metrics within bounds |
| Limited GA | 20–50% | Scale validation, cost model validation | Cost per request within budget, no anomalies |
| Full GA | 100% | Complete rollout | Sustained metrics, runbook validated |
Feature: [description]
Target Population: [description]
Risk Tier: [LOW / MED / HIGH]
Rollout Owner: [team]
Approver (phase transitions): [name / role]
| Item | Required For | Status |
|---|---|---|
Eval framework defined (/eval-design) | All tiers | |
Model card complete (/model-card) | MED + HIGH | |
PII scan complete (/pii-scan) | All tiers | |
Runbook drafted (/runbook) | MED + HIGH | |
| Observability stack wired (traces, logs, metrics) | All tiers | |
| Rollback procedure tested | All tiers | |
| Feature flag / traffic split mechanism ready | All tiers |
Decisions that should be captured (traffic split mechanism, feature flag approach, rollback strategy).