From linktree-pack
Diagnoses and fixes common Linktree API errors (400/401/404/429) with quick diagnostic curl commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linktree-pack:linktree-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 Linktree API errors with solutions.
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.
2plugins reuse this skill
First indexed Jul 17, 2026
npx claudepluginhub ia23a-lachnita/claude-code-plugins-plus-fix-skills --plugin linktree-packDiagnose and fix Linktree common errors. Trigger: "linktree error", "fix linktree", "debug linktree".
Guides collaborative design exploration before implementation: explores context, asks clarifying questions, proposes approaches, and writes a design doc for user approval.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.