# Webflow
> The LeadResponseAgent automates responding to Webflow form submissions. It discovers sites and forms, retrieves submissions, creates Resend contacts, and sends template-based response emails.

- **Package:** @224industries/webflow-ai-sdk
- **Author:** 224 Industries
- **Tags:** webflow, forms, email, resend, leads

## Environment Variables
- `WEBFLOW_API_KEY`
- `WEBFLOW_SITE_ID`
- `RESEND_API_KEY`
- `RESEND_EMAIL_DOMAIN`

## Installation
```bash
npm install @224industries/webflow-ai-sdk
```

## Usage
```typescript
import { LeadResponseAgent } from "@224industries/webflow-ai-sdk/agents";
import { anthropic } from "@ai-sdk/anthropic";

const agent = new LeadResponseAgent({
  model: anthropic("claude-sonnet-4-20250514"),
});

const { text } = await agent.generate({
  prompt: "Check my Webflow site for new form submissions and respond to any new leads using the New Lead template in Resend.",
});
```

## Links
- [Documentation](https://github.com/224-Industries/webflow-ai-sdk)
- [npm](https://www.npmjs.com/package/@224industries/webflow-ai-sdk)
- [GitHub](https://github.com/224-Industries/webflow-ai-sdk)

---
[Full Library Index](/library.md)