From linktree-pack
Creates timestamped debug bundle for Linktree capturing API key presence. Useful for initial troubleshooting of Linktree API issues. Trigger: 'linktree debug bundle'.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packThis skill is limited to using the following tools:
```bash
Generates timestamped debug bundle for Lucidchart API issues, capturing LUCID_API_KEY status. Useful for integration troubleshooting. Trigger: 'lucidchart debug bundle'.
Creates timestamped debug bundle for MindTickle with API key status and timestamp using bash. Useful for troubleshooting SaaS integrations. Trigger: 'mindtickle debug bundle'.
Diagnoses common Linktree API errors (400, 401, 404, 429) with fixes, curl-based health checks, and backoff advice for rate limits.
Share bugs, ideas, or general feedback.
#!/bin/bash
BUNDLE="linktree-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"
echo "LINKTREE_API_KEY: ${LINKTREE_API_KEY:+SET}" > "$BUNDLE/summary.txt"
echo "Timestamp: $(date -u)" >> "$BUNDLE/summary.txt"
tar -czf "$BUNDLE.tar.gz" "$BUNDLE" && rm -rf "$BUNDLE"
echo "Bundle: $BUNDLE.tar.gz"
See linktree-rate-limits.