Core Lindy workflow for automating tasks and scheduling agents. Use when setting up automated workflows, scheduling agent runs, or creating trigger-based automations. Trigger with phrases like "lindy automation", "schedule lindy agent", "lindy workflow automation", "automate with lindy".
/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:
Complete workflow for automating tasks and scheduling Lindy AI agents.
lindy-core-workflow-a (agent creation)interface AutomationSpec {
agentId: string;
trigger: 'schedule' | 'webhook' | 'email' | 'event';
schedule?: string; // cron expression
webhookPath?: string;
emailTrigger?: string;
eventType?: string;
}
const automationSpec: AutomationSpec = {
agentId: 'agt_abc123',
trigger: 'schedule',
schedule: '0 9 * * *', // Daily at 9 AM
};
import { Lindy } from '@lindy-ai/sdk';
const lindy = new Lindy({ apiKey: process.env.LINDY_API_KEY });
async function createScheduledAutomation(spec: AutomationSpec) {
const automation = await lindy.automations.create({
agentId: spec.agentId,
type: 'schedule',
config: {
cron: spec.schedule,
timezone: 'America/New_York',
input: 'Run daily morning tasks',
},
});
console.log(`Created automation: ${automation.id}`);
return automation;
}
async function createWebhookAutomation(agentId: string, path: string) {
const automation = await lindy.automations.create({
agentId,
type: 'webhook',
config: {
path: path,
method: 'POST',
inputMapping: {
input: '{{body.message}}',
context: '{{body.context}}',
},
},
});
console.log(`Webhook URL: ${automation.webhookUrl}`);
return automation;
}
async function createEmailAutomation(agentId: string, triggerEmail: string) {
const automation = await lindy.automations.create({
agentId,
type: 'email',
config: {
triggerAddress: triggerEmail,
inputMapping: {
input: '{{email.body}}',
sender: '{{email.from}}',
subject: '{{email.subject}}',
},
},
});
console.log(`Forward emails to: ${automation.triggerEmail}`);
return automation;
}
| Error | Cause | Solution |
|---|---|---|
| Invalid cron | Bad schedule format | Use standard cron syntax |
| Webhook conflict | Path already used | Choose unique webhook path |
| Agent not found | Invalid agent ID | Verify agent exists |
async function setupAutomations(agentId: string) {
// Daily summary at 9 AM
await lindy.automations.create({
agentId,
type: 'schedule',
config: { cron: '0 9 * * *', input: 'Generate daily summary' },
});
// Webhook for external events
await lindy.automations.create({
agentId,
type: 'webhook',
config: { path: '/events', method: 'POST' },
});
// Email trigger for support
await lindy.automations.create({
agentId,
type: 'email',
config: { triggerAddress: 'support@mycompany.com' },
});
}
Proceed to lindy-common-errors for troubleshooting guidance.
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.