| name | lindy-debug-bundle |
| description | Comprehensive debugging toolkit for Lindy AI agents.
Use when investigating complex agent failures, collecting diagnostics,
or preparing support tickets for Lindy support.
Trigger with phrases like "lindy debug", "lindy diagnostics",
"lindy support bundle", "investigate lindy issue".
|
| allowed-tools | Read, Write, Edit, Bash(curl:*), Grep |
| version | 1.15.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","lindy","debugging"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Lindy Debug Bundle
Current State
!node --version 2>/dev/null || echo 'Node.js not installed'
!python3 --version 2>/dev/null || echo 'Python not installed'
!curl --version 2>/dev/null | head -1 || echo 'curl not installed'
Overview
Systematic diagnostics for Lindy AI agent issues. Collects environment info,
tests API connectivity, reviews agent task history, and generates a support
bundle for Lindy's support team.
Prerequisites
- Access to Lindy dashboard (https://app.lindy.ai)
- curl installed for API testing
- Agent ID and webhook URLs available
Instructions
Step 1: Collect Environment Info
echo "=== Local Environment ==="
echo "Node: $(node --version 2>/dev/null || echo 'N/A')"
echo "Python: $(python3 --version 2>/dev/null || echo 'N/A')"
echo "OS: $(uname -srm)"
echo "Date: $(date -u '+%Y-%m-%d %H:%M:%S UTC')"
echo "LINDY_API_KEY set: $([ -n "$LINDY_API_KEY" ] && echo 'yes' || echo 'NO')"
echo "LINDY_WEBHOOK_SECRET set: $([ -n "$LINDY_WEBHOOK_SECRET" ] && echo 'yes' || echo 'NO')"
Step 2: Test Webhook Connectivity
echo "=== Webhook Connectivity ==="
WEBHOOK_URL="${LINDY_WEBHOOK_URL:-https://public.lindy.ai/api/v1/webhooks/YOUR_ID}"
curl -s -o /dev/null -w \
-X POST \
-H \
-d
curl -s -o /dev/null -w \
-X POST \
-H \
-H \
-d