| name | clickup-prod-checklist |
| description | Production readiness checklist for ClickUp API v2 integrations covering
auth, rate limits, error handling, monitoring, and rollback.
Trigger: "clickup production", "clickup go-live", "clickup launch checklist",
"clickup prod ready", "deploy clickup to production".
|
| allowed-tools | Read, Bash(curl:*), Grep |
| version | 1.6.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","productivity","clickup"] |
| compatibility | Designed for Claude Code |
ClickUp Production Checklist
Overview
Complete checklist for deploying ClickUp API v2 integrations to production.
Pre-Launch Checklist
Authentication & Secrets
Error Handling
Rate Limits
Monitoring
Webhooks (if applicable)
Production Health Verification
#!/bin/bash
echo "=== ClickUp Production Checks ==="
echo -n "Auth: "
STATUS=$(curl -sf -o /dev/null -w "%{http_code}" \
https://api.clickup.com/api/v2/user \
-H "Authorization: $CLICKUP_API_TOKEN")
[ "$STATUS" = "200" ] && echo "PASS" || echo "FAIL ($STATUS)"
echo -n "Rate limit: "
REMAINING=$(curl -sD - -o /dev/null \
https://api.clickup.com/api/v2/user \
-H "Authorization: $CLICKUP_API_TOKEN" 2>&1 | \
grep -i "X-RateLimit-Remaining" | awk '{print $2}' | tr -d '\r')
echo "${REMAINING} remaining"
echo -n "Latency: "
LATENCY=$(curl -sf -o /dev/null -w "%{time_total}" \
https://api.clickup.com/api/v2/user \
-H "Authorization: $CLICKUP_API_TOKEN")
echo "${LATENCY}s"
[ "$(echo "$LATENCY > 2" | bc -l)" = "1" ] && echo " WARNING: latency > 2s"
echo -n
TEAMS=$(curl -sf https://api.clickup.com/api/v2/team \
-H | \
python3 -c 2>/dev/null)
-n
curl -sf https://status.clickup.com/api/v2/summary.json | \
python3 -c 2>/dev/null ||
Rollback Procedure
Error Handling
| Alert | Condition | Severity |
|---|
| API unreachable | 0 successful requests in 5min | P1 |
| Auth failures | Any 401 response | P1 |
| Rate limited | X-RateLimit-Remaining = 0 | P2 |
| High latency | P95 > 3 seconds | P2 |
| Webhook failures | 3+ consecutive 5xx | P3 |
Resources
Next Steps
For version upgrades, see clickup-upgrade-migration.