Core Lindy workflow for creating and configuring AI agents. Use when building new agents, defining agent behaviors, or setting up agent capabilities. Trigger with phrases like "create lindy agent", "build lindy agent", "lindy agent workflow", "configure lindy agent".
/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 creating, configuring, and deploying Lindy AI agents.
lindy-install-auth setupinterface AgentSpec {
name: string;
description: string;
instructions: string;
tools: string[];
model?: string;
temperature?: number;
}
const agentSpec: AgentSpec = {
name: 'Customer Support Agent',
description: 'Handles customer inquiries and support tickets',
instructions: `
You are a helpful customer support agent.
- Be polite and professional
- Ask clarifying questions when needed
- Escalate complex issues to human support
- Always confirm resolution with the customer
`,
tools: ['email', 'calendar', 'knowledge-base'],
model: 'gpt-4',
temperature: 0.7,
};
import { Lindy } from '@lindy-ai/sdk';
const lindy = new Lindy({ apiKey: process.env.LINDY_API_KEY });
async function createAgent(spec: AgentSpec) {
const agent = await lindy.agents.create({
name: spec.name,
description: spec.description,
instructions: spec.instructions,
tools: spec.tools,
config: {
model: spec.model || 'gpt-4',
temperature: spec.temperature || 0.7,
},
});
console.log(`Created agent: ${agent.id}`);
return agent;
}
async function configureTools(agentId: string, tools: string[]) {
for (const tool of tools) {
await lindy.agents.addTool(agentId, {
name: tool,
enabled: true,
});
}
console.log(`Configured ${tools.length} tools`);
}
async function testAgent(agentId: string) {
const testCases = [
'Hello, I need help with my order',
'Can you check my subscription status?',
'I want to cancel my account',
];
for (const input of testCases) {
const result = await lindy.agents.run(agentId, { input });
console.log(`Input: ${input}`);
console.log(`Output: ${result.output}\n`);
}
}
| Error | Cause | Solution |
|---|---|---|
| Tool not found | Invalid tool name | Check available tools list |
| Instructions too long | Exceeds limit | Summarize or split instructions |
| Model unavailable | Unsupported model | Use default gpt-4 |
async function main() {
// Create agent
const agent = await createAgent(agentSpec);
// Configure tools
await configureTools(agent.id, agentSpec.tools);
// Test agent
await testAgent(agent.id);
console.log(`Agent ${agent.id} is ready!`);
}
main().catch(console.error);
Proceed to lindy-core-workflow-b for task automation workflows.
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.