From mindtickle-pack
Diagnoses and fixes common MindTickle API errors including 401 invalid key, 403 permissions, 404 not found, and 429 rate limits. Includes curl diagnostic script.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packThis skill is limited to using the following tools:
Quick reference for MindTickle API errors with solutions.
Provides TypeScript patterns for MindTickle SDK: singleton client and error wrapper with 429 retry. Useful for robust API integrations.
Diagnoses and fixes SalesLoft REST API v2 errors: 401 (tokens), 403 (scopes), 422 (validation), 429 (rate limits), 5xx. Includes OAuth troubleshooting, retry code, and curl examples.
Diagnose and fix common Klaviyo API errors like 400 bad request, 401 unauthorized, 403 forbidden using real payloads, causes, and TypeScript SDK fixes.
Share bugs, ideas, or general feedback.
Quick reference for MindTickle API errors with solutions.
Fix: Verify key at MindTickle Admin > Integrations.
Fix: API key needs admin-level access.
Fix: Verify module/user/team ID exists.
Fix: MindTickle API: 60 requests/minute. Implement backoff.
# Check API connectivity
curl -s -w "\nHTTP %{http_code}" https://api.mindtickle.com/v2/health 2>/dev/null || echo "Endpoint check needed"
echo $MINDTICKLE_API_KEY | head -c 10
See mindtickle-debug-bundle.