shipping-and-launch

shipping-and-launch is a skill for Claude Code from peterblazejewicz/claude-plugins. It costs 95 tokens per session (5,024 once invoked), scanned A, original, MIT.

A guide for releasing .NET and C# systems to production safely. It combines pre-release checks with monitoring, staged rollouts, feature flags, and plans for undoing database or application changes.

In plain words
What is it for?
Use it before deploying ASP.NET Core or Blazor changes, releasing Avalonia or MAUI applications, running production EF Core migrations, publishing NuGet packages, or opening a beta.
Why use it?
It reduces the impact of launch problems by detecting issues early, releasing changes gradually, and keeping a recovery path ready.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the dotnet-skills plugin — 24 skills, 9 commands, 4 agents shipped together

Good fit Use it before deploying ASP.NET Core or Blazor changes, releasing Avalonia or MAUI applications, running production EF Core migrations, publishing NuGet packages, or opening a beta.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/peterblazejewicz/claude-plugins/shipping-and-launch
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add peterblazejewicz/claude-plugins --skill shipping-and-launch
Clone the repo
git clone --depth 1 https://github.com/peterblazejewicz/claude-plugins

Made for: Claude Code.

Or install dotnet-skills, the plugin that ships this one along with the rest of its 24 skills, 9 commands, 4 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for shipping-and-launch

README.md
[![agentmods](https://agentmods.dev/badge/skills/peterblazejewicz/claude-plugins/shipping-and-launch/github.svg)](https://agentmods.dev/skills/peterblazejewicz/claude-plugins/shipping-and-launch)
Your own site
<a href="https://agentmods.dev/skills/peterblazejewicz/claude-plugins/shipping-and-launch"><img src="https://agentmods.dev/badge/skills/peterblazejewicz/claude-plugins/shipping-and-launch/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for shipping-and-launch

Your own site · 80×15
<a href="https://agentmods.dev/skills/peterblazejewicz/claude-plugins/shipping-and-launch"><img src="https://agentmods.dev/badge/skills/peterblazejewicz/claude-plugins/shipping-and-launch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,024 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00095 $0.05024
Opus 5 $0.00048 $0.02512
Sonnet 5 $0.00019 $0.01005
Haiku 4.5 $0.00010 $0.00502

Measured 10d ago against content hash 410eecbf5598, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

shipping-and-launch scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/dotnet-skills/skills/shipping-and-launch/SKILL.md · 398 lines

How it starts

The opening of the file, as written. The whole thing — 398 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Shipping and Launch

Overview

Ship with confidence. The goal is not just to deploy — it's to deploy safely, with monitoring in place, a rollback plan ready, and a clear understanding of what success looks like. Every launch should be reversible, observable, and incremental.

When to Use

  • Deploying a feature to production for the first time
  • Releasing a significant change to users (ASP.NET Core service update, Blazor app revision, Avalonia/MAUI desktop release)
  • Running an EF Core migration against a production database
  • Publishing a new NuGet package version
  • Opening a beta or early access program
  • Any deployment that carries risk (all of them)

The Pre-Launch Checklist

Code Quality

  • All tests pass (dotnet test unit + integration, plus E2E if present)
  • dotnet build -warnaserror is clean (no analyzer diagnostics suppressed by accident)
  • dotnet format --verify-no-changes is clean
  • Code reviewed and approved
  • No TODO comments that should be resolved before launch
  • No Debug.WriteLine or stray Console.WriteLine debugging statements in production code paths (use ILogger<T> at the correct level)
  • No [Fact(Skip = "…")] on tests that guard the behaviour you're shipping
  • Error handling covers expected failure modes; OperationCanceledException is not swallowed

Security

  • No secrets in code, appsettings.json, or git history
  • dotnet list package --vulnerable --include-transitive shows no Critical or High vulnerabilities (or documented allowlist entries with review dates)
  • Input validation on all user-facing endpoints (FluentValidation / DataAnnotations / MediatR pipeline)
  • [Authorize] / RequireAuthorization() on every endpoint except explicitly-public ones
  • Security headers configured (CSP, HSTS, X-Content-Type-Options, X-Frame-Options)
  • Rate limiting on authentication endpoints (AddFixedWindowLimiter)
  • CORS configured to specific origins (not AllowAnyOrigin() with credentials)
  • ASP.NET Core Data Protection key ring is persisted and shared across instances (Azure Key Vault, Redis, or file share)

Read the full file on GitHub · 398 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 398 lines · 95 tokens per session scan A 410eecbf5598

Subscribe to this mod's changes

shipping-and-launch is a skill published in the GitHub repository peterblazejewicz/claude-plugins (7 stars, last pushed 2mo ago), licensed MIT. It adds 95 tokens to every session and 5,024 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

azure-validate

WORKFLOW SKILL — Pre-deployment validation for Azure: config, infrastructure (Bicep/Terraform), permissions, prerequisites. WHEN: 'validate my app', 'check deployment readiness', 'run preflight checks', 'validate azure.yaml', 'validate Bicep', 'test before deploying', 'validate Azure Functions'. DO NOT USE FOR…

jonathan-vella/apex-accelerator · 94 tokens

azure-deploy

WORKFLOW SKILL — Execute Azure deployments (azd up, azd deploy, terraform apply) for already-prepared apps with built-in error recovery. WHEN: 'run azd up', 'run azd deploy', 'push to production', 'go live', 'bicep deploy', 'terraform apply', 'publish to Azure'. DO NOT USE FOR: creating new apps (azure-prepare)…

jonathan-vella/apex-accelerator · 97 tokens

iac-common

UTILITY SKILL — Shared IaC deploy patterns for Bicep + Terraform agents: deployment strategies, circuit breaker, known deploy issues. WHEN: "phased deployment", "circuit breaker", "deploy strategy", "deploy issue", "shared IaC pattern". DO NOT USE FOR: preflight (azure-validate), code generation (azure-bicep-patterns…

jonathan-vella/apex-accelerator · 84 tokens

deployment-patterns

Deployment workflows, CI/CD pipeline patterns, Docker containerization, health checks, rollback strategies, and production readiness checklists for web applications.

deepelementlab/jupyter-studio · 31 tokens

bazel-build-optimization

Optimize Bazel builds for large-scale monorepos. Use when configuring Bazel, implementing remote execution, or optimizing build performance for enterprise codebases.

wshobson/agents · 36 tokens

gsap-core

Official GSAP skill for the core API — gsap.to(), from(), fromTo(), easing, duration, stagger, defaults, gsap.matchMedia() (responsive, prefers-reduced-motion). Use when the user asks for a JavaScript animation library, animation in React/Vue/vanilla, GSAP tweens, easing, basic animation, responsive or reduced-motion…

calesthio/OpenMontage · 128 tokens