Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Production readiness is the service's ability to start, serve, degrade, stop,
and recover predictably under real load and dependency failure. Measure the
critical path before adding complexity.
When to Use
Use for containers, deployment manifests, runtime configuration, health checks,
logging, metrics, tracing, alerts, performance, caching, connection pools,
capacity, and incident hardening.
Workflow
Identify the service boundary, dependencies, startup contract, critical user
path, resource limits, expected load, and failure budget.
Separate non-secret configuration from write-only secrets. Validate required
configuration at startup without echoing sensitive values.
Implement distinct liveness and readiness semantics. Readiness must reflect
whether the instance can serve safely without turning transient dependency
failures into restart loops.
Add structured, bounded observability for requests and jobs: stable operation
names, correlation, latency, outcomes, saturation, retries, and error classes.
Avoid sensitive or unbounded fields.
Measure before tuning. Address algorithm, query, payload, batching,
connection, or cache behavior at the bottleneck and keep invalidation and
consistency explicit.
Verify graceful shutdown, draining, dependency timeout, overload, degraded
mode, rollback, and recovery using the smallest production-representative
environment available.
Verification
Startup validates configuration without exposing secrets.
Liveness, readiness, shutdown, and draining semantics are correct.
Logs, metrics, and traces explain latency, errors, retries, and saturation.
Performance work is based on measurement and preserves correctness.
Dependency failure, overload, rollback, and recovery were exercised.
Red Flags
Health endpoints that always return success.
Unbounded request labels, payloads, logs, queues, or in-memory caches.
Increasing timeouts or replicas without locating the bottleneck.
Container success treated as proof of application readiness.