LI

lindy-install-auth

Guides the installation and authentication of Lindy AI SDKs and webhook security.

Install

mkdir -p .claude/skills/lindy-install-auth && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/5440" && unzip -o skill.zip -d .claude/skills/lindy-install-auth && rm skill.zip

Installs to .claude/skills/lindy-install-auth

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Set up Lindy AI account, API access, and webhook authentication.
64 charsno explicit “when” trigger
Beginner

Key capabilities

  • Obtain a Lindy AI API key
  • Install Lindy AI SDK for Node.js or Python
  • Initialize Lindy client with API key
  • Configure webhook authentication with a secret key
  • Verify webhook connectivity with a test curl command

How it works

The skill guides users through obtaining an API key from the Lindy dashboard, installing the SDK, initializing the client with the API key, and configuring webhook authentication with a secret key. It verifies the setup by listing agents or testing the webhook endpoint.

Inputs & outputs

You give it
Lindy account login, API key, webhook secret, test JSON payload
You get back
Lindy API key, installed SDK, initialized Lindy client, verified webhook connectivity, console log of connected agents

When to use lindy-install-auth

  • Initialize Lindy AI SDK
  • Configure API keys
  • Setup webhook authentication
  • Test agent connectivity

About this skill

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.

Prerequisites

Lindy account at lindy.aiNode.js 18+ or Python 3.10+ for SDK accessHTTPS endpoint in your application for webhook receivers

Limitations

  • 401 Unauthorized for invalid or expired API key
  • 403 Forbidden if key lacks required scope
  • 429 Too Many Requests if credit limit is exceeded

How it compares

This skill provides a structured process for authenticating and setting up Lindy AI, unlike manually configuring API keys and webhooks without guidance.

Compared to similar skills

lindy-install-auth side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
lindy-install-auth (this skill)427dCautionBeginner
evernote-install-auth127dReviewBeginner
instantly-install-auth127dCautionBeginner
documenso-install-auth127dReviewBeginner

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

evernote-install-auth

jeremylongshore

Install and configure Evernote SDK and OAuth authentication. Use when setting up a new Evernote integration, configuring API keys, or initializing Evernote in your project. Trigger with phrases like "install evernote", "setup evernote", "evernote auth", "configure evernote API", "evernote oauth".

14

instantly-install-auth

jeremylongshore

Install and configure Instantly SDK/CLI authentication. Use when setting up a new Instantly integration, configuring API keys, or initializing Instantly in your project. Trigger with phrases like "install instantly", "setup instantly", "instantly auth", "configure instantly API key".

12

documenso-install-auth

jeremylongshore

Install and configure Documenso SDK/API authentication. Use when setting up a new Documenso integration, configuring API keys, or initializing Documenso in your project. Trigger with phrases like "install documenso", "setup documenso", "documenso auth", "configure documenso API key".

11

deepgram-install-auth

jeremylongshore

Install and configure Deepgram SDK/CLI authentication. Use when setting up a new Deepgram integration, configuring API keys, or initializing Deepgram in your project. Trigger with phrases like "install deepgram", "setup deepgram", "deepgram auth", "configure deepgram API key".

10

fireflies-install-auth

jeremylongshore

Install and configure Fireflies.ai SDK/CLI authentication. Use when setting up a new Fireflies.ai integration, configuring API keys, or initializing Fireflies.ai in your project. Trigger with phrases like "install fireflies", "setup fireflies", "fireflies auth", "configure fireflies API key".

01

klingai-install-auth

jeremylongshore

Execute set up Kling AI API authentication and configure API keys. Use when starting a new Kling AI integration or troubleshooting auth issues. Trigger with phrases like 'kling ai setup', 'klingai api key', 'kling ai authentication', 'configure klingai'.

10

Search skills

Search the agent skills registry