Help us improve
Share bugs, ideas, or general feedback.
From openevidence-pack
Generates timestamped debug bundle for OpenEvidence with API key status, packaged as tar.gz. Trigger: 'openevidence debug bundle'. Useful for OpenEvidence troubleshooting.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin openevidence-packHow this skill is triggered — by the user, by Claude, or both
Slash command
/openevidence-pack:openevidence-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
Creates timestamped debug bundle for MindTickle with API key status and timestamp using bash. Useful for troubleshooting SaaS integrations. Trigger: 'mindtickle debug bundle'.
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 Linktree capturing API key presence. Useful for initial troubleshooting of Linktree API issues. Trigger: 'linktree debug bundle'.
Share bugs, ideas, or general feedback.
#!/bin/bash
BUNDLE="openevidence-debug-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$BUNDLE"
echo "OPENEVIDENCE_API_KEY: ${OPENEVIDENCE_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 openevidence-rate-limits.