Troubleshoot common Lindy AI errors and issues. Use when encountering errors, debugging agent failures, or resolving integration problems. Trigger with phrases like "lindy error", "lindy not working", "debug lindy", "lindy troubleshoot".
/plugin marketplace add jeremylongshore/claude-code-plugins-plus-skills/plugin install lindy-pack@claude-code-plugins-plusThis skill is limited to using the following tools:
Comprehensive guide to troubleshooting common Lindy AI errors and issues.
Error: Invalid API key provided
Code: LINDY_AUTH_INVALID_KEY
Causes:
Solutions:
# Verify key is set
echo $LINDY_API_KEY
# Regenerate key in dashboard
# https://app.lindy.ai/settings/api-keys
# Test key
curl -H "Authorization: Bearer $LINDY_API_KEY" \
https://api.lindy.ai/v1/users/me
Error: Rate limit exceeded
Code: LINDY_RATE_LIMITED
Retry-After: 60
Causes:
Solutions:
// Implement exponential backoff
async function withBackoff<T>(fn: () => Promise<T>): Promise<T> {
for (let i = 0; i < 5; i++) {
try {
return await fn();
} catch (e: any) {
if (e.code === 'LINDY_RATE_LIMITED') {
const delay = Math.pow(2, i) * 1000;
await new Promise(r => setTimeout(r, delay));
continue;
}
throw e;
}
}
throw new Error('Max retries exceeded');
}
Error: Agent not found
Code: LINDY_AGENT_NOT_FOUND
Solutions:
// Verify agent exists
const agents = await lindy.agents.list();
const exists = agents.some(a => a.id === agentId);
// Check environment (dev vs prod)
console.log('Environment:', process.env.LINDY_ENVIRONMENT);
Error: Agent execution timed out
Code: LINDY_AGENT_TIMEOUT
Solutions:
// Increase timeout
const result = await lindy.agents.run(agentId, {
input,
timeout: 120000, // 2 minutes
});
// Use streaming for long tasks
const stream = await lindy.agents.runStream(agentId, { input });
Error: Tool execution failed
Code: LINDY_TOOL_FAILED
Tool: email
Solutions:
// Check tool configuration
const agent = await lindy.agents.get(agentId);
console.log('Tools:', agent.tools);
// Verify tool credentials
await lindy.tools.test('email');
[ ] API key is valid and not expired
[ ] Correct environment (dev/staging/prod)
[ ] Agent ID exists and is accessible
[ ] Rate limits not exceeded
[ ] Network connectivity to api.lindy.ai
[ ] Required tools are configured
[ ] Timeout is sufficient for task
| Error Code | HTTP Status | Retry? |
|---|---|---|
| LINDY_AUTH_INVALID_KEY | 401 | No |
| LINDY_RATE_LIMITED | 429 | Yes |
| LINDY_AGENT_NOT_FOUND | 404 | No |
| LINDY_AGENT_TIMEOUT | 504 | Yes |
| LINDY_TOOL_FAILED | 500 | Maybe |
Proceed to lindy-debug-bundle for comprehensive debugging.
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.