From lindy-pack
Sets up Lindy AI account, API access, and webhook authentication for onboarding or connecting Lindy agents to your application.
How this skill is triggered — by the user, by Claude, or both
Slash command
/lindy-pack:lindy-install-authThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Lindy AI is a no-code/low-code AI agent platform. Agents ("Lindies") are built in the
Lindy AI is a no-code/low-code AI agent platform. Agents ("Lindies") are built in the web dashboard at . External integration uses webhook endpoints, the HTTP Request action, and optional Node.js/Python SDKs for programmatic access.
# Environment variable
export LINDY_API_KEY="lnd_live_xxxxxxxxxxxxxxxxxxxx"
# Or .env file (add .env to .gitignore)
echo 'LINDY_API_KEY=lnd_live_xxxxxxxxxxxxxxxxxxxx' >> .env
# Node.js SDK
npm install lindy-ai
# Python SDK
pip install lindy-ai
// Node.js
import { Lindy } from 'lindy-ai';
const lindy = new Lindy({
apiKey: process.env.LINDY_API_KEY,
});
// Verify connection
const agents = await lindy.agents.list();
console.log(`Connected: ${agents.length} agents found`);
# Python
import os
from lindy import Lindy
client = Lindy(api_key=os.environ["LINDY_API_KEY"])
# Verify connection
agents = client.agents.list()
print(f"Connected: {len(agents)} agents found")
When creating a webhook trigger in the Lindy dashboard, generate a secret key. Callers must include this in every request:
Authorization: Bearer <your-webhook-secret>
Your webhook endpoint URL follows the pattern:
https://public.lindy.ai/api/v1/webhooks/<unique-id>
# Test your webhook trigger
curl -X POST "https://public.lindy.ai/api/v1/webhooks/YOUR_WEBHOOK_ID" \
-H "Authorization: Bearer YOUR_SECRET" \
-H "Content-Type: application/json" \
-d '{"test": true, "message": "hello from setup"}'
| Plan | Price | Credits/mo | Tasks | Extras |
|---|---|---|---|---|
| Free | $0 | 400 | ~40 | Basic models |
| Pro | $49.99/mo | 5,000 | ~1,500 | +$19.99/seat, phone calls |
| Business | $299.99/mo | 30,000 | ~3,000 | 100 phone calls, 50M KB chars |
| Enterprise | Custom | Custom | Custom | SSO, SCIM, RBAC, audit logs |
Credit consumption: 1-3 credits on basic models, ~10 on large models per task.
| Error | Cause | Solution |
|---|---|---|
401 Unauthorized | Invalid or expired API key | Regenerate key in Settings > API Keys |
403 Forbidden | Key lacks required scope | Check plan tier supports API access |
429 Too Many Requests | Credit limit exceeded | Upgrade plan or wait for monthly reset |
Webhook 401 | Missing/wrong Bearer token | Verify secret matches dashboard value |
ECONNREFUSED | Lindy API unreachable | Check https://status.lindy.ai |
.env added to .gitignoreAfter successful auth, proceed to lindy-hello-world for your first AI agent.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin lindy-pack2plugins reuse this skill
First indexed Jul 18, 2026
Provides integration patterns for Lindy AI including webhook triggers, HTTP actions, and Run Code execution. Useful when building integrations or calling Lindy agents from code.
Creates structured, bite-sized implementation plans from specs or requirements before writing code. Useful for breaking down multi-step tasks into testable steps with file structure and task boundaries.