- Repository Highlights
- Feature Comparison
- What is iloveAgents?
- Why iloveAgents?
- Available Agents
- Agent Categories
- Supported Providers
- Battle Mode
- AI Workflow Builder
- Scheduled Automations
- Quick Start
- Getting Started
- How It Works
- Project Structure Overview
- Contributing
- Tech Stack
- Frequently Asked Questions
- Community
- License
- Open-source and community-driven — built and run entirely by contributors
- Supports multiple AI providers — OpenAI, Anthropic, Google Gemini, and OpenRouter
- Battle Mode — compare model responses side by side
- Workflow Builder — chain multiple agents into a single automated run
- Scheduled Automations — run agents on recurring schedules (hourly/daily/weekly) with encrypted key storage & email alerts
- Browser-based & Privacy-focused — BYOK model with direct browser calls or opt-in server-side encryption
- Extensible architecture — add new agents easily
- Contributor-friendly — active community, easy to get started
A quick side-by-side look at the platform's core features:
| Feature | Purpose | Requires API Key | Requires Supabase | Supports Multiple Providers |
|---|---|---|---|---|
| Individual Agents | Run a single AI agent | ✅ | ❌ | ✅ |
| Battle Mode | Compare responses from multiple AI providers | ✅ | ❌ | ✅ |
| Workflow Builder | Chain multiple AI agents together | ✅ | ✅ | ✅ |
| Scheduled Automations | Run agents on recurring schedules with email alerts | ✅ | ✅ | ✅ |
iloveAgents is a clean, open source web platform where you can run AI agents directly in your browser.
No sign-up. No backend. No data collection. Just paste your API key and go.
Each agent is a focused tool that does one thing really well — summarize meeting notes, review code, generate SQL, write cold emails, and a lot more. The whole platform is config-driven, which means adding a new agent is as simple as adding one JavaScript object to a single file. No deep React knowledge needed.
- Your API key never leaves your browser. It goes directly to OpenAI, Anthropic, or Google. No middleman, no storage, no tracking.
- Zero setup. No
.envfiles, no backend, no database. Clone and run in under a minute. - Works with all major providers. OpenAI, Anthropic, and Google Gemini — switch between them at runtime.
- Built for contributors. Adding a new agent takes about 5 minutes and you don't need to know much React at all.
The complete list of agents has been moved to AGENTS.md for better organization and scalability.
The repository contains AI agents for a wide variety of real-world use cases. The table below highlights the major categories available, helping new users quickly discover the project's capabilities.
| Category | Description |
|---|---|
| 🛠️ Engineering | Code generation, debugging, API documentation, testing, DevOps, and software architecture |
| 📚 Education | Study planning, quizzes, flashcards, DSA explanations, and learning resources |
| 📈 Productivity | Meeting notes, email writing, planning, workflows, and personal productivity |
| 📢 Marketing | SEO, blog writing, LinkedIn posts, social media, and content creation |
| 💼 Sales & Business | Lead qualification, proposals, competitive analysis, outreach, and business planning |
| 🎨 Design | UI/UX support, color palettes, typography, image prompts, and creative assets |
| 🏥 Healthcare | Wellness planning, medical summaries, patient documentation, and healthcare assistance |
| 🔬 Research & Data | Research, data science, dataset analysis, and machine learning support |
| 🔐 Security | Cybersecurity analysis, phishing detection, password reviews, and threat intelligence |
| 🌐 Specialized Domains | HR, Finance, Legal, Real Estate, Gaming, Product, Web3, and many more |
Note: The repository currently contains 130+ AI agents spanning Engineering, Education, Marketing, Healthcare, Web3, Cybersecurity, and many other domains. For the complete list of agents and detailed descriptions, see AGENTS.md.
| Provider | Logo | Models | Get Your Key |
|---|---|---|---|
| OpenAI | GPT-4o, GPT-4o-mini | platform.openai.com | |
| Anthropic | Claude Opus, Claude Sonnet | console.anthropic.com | |
| Google Gemini | Gemini 2.5 Flash | aistudio.google.com |
You can switch providers on any agent at runtime from the dropdown. No restart needed.
Pit three AI providers against each other head-to-head.
- Pick any agent from the full registry
- Enter your input once — same prompt goes to all three
- GPT-4o vs Claude Sonnet vs Gemini Flash generate outputs simultaneously
- You pick the winner
Battle Mode has its own dark, dramatic UI with color-coded provider columns (gold for OpenAI, purple for Anthropic, blue for Gemini). Each provider loads independently — if one fails, the other two still work. Access it from the "Enter Battle Mode" button on the homepage or navigate directly to /battle.
Chain multiple agents together and automate your entire process in one run.
Workflows let you connect agents in sequence — the output of each agent automatically becomes the input for the next. Build once, run with any input.
- Build a workflow — pick up to 5 agents, arrange them in order, give the workflow a title
- Run it in one click — paste your input once, every step runs automatically in sequence
- Watch it execute — each step shows its own live status: waiting → running → done / failed
- Chain any agents — research → summarize → write LinkedIn post → done
- Community library — browse and run workflows shared by other users
- Real-time counters — usage counts update live as others run the same workflows
- Share workflows — one-click URL copy on any workflow detail page
Your Input
│
▼
┌─────────────┐
│ Agent 1 │ e.g. Research Agent
└──────┬──────┘
│ output
▼
┌─────────────┐
│ Agent 2 │ e.g. PDF Summarizer
└──────┬──────┘
│ output
▼
┌─────────────┐
│ Agent 3 │ e.g. LinkedIn Post Writer
└─────────────┘
│
Final Output
If any step fails, the workflow stops at that step and shows you exactly what went wrong — with a Retry button. On success, you can copy all outputs at once.
| Route | What it does |
|---|---|
/workflows |
Browse community workflow library |
/workflows/build |
Create and save a new workflow |
/workflows/:id |
View full details of a workflow |
/workflows/:id/run |
Run a workflow step-by-step |
Set your favorite AI agents on autopilot with recurring schedules, execution history, and email notifications.
Scheduled Automations allow you to schedule any agent in the registry to run automatically on a recurring interval. Results are captured in your run history and can optionally be emailed to you.
- Automated Scheduling — Select any agent, configure inputs once, and set a recurring schedule (
hourly,daily, orweekly). - Encrypted Key Storage (
pgsodium) — Your provider API key is stored encrypted using Supabase'spgsodiumencryption with explicit user opt-in consent. - Run History & Logs — Track execution status (
success,running,failed), review complete agent outputs, execution timestamps, and error diagnostics. - Email Notifications — Receive formatted execution reports and output results in your inbox via Resend.
- Pause, Resume, & Manage — Toggle automations on/off or delete them at any time.
┌────────────────────────────────┐
│ User Creates Schedule │ (Agent + Inputs + Schedule + Provider Key)
└───────────────┬────────────────┘
│ Key encrypted via pgsodium
▼
┌────────────────────────────────┐
│ Supabase Database │ (automations, automation_runs, user_secrets)
└───────────────▲────────────────┘
│
│ Triggered periodically
┌───────────────┴────────────────┐
│ Vercel Cron (/api/cron/tick) │
└───────────────┬────────────────┘
│
┌───────┴────────┐
▼ ▼
┌───────────────┐ ┌───────────────┐
│ LLM Execution │ │ Resend Email │
│ (runAgent) │ │ Notification │
└───────────────┘ └───────────────┘
- Explicit Opt-in Consent — Keys are only stored server-side when you explicitly opt-in for automated background runs. Standard interactive agent runs continue to keep keys entirely in your browser.
- Zero Plaintext Leakage — Keys are encrypted at rest with
pgsodiumand are never exposed over the client bundle or logged. - Row-Level Security (RLS) — Supabase RLS ensures only the authenticated owner can access their automations and logs.
| Route | What it does |
|---|---|
/automations |
List active automations and schedule a new agent run |
/automations/:id |
View execution history, status logs, and outputs for an automation |
Get the project running quickly with the following commands:
git clone https://github.com/AditthyaSS/iloveAgents.git
cd iloveAgents
npm install
npm run devFor complete setup instructions, environment variables, and troubleshooting, see the Getting Started section below.
- Node.js v18+
- npm or yarn
# Clone the repository
git clone https://github.com/AditthyaSS/iloveAgents.git
cd iloveAgents
# Install dependencies
npm install
# Start the dev server
npm run devOpen http://localhost:5173 in your browser.
No API provider keys are required in a .env file because
they are entered at runtime and never stored anywhere.
However, local development requires a .env.local file
for Supabase features like Workflows.
Create a .env.local file in the root directory:
VITE_SUPABASE_URL=your_supabase_url
VITE_SUPABASE_ANON_KEY=your_supabase_anon_keyNote: AI provider API keys are still entered at runtime and are never stored anywhere.
If you encounter connection errors, verify that the VITE_SUPABASE_URL in your .env.local file matches your Supabase project URL.
Make sure the VITE_SUPABASE_ANON_KEY is copied correctly from your Supabase project's API settings.
- Verify that your Supabase project is active.
- Confirm that both environment variables are present and correct.
- Ensure there are no extra spaces or quotation marks in
.env.local.
If you recently created or updated .env.local, restart the development server:
Stop the development server and start it again:
npm run devBefore opening an issue, verify that:
.env.localis in the project root.- Variable names start with
VITE_. - The values are copied correctly from your Supabase dashboard.
- Fork this repository
- Import to Vercel or any static host
- Deploy — zero configuration needed
The included vercel.json handles SPA routing automatically.
src/
├── agents/
│ ├── definitions/ # Each agent in its own file (auto-collected)
│ │ ├── pdf-summarizer.js
│ │ ├── code-reviewer.js
│ │ └── ... more agent definitions
│ ├── categories.js # CATEGORIES constant
│ └── registry.js # Auto-collects all definitions via import.meta.glob
├── components/
│ ├── AgentRunner.jsx # Generic agent execution UI
│ ├── AgentCard.jsx # Agent card for the homepage grid
│ ├── ApiKeyBar.jsx # Provider and API key input
│ ├── OutputRenderer.jsx # Renders markdown/text/JSON output
│ ├── ScorecardOutput.jsx # Visual scorecard for JSON output
│ ├── BattleNavbar.jsx # Battle Mode navigation bar
│ ├── Navbar.jsx # Top navigation
│ ├── Sidebar.jsx # Agent sidebar
│ └── ...
├── hooks/
│ └── useWorkflows.js # Workflow data operations (fetch, save, realtime)
├── lib/
│ ├── llmAdapter.js # Unified API adapter for all providers
│ ├── supabase.js # Realtime data client
│ └── useApiKey.js # API key state management
├── pages/
│ ├── HomePage.jsx # Landing page with agent grid
│ ├── AgentPage.jsx # Individual agent page
│ ├── WorkflowLibrary.jsx # 🆕 Public workflow library with live counters
│ ├── WorkflowBuilder.jsx # 🆕 Drag-and-drop agent chain builder
│ ├── WorkflowDetail.jsx # 🆕 Single workflow view with realtime stats
│ ├── WorkflowRunner.jsx # 🆕 Sequential agent execution engine
│ ├── BattleModeLanding.jsx # Battle Mode entry page
│ ├── BattleModeSetup.jsx # Battle configuration
│ ├── BattleModeArena.jsx # Three-column battle arena
│ └── BattleModeWinner.jsx # Winner announcement
└── main.jsx
- Registry — Each agent is its own file in
src/agents/definitions/. The registry auto-collects them viaimport.meta.glob— just drop a file in and it appears. - LLM Adapter — A single
runAgent()function inllmAdapter.jshandles all three providers through one unified interface. - Agent Runner —
AgentRunner.jsxbuilds the input form from the config, constructs the prompt, and renders the response. - Battle Mode —
BattleModeArena.jsxfires the same prompt to GPT-4o, Claude Sonnet, and Gemini Flash simultaneously and lets you pick the winner. - Workflow Builder —
WorkflowRunner.jsxchains agents sequentially using the samerunAgent()adapter — output of step N becomes input of step N+1, with per-step status cards and real-time usage counters. - No backend — Every API call goes directly from your browser to the provider. Nothing passes through our servers because there are no servers.
| Directory | Purpose |
|---|---|
src/agents/ |
AI agent definitions and registry |
src/components/ |
Reusable React components |
src/pages/ |
Application pages |
src/hooks/ |
Custom React hooks |
src/lib/ |
Shared utilities and API adapters |
src/assets/ |
Images, icons, and other bundled assets |
public/ |
Static files served directly by the app |
iloveAgents is built by the community. Every contribution matters — whether it is a new agent, a bug fix, a UI improvement, or just fixing a typo.
1. Create a new file in src/agents/definitions/ named your-agent-id.js:
export default {
id: 'your-agent-id',
name: 'Your Agent Name',
description: 'One-line description.',
category: 'Category',
icon: 'IconName', // from lucide.dev/icons
provider: 'any', // 'openai' | 'anthropic' | 'gemini' | 'any'
defaultProvider: 'openai',
model: 'gpt-4o',
inputs: [
{
id: 'field_id',
label: 'Field Label',
type: 'textarea', // text | textarea | code | select | multiselect
placeholder: 'Hint text...',
required: true,
},
],
systemPrompt: `Your system prompt here.`,
outputType: 'markdown', // markdown | text | json
}The registry auto-collects it — no need to edit registry.js.
2. Run npm run dev and test your agent with a real API key.
3. Open a PR. That is it!
See CONTRIBUTING.md for the full guide.
- 🐛 Fix a bug
- 🎨 Improve the UI or UX
- ♿ Improve accessibility
- 📝 Improve the docs
- 🧪 Add tests
| Technology | Purpose |
|---|---|
| React 18 | Component framework |
| Vite 6 | Build tool and dev server |
| Tailwind CSS 3 | Styling |
| React Router 6 | Client-side routing |
| Lucide React | Icons |
| react-markdown | Markdown rendering |
| react-syntax-highlighter | Code highlighting |
| Supabase | Database, Auth & Realtime for Workflows and Automations |
| pgsodium | Secure cryptographic encryption for automation keys |
| Resend | Email delivery for scheduled automation reports |
| Vercel Cron & Functions | Scheduled background execution & serverless endpoints |
No. Core agent execution, Battle Mode, and prompt tools run entirely in the browser without a backend. Backend services (Supabase & Vercel Functions) are only utilized for optional collaborative features (Workflows) and recurring jobs (Scheduled Automations).
You can create API keys from the official provider dashboards. Enter the keys directly in the application at runtime—they are never stored by the project for standard interactive runs.
For normal browser runs, keys never leave your device. When scheduling background automations, you are prompted with explicit consent to encrypt your key via Supabase pgsodium. Keys are encrypted at rest, never returned in plaintext in API responses, and only decrypted during scheduled cron executions.
Make sure .env.local is placed in the project root, uses the correct VITE_ variable names, and restart the development server after making changes.
No. Supabase is only required for Workflow-related functionality and Scheduled Automations. Basic agent execution works completely without it.
- Battle Mode: Compares responses from multiple AI providers side by side using the same prompt.
- Workflow Builder: Chains multiple AI agents together into a sequential pipeline where output passes to the next agent.
- Scheduled Automations: Runs any agent on a recurring schedule (hourly, daily, weekly) and logs results with optional email alerts.
Create a new agent definition inside src/agents/definitions/, test it locally with npm run dev, and submit a pull request following the contribution guidelines.
Use Node.js v18 or later, as listed in the project prerequisites.
See the CONTRIBUTING.md file for coding standards, pull request instructions, and contribution workflow.
- Support — stuck on something? Drop a comment on your issue and I will reply within 24 hours
- Hall of Fame — every person who has contributed to iloveAgents
- Maintainers — who runs this project
Thanks to all contributors ❤️
Licensed under the MIT License — use it, fork it, build on it.
Built with ❤️ by @AditthyaSS and the open source community
⭐ Star this repo if you find it useful — it helps others discover it!