From linktree-pack
Diagnoses common Linktree API errors (400, 401, 404, 429) with fixes, curl-based health checks, and backoff advice for rate limits.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
Quick reference for Linktree API errors with solutions.
Provides TypeScript examples for Linktree API: get profiles, create/update/list links. Useful for testing Linktree SaaS integration.
Diagnoses and fixes common MindTickle API errors including 401 invalid key, 403 permissions, 404 not found, and 429 rate limits. Includes curl diagnostic script.
Diagnoses and fixes common Hootsuite API errors: 401/403 unauthorized, 422 validation, 429 rate limits, OAuth token issues, media uploads. Includes curl diagnostics and fixes.
Share bugs, ideas, or general feedback.
Quick reference for Linktree API errors with solutions.
Fix: Check request body format, ensure URLs are valid.
Fix: Verify API key at linktr.ee developer portal.
Fix: Verify profile username or link ID exists.
Fix: Implement exponential backoff. Check Retry-After header.
# Check API connectivity
curl -s -w "\nHTTP %{http_code}" https://api.linktr.ee/v1/health 2>/dev/null || echo "Endpoint check needed"
echo $LINKTREE_API_KEY | head -c 10
See linktree-debug-bundle.