Lindy Local Dev Loop
Overview
Configure efficient local development workflow for Lindy AI agent development.
Prerequisites
- Completed
lindy-install-authsetup - Node.js 18+ with npm/pnpm
- Code editor with TypeScript support
Instructions
Step 1: Set Up Project Structure
Step 2: Configure TypeScript
Step 3: Create Development Script
Step 4: Create Agent Test Harness
For detailed implementation code and configurations, load the reference guide:
Read(${CLAUDE_SKILL_DIR}/references/implementation-guide.md)
Output
- Configured development environment
- Hot reload enabled for agent code
- Test harness for rapid iteration
- TypeScript support with type checking
Error Handling
| Error | Cause | Solution |
|---|---|---|
| ts-node not found | Dev deps missing | npm install -D ts-node |
| ENV not loaded | dotenv not configured | Add import 'dotenv/config' |
| Type errors | Missing types | npm install -D @types/node |
Examples
Watch Mode Development
Environment Setup
Resources
Next Steps
Proceed to lindy-sdk-patterns for SDK best practices.