agentsclimarketplace

Lindy install auth

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/lindy-pack/skills/lindy-install-auth

'Set up Lindy AI account, API access, and webhook authentication.From its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill lindy-install-auth

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

4.2 KB, 962 tokens by cl100k_base, as published. Nobody here has run it

Lindy Install & Auth

Overview

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.

Prerequisites

  • Lindy account at (Free tier: 400 credits/month)
  • For SDK access: Node.js 18+ or Python 3.10+
  • For webhook receivers: HTTPS endpoint in your application

Instructions

Step 1: Obtain API Key

  1. Log in at
  2. Navigate to Settings > API Keys
  3. Click Generate New Key — copy immediately (shown only once)
  4. Store securely:
# Environment variable
export LINDY_API_KEY="lnd_live_xxxxxxxxxxxxxxxxxxxx"

# Or .env file (add .env to .gitignore)
echo 'LINDY_API_KEY=lnd_live_xxxxxxxxxxxxxxxxxxxx' >> .env

Step 2: Install SDK (Optional)

# Node.js SDK
npm install lindy-ai

# Python SDK
pip install lindy-ai

Step 3: Initialize Client

// 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")

Step 4: Configure Webhook Authentication

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>

Step 5: Verify Webhook Connectivity

# 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"}'

Lindy Plans & Credits

PlanPriceCredits/moTasksExtras
Free$0400~40Basic models
Pro$49.99/mo5,000~1,500+$19.99/seat, phone calls
Business$299.99/mo30,000~3,000100 phone calls, 50M KB chars
EnterpriseCustomCustomCustomSSO, SCIM, RBAC, audit logs

Credit consumption: 1-3 credits on basic models, ~10 on large models per task.

Error Handling

ErrorCauseSolution
401 UnauthorizedInvalid or expired API keyRegenerate key in Settings > API Keys
403 ForbiddenKey lacks required scopeCheck plan tier supports API access
429 Too Many RequestsCredit limit exceededUpgrade plan or wait for monthly reset
Webhook 401Missing/wrong Bearer tokenVerify secret matches dashboard value
ECONNREFUSEDLindy API unreachableCheck https://status.lindy.ai

Security Checklist

  • API key stored in env var or secret manager — never in source code
  • .env added to .gitignore
  • Webhook secret generated and stored securely
  • HTTPS enforced on all webhook receiver endpoints
  • API key scoped to minimum required permissions

Resources

Next Steps

After successful auth, proceed to lindy-hello-world for your first AI agent.

What ships with it: 1 file

2.0 KB alongside SKILL.md

references/

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.