AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Shipping

skill-int2t05-engineering-skills-shipping · by int2t05

Use when deploying or launching to production — checklist-driven launch with rollback readiness and launch-day verification. Triggers on "ship", "deploy", "launch", "go live", "上线", "发布", "部署到生产".

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-int2t05-engineering-skills-shipping

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-int2t05-engineering-skills-shipping)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
19d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Shipping? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Shipping and Launch

Ship with confidence: deploy safely, with monitoring in place, a rollback plan ready, and a clear definition of success. Every launch should be reversible, observable, and incremental. Faster is safer — smaller batches and more frequent releases reduce risk, not increase it.

When to use

  • Deploying a feature or significant change to production for the first time.
  • Migrating data or infrastructure.
  • Opening a beta or early access program.
  • Any deployment that carries risk (all of them).

Not for: setting up CI/CD pipelines (use ci-cd); routine commits, branching, or conflict resolution (use git-workflow); rolling back a live failure (use debugging first, then ship the fix).

Steps

1. Complete the pre-launch checklist

Before deploying, every section must be green.

Code quality

  • [ ] All tests pass (unit, integration, e2e)
  • [ ] Build succeeds; lint and type checking pass
  • [ ] Code reviewed and approved
  • [ ] No console.log / debug statements; no pre-launch TODOs left
  • [ ] Error handling covers expected failure modes

Security

  • [ ] No secrets in code or version control
  • [ ] Dependency audit (npm audit, pip-audit, cargo audit, ...) shows no critical/high vulnerabilities
  • [ ] Input validation on all user-facing endpoints
  • [ ] Authn/authz in place; rate limiting on auth endpoints
  • [ ] Security headers (CSP, HSTS); CORS scoped to specific origins, not wildcard

Performance & accessibility — adapt to your service type. The checklist below assumes a web frontend; for a backend service focus on p99 latency, error rate, and connection-pool saturation; for a CLI/library focus on startup time, binary size, and cross-platform tests.

  • [ ] Core Web Vitals in "Good" thresholds; bundle within budget
  • [ ] Images optimized (compression, responsive sizes, lazy loading)
  • [ ] No N+1 queries on critical paths; indexes and caching in place
  • [ ] Caching configured for static assets and repeated queries
  • [ ] Keyboard navigation, screen reader, WCAG 2.1 AA contrast
  • [ ] Focus management for modals and dynamic content
  • [ ] Descriptive error messages associated with form fields
  • [ ] No axe-core / Lighthouse accessibility warnings

Infrastructure & docs

  • [ ] Environment variables set in production; DB migrations applied or ready
  • [ ] DNS, SSL, CDN configured; health check endpoint responds
  • [ ] Logging and error reporting configured
  • [ ] README, API docs, ADRs, changelog, user-facing docs updated

2. Ship behind a feature flag

Decouple deployment from release so code can land in production inert. In any language: gate the new path behind a flag check — flag off runs the existing behavior, flag on runs the new.

// Example: TypeScript/React. Same shape in any language — a boolean gate around the new branch.
const flags = await getFeatureFlags(userId);
if (flags.taskSharing) return ;
return null; // existing behavior

Flag lifecycle: DEPLOY (flag OFF) → ENABLE for team/beta → GRADUAL ROLLOUT (5% → 25% → 50% → 100%) → MONITOR at each stage → CLEAN UP.

Rules: every flag has an owner and an expiration date; clean up within 2 weeks of full rollout; don't nest flags (exponential combinations); test both states in CI.

3. Follow the staged rollout sequence

1. DEPLOY to staging          → full test suite + manual smoke of critical flows
2. DEPLOY to production (OFF) → verify health check; check error monitoring
3. ENABLE for team            → 24-hour monitoring window
4. CANARY 5%                  → 24-48h; compare metrics vs. baseline
5. GRADUAL 25% → 50% → 100%  → monitor each step; roll back to previous % at any point
6. FULL rollout               → monitor for 1 week; clean up flag

Decision thresholds at each stage:

| Metric | Advance | Hold / investigate | Roll back | |--------|---------|---------------------|-----------| | Error rate | within 10% of baseline | 10–100% above | >2x baseline | | P99 latency | within 20% of baseline | 20–50% above | >50% above | | Client JS errors | no new types | new errors 0.1% sessions | | Business metrics | neutral or positive | decline 5% |

4. Document the rollback plan before launch

Every deployment needs a rollback plan written before it happens:

  • Trigger conditions — error rate > 2x baseline; P99 > [X]ms; user reports of [specific issue]; data integrity issues; security vulnerability discovered.
  • Rollback steps — disable feature flag (if applicable) OR git revert && git push; verify rollback via health check and error monitoring; notify team.
  • Database considerations — migration [X] has a rollback; data inserted by the new feature is preserved or cleaned up. Rollback command depends on your stack: npx prisma migrate rollback (Node/Prisma), alembic downgrade -1 (Python), goose down (Go), flyway undo (Java — Teams/Enterprise only; Community users must flyway repair + manual SQL, or use Liquibase whose free edition supports rollback).
  • Time to rollback — feature flag < 1 min; redeploy previous version < 5 min; database rollback < 15 min.

5. Verify in the first hour after launch

  1. Health endpoint returns 200.
  2. Error monitoring dashboard shows no new error types.
  3. Latency dashboard shows no regression.
  4. Test the critical user flow manually.
  5. Logs are flowing and readable.
  6. Rollback mechanism confirmed working (dry run if possible).

Output: docs/launch/rollback-plan.md — the pre-launch rollback plan (trigger conditions, steps, database considerations, time-to-rollback). Launch-specific, project-level.

Verify

Before deploying:

  • [ ] Pre-launch checklist completed (all sections green)
  • [ ] Feature flag configured (if applicable)
  • [ ] Rollback plan documented
  • [ ] Monitoring dashboards set up
  • [ ] Team notified of deployment

After deploying:

  • [ ] Health check returns 200
  • [ ] Error rate is normal
  • [ ] Latency is normal
  • [ ] Critical user flow works
  • [ ] Logs are flowing
  • [ ] Rollback tested or verified ready

References

  • [${CLAUDEPLUGINROOT}/references/engineering-principles.md](${CLAUDEPLUGINROOT}/references/engineering-principles.md) — shared discipline (verify don't assume, surgical scope, simplicity)
  • [references/launch-monitoring.md](references/launch-monitoring.md) — what to monitor at launch (application p50/p95/p99, infrastructure CPU/DB-pool/disk, client Core Web Vitals/JS errors) + ErrorBoundary and error-middleware scaffolding
  • [references/changelog-and-release-notes.md](references/changelog-and-release-notes.md) — commit history → categorized changelog (keepachangelog) → user-language release notes

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.