Set up local development workflow for Lindy AI agents. Use when configuring local testing, hot reload, or development environment. Trigger with phrases like "lindy local dev", "lindy development", "lindy hot reload", "test lindy locally".
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.
lindy-install-auth setup// 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 CALLBACK_SECRET = process.env.LINDY_CALLBACK_SECRET;
if (!CALLBACK_SECRET) {
throw new Error('LINDY_CALLBACK_SECRET is required');
}
// Verify Lindy webhook authenticity
function verifyWebhook(req: express.Request): boolean {
const auth = req.headers.authorization;
return auth === `Bearer ${CALLBACK_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' });
}
// Correlate the callback without logging its result or customer payload.
const { taskId, status } = req.body;
console.log(`Task ${taskId}: ${status}`);
res.json({ received: true });
});
// Health check for Lindy to verify endpoint
app.get('/health', (req, res) => res.json({ status: 'ok' }));
app.listen(3000, () => console.log('Webhook receiver running on :3000'));
# Install an HTTPS tunnel with your approved package-management policy, then run it.
ngrok http 3000
# Output: https://abc123.ngrok.io -> http://localhost:3000
# Use this URL in Lindy webhook configuration
In the Lindy dashboard, add an HTTP Request action to your agent:
Method: POST
URL: https://abc123.ngrok.io/lindy/callback
Headers:
Content-Type: application/jsonAuthorization: Bearer <development callback secret>Body (AI Prompt mode):
Send the task result as JSON with fields: taskId, result, status
The tunnel is the destination of the agent's HTTP Request action. A webhook trigger is the opposite direction: it uses the Lindy-hosted trigger URL to start the agent and must not be replaced with the tunnel URL.
// test-trigger.ts — Fire a test webhook to your Lindy agent
import fetch from 'node-fetch';
async function triggerAgent() {
const rawWebhookUrl = process.env.LINDY_WEBHOOK_URL;
const TRIGGER_SECRET = process.env.LINDY_TRIGGER_SECRET;
if (!rawWebhookUrl || !TRIGGER_SECRET) {
throw new Error('LINDY_WEBHOOK_URL and LINDY_TRIGGER_SECRET are required');
}
const webhookUrl = new URL(rawWebhookUrl);
if (webhookUrl.protocol !== 'https:' || webhookUrl.hostname !== 'public.lindy.ai') {
throw new Error('Refusing to send LINDY_TRIGGER_SECRET outside public.lindy.ai');
}
const response = await fetch(webhookUrl, {
method: 'POST',
headers: {
'Authorization': `Bearer ${TRIGGER_SECRET}`,
'Content-Type': 'application/json',
},
body: JSON.stringify({
action: 'test',
data: { message: 'Hello from local dev', timestamp: new Date().toISOString() },
}),
});
console.log(`Status: ${response.status}`);
console.log(`Response: ${await response.text()}`);
}
triggerAgent();
// package.json scripts
{
"scripts": {
"dev": "tsx watch server.ts",
"test:trigger": "tsx test-trigger.ts",
"tunnel": "ngrok http 3000"
}
}
# Terminal 1: Start server with auto-reload
npm run dev
# Terminal 2: Start tunnel
npm run tunnel
# Terminal 3: Fire test triggers
npm run test:trigger
# .env
LINDY_WEBHOOK_URL=https://public.lindy.ai/api/v1/webhooks/YOUR_ID
LINDY_TRIGGER_SECRET=replace-with-development-trigger-secret
LINDY_CALLBACK_SECRET=replace-with-different-callback-secret
NODE_ENV=development
[Edit local code] → [Auto-reload via tsx watch]
↓
[Fire test webhook] → [Lindy agent processes]
↓
[Agent calls back] → [ngrok tunnel → localhost:3000]
↓
[Review logs] → [Iterate]
Produce a local-test receipt containing the callback route, redacted tunnel origin, test payload fixture, authenticated and unauthenticated HTTP outcomes, Lindy task ID, callback status, and log timestamp. The receipt must not contain the tunnel's private path, either bearer credential, or any customer payload.
Start the receiver and tunnel, send a synthetic event with the development credential, and confirm one callback is accepted and correlated to the recorded task ID. Send the same fixture without authorization and confirm a 401 response. If the tunnel changes, update only the development configuration and rerun both checks before continuing iteration.
| Issue | Cause | Solution |
|-------|-------|----------|
| ngrok tunnel expires | Free tier limit (2hr) | Restart ngrok or use paid plan |
| Lindy can't reach endpoint | Tunnel URL changed | Update webhook URL in Lindy dashboard |
| Callback not received | Agent HTTP Request misconfigured | Check URL and headers in action config |
| ECONNREFUSED | Local server not running | Start server before testing |
| SSL error | ngrok not using HTTPS | Always use the https:// ngrok URL |
Proceed to lindy-sdk-patterns for integration patterns and best practices.
下载完整 Skill 目录,包含 SKILL.md 及所有相关文件
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer