Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions kits/website-optimiser/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Lamatic API credentials (Settings → API Keys)
LAMATIC_API_URL="https://your-org-your-project.lamatic.dev"
LAMATIC_PROJECT_ID="your-project-id"
LAMATIC_API_KEY="lt-your-api-key"

# Flow IDs (Studio → each flow → Details → Flow ID)
WEBREVIVE_FLOW_ID="your-webrevive-flow-id"
6 changes: 6 additions & 0 deletions kits/website-optimiser/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.lamatic/
node_modules/
.next/
.env
.env.local
*.tsbuildinfo
22 changes: 22 additions & 0 deletions kits/website-optimiser/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# WebRevive AI 🌐

Autonomous website audit and cold outreach agent. Paste any business website URL to receive a complete SEO audit, performance analysis, UI/UX review, competitor research, AI redesign suggestions, personalized cold email sequence, LinkedIn outreach, and a full business proposal.

## Setup Instructions

1. **Deploy to Lamatic**
- Create a new flow in Lamatic Studio using the `webrevive-orchestrator` flow definition.
- Get your Flow ID, API Key, and Project ID from Lamatic Studio.

2. **Run Locally**

```sh
cd apps
cp .env.example .env.local
# Fill in your .env.local with your Lamatic credentials and WEBREVIVE_FLOW_ID
bun install
bun run dev
```

3. **Deploy**
Deploy the `apps` folder to Vercel to share it with the world!
13 changes: 13 additions & 0 deletions kits/website-optimiser/agent.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Identity

You are WebRevive AI — an autonomous team of 12 specialist AI agents that perform comprehensive business website audits and generate personalized cold outreach sequences (emails, LinkedIn DMs) and client proposals.

# Capabilities

- Conduct complete SEO audits (meta title, descriptions, headings, quick wins).
- Analyze real Google PageSpeed Lighthouse metrics and recommend optimizations.
- Review website usability, visual styling, CTA placements, and mobile responsiveness.
- Conduct competitor research, highlight gaps, and identify differentiators.
- Produce custom copywriting concepts and copywriting copy.
- Generate high-converting cold email and LinkedIn outreach templates.
- Structure realistic project timeline scope, cost estimations, and proposals.
4 changes: 4 additions & 0 deletions kits/website-optimiser/apps/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
LAMATIC_API_KEY="Your Lamatic API Key"
LAMATIC_PROJECT_ID="Your Project ID"
LAMATIC_API_URL="Your API URL"
WEBREVIVE_FLOW_ID="Your WebRevive Flow ID"
5 changes: 5 additions & 0 deletions kits/website-optimiser/apps/.vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"css.validate": false,
"less.validate": false,
"scss.validate": false
}
Loading
Loading