lindy-install-auth

Featured

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

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 Install & Auth ## Overview Lindy AI is a no-code/low-code AI agent platform. Agents ("Lindies") are built in the web dashboard at https://app.lindy.ai. External integration uses webhook endpoints, the HTTP Request action, and optional Node.js/Python SDKs for programmatic access. ## Prerequisites - Lindy account at https://app.lindy.ai (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 https://app.lindy.ai 2. Navigate to **Settings > API Keys** 3. Click **Generate New Key** — copy immediately (shown only once) 4. Store securely: ```bash # 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) ```bash # Node.js SDK npm install lindy-ai # Python SDK pip install lindy-ai ``` ### Step 3: Initialize Client ```typescript // 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 # 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: ...

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-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-hello-world

Create your first Lindy AI agent with a real trigger and action. Use when starting with Lindy, testing your setup, or learning basic agent workflow patterns. Trigger with phrases like "lindy hello world", "lindy example", "lindy quick start", "simple lindy agent", "first lindy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-security-basics

Implement security best practices for Lindy AI agents and integrations. Use when securing API keys, configuring agent permissions, verifying webhooks, or auditing agent access. Trigger with phrases like "lindy security", "secure lindy", "lindy API key security", "lindy permissions", "lindy audit".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-core-workflow-a

Build and configure multi-step Lindy AI agent workflows. Use when creating agents with triggers, actions, conditions, knowledge bases, or agent steps. Trigger with phrases like "create lindy agent", "build lindy agent", "lindy agent workflow", "configure lindy agent", "lindy workflow".

2,266 Updated today
jeremylongshore
AI & Automation Featured

lindy-deploy-integration

Deploy applications that integrate with Lindy AI agents. Use when deploying webhook receivers, callback handlers, or applications connected to Lindy agents. Trigger with phrases like "deploy lindy", "lindy deployment", "lindy production deploy", "release lindy integration".

2,266 Updated today
jeremylongshore