lindy-local-dev-loop

Featured

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

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 Local Dev Loop ## Overview Lindy agents run on Lindy's managed infrastructure — you do not run agents locally. Local development focuses on building and testing the **webhook receivers**, **callback handlers**, and **application code** that Lindy agents interact with. Use ngrok or similar tunnels to expose local endpoints for Lindy webhook triggers. ## Prerequisites - Node.js 18+ or Python 3.10+ - ngrok or Cloudflare Tunnel for HTTPS tunneling - Lindy account with at least one agent configured - Completed `lindy-install-auth` setup ## Instructions ### Step 1: Create Webhook Receiver ```typescript // server.ts — Express webhook receiver for Lindy callbacks import express from 'express'; import dotenv from 'dotenv'; dotenv.config(); const app = express(); app.use(express.json()); const WEBHOOK_SECRET = process.env.LINDY_WEBHOOK_SECRET; // Verify Lindy webhook authenticity function verifyWebhook(req: express.Request): boolean { const auth = req.headers.authorization; return auth === `Bearer ${WEBHOOK_SECRET}`; } // Receive Lindy agent callbacks app.post('/lindy/callback', (req, res) => { if (!verifyWebhook(req)) { console.error('Unauthorized webhook attempt'); return res.status(401).json({ error: 'Unauthorized' }); } console.log('Lindy callback received:', JSON.stringify(req.body, null, 2)); // Process the agent's output const { taskId, result, status } = req.body; console.log(`Task ${taskId}: ${status}`); res.json({ received: true })...

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-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
AI & Automation Featured

lindy-webhooks-events

Configure Lindy AI webhook triggers, callback patterns, and event handling. Use when setting up webhook triggers, implementing callback receivers, or building event-driven Lindy integrations. Trigger with phrases like "lindy webhook", "lindy events", "lindy callback", "lindy webhook trigger".

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
AI & Automation Featured

lindy-sdk-patterns

Lindy AI integration patterns for webhook handling, HTTP actions, and Run Code. Use when building integrations, calling Lindy agents from code, or implementing the Run Code action with Python/JavaScript. Trigger with phrases like "lindy SDK patterns", "lindy best practices", "lindy API patterns", "lindy Run Code", "lindy HTTP Request".

2,266 Updated today
jeremylongshore