From palantir-pack
Executes Palantir Foundry production deployment checklist: credentials, code quality, health checks, monitoring, alerting, rollback. For deploying integrations to prod environments.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin palantir-packThis skill is limited to using the following tools:
Complete go-live checklist for deploying Foundry-integrated applications to production. Covers credential management, health checks, monitoring, and rollback procedures.
Deploys Palantir Foundry apps to GCP Cloud Run, AWS Lambda, or Docker with secrets management, health checks, and production configs.
Executes Exa production checklist for search integrations: pre-flight API/tests, security/code quality/performance/monitoring audits, health endpoint setup.
Executes Mistral AI production deployment checklist: credential verification, code quality gates, health endpoints, circuit breakers, gradual rollouts, and rollback procedures.
Share bugs, ideas, or general feedback.
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.