deployment-workflow — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited deployment-workflow (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
When deploying code to staging or production, planning a release, setting up feature flags, or managing rollback strategies. Use for any transition from "code is ready" to "code is live and monitored." Covers the full lifecycle from pre-deploy verification through post-deploy health confirmation.
Core principle: Never deploy blind — every release has a rollback plan, success thresholds, and monitoring before it is considered complete.
| Level | Time | When to use | Scope |
|---|---|---|---|
| Quick | 5-10 min | Hotfix, docs, config | Git clean + tests only |
| Standard | 15-30 min | Feature, refactor | Full pipeline |
| Deep | 30-60 min | Breaking change, infra | Backup + load test + canary |
git status shows no uncommitted changes)npm test / pytest / equivalent)Phase 1 — Build & Bundle:
git tag v[X.Y.Z]Phase 2 — Staging:
Phase 3 — Production (select strategy):
| Strategy | Use when | Process |
|---|---|---|
| Quick | Low risk, fast rollback | Deploy all at once, monitor 5 min |
| Rolling | Medium risk | Replace instances 25% at a time, 2 min between |
| Canary | High risk, new feature | 5% → 25% → 50% → 100%, monitor at each step |
Phase 4 — Monitoring (mandatory for all strategies):
Decision thresholds:
GREEN (proceed): Error rate < 10% above baseline
YELLOW (investigate): Error rate 10-100% above baseline
RED (rollback): Error rate > 2x baseline OR P95 > 3x baselineFeature flag lifecycle (when applicable):
DEPLOY (flag OFF) → ENABLE (team only) → CANARY (5% users) →
GRADUAL (25% → 50% → 75%) → FULL (100%) → CLEANUP (remove flag)| Method | Time | When to use |
|---|---|---|
| Feature flag disable | ~1 min | Flag-guarded changes |
| Git revert + redeploy | ~5 min | Code-only changes |
| Database rollback | ~15 min | Migration-dependent changes |
Before marking a deployment task done:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.