lindy-debug-bundle

Featured

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".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# 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 ```bash # Local environment diagnostics 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 ```bash # Test webhook trigger endpoint echo "=== Webhook Connectivity ===" WEBHOOK_URL="${LINDY_WEBHOOK_URL:-https://public.lindy.ai/api/v1/webhooks/YOUR_ID}" # Test without auth (expect 401) echo "Without auth (expect 401):" curl -s -o /dev/null -w "HTTP %{http_code} in %{time_total}s\n" \ -X POST "$WEBHOOK_URL" \ -H "Content-Type: application/json" \ -d '{"test": true}' # Tes...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

lindy-common-errors

Troubleshoot common Lindy AI agent errors and workflow failures. Use when encountering errors, debugging agent failures, or resolving integration problems. Trigger with phrases like "lindy error", "lindy not working", "debug lindy", "lindy troubleshoot", "lindy agent failed".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-ci-integration

Configure CI/CD pipelines for testing Lindy AI agent integrations. Use when setting up automated testing, configuring GitHub Actions for webhook receiver tests, or validating agent connectivity in CI. Trigger with phrases like "lindy CI", "lindy GitHub Actions", "lindy automated tests", "CI lindy pipeline".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-incident-runbook

Incident response procedures for Lindy AI agent failures and outages. Use when responding to incidents, troubleshooting agent outages, or creating on-call procedures for Lindy-powered systems. Trigger with phrases like "lindy incident", "lindy outage", "lindy on-call", "lindy runbook", "lindy down".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-local-dev-loop

Set up local development workflow for testing Lindy AI agent integrations. Use when building webhook receivers, testing agent callbacks, or iterating on Lindy-connected applications locally. Trigger with phrases like "lindy local dev", "lindy development", "test lindy locally", "lindy webhook local".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-install-auth

Set up Lindy AI account, API access, and webhook authentication. Use when onboarding to Lindy, configuring API keys for webhook triggers, or connecting Lindy agents to your application. Trigger with phrases like "install lindy", "setup lindy", "lindy auth", "configure lindy API key", "lindy webhook secret".

2,266 Updated today
jeremylongshore