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'.
How this skill is triggered — by the user, by Claude, or both
Slash command
/linktree-pack:linktree-debug-bundleThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
#!/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.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin linktree-packGenerates 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.