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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mindtickle-pack:mindtickle-common-errorsThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick reference for MindTickle API errors with solutions.
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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin mindtickle-packProvides 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.