From palantir-pack
Executes Palantir Foundry production deployment checklist: credentials, code quality, health checks, monitoring, alerting, rollback. For deploying integrations to prod environments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/palantir-pack:palantir-prod-checklistThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Complete go-live checklist for deploying Foundry-integrated applications to production. Covers credential management, health checks, monitoring, and rollback procedures.
Complete go-live checklist for deploying Foundry-integrated applications to production. Covers credential management, health checks, monitoring, and rollback procedures.
FOUNDRY_HOSTNAME points to production enrollmentApiError status codes@app.get("/health")
async def health():
try:
client.ontologies.Ontology.list()
return {"status": "healthy", "foundry": "connected"}
except foundry.ApiError as e:
return {"status": "degraded", "foundry": f"error_{e.status_code}"}
palantir-incident-runbookset -euo pipefail
# Pre-flight
curl -sf "https://$FOUNDRY_HOSTNAME/api/v2/ontologies" \
-H "Authorization: Bearer $FOUNDRY_TOKEN" > /dev/null \
&& echo "Foundry API reachable" || echo "BLOCKED: Foundry unreachable"
# Deploy with canary
kubectl set image deployment/my-app app=myimage:v2.0.0 --record
kubectl rollout status deployment/my-app --timeout=300s
kubectl rollout undo deployment/my-app
kubectl rollout status deployment/my-app
| Alert | Condition | Severity |
|---|---|---|
| Foundry Unreachable | Health check fails 3x | P1 |
| Auth Failure | Any 401/403 | P1 |
| Rate Limited | 429 > 10/min | P2 |
| High Latency | p99 > 10s | P2 |
For version upgrades, see palantir-upgrade-migration.
npx claudepluginhub luxdevnet/claude-plus-lux --plugin palantir-pack5plugins reuse this skill
First indexed Jul 10, 2026
Execute Palantir Foundry production deployment checklist and rollback procedures. Use when deploying Foundry integrations to production, preparing for launch, or implementing go-live procedures. Trigger with phrases like "palantir production", "deploy foundry", "palantir go-live", "foundry launch checklist".
Walks through Fly.io production deployment checklist with health checks, auto-scaling, monitoring, and rollback procedures. Trigger phrases: 'fly.io production', 'fly.io go-live'.
Runs production deployment checklist for Adobe Firefly Services, PDF Services, and I/O Events APIs, checking OAuth credentials, health endpoints, rate limits, code quality, and k8s rollout.