deepagents-open-lovable

作者 emanueleielo已验证

An open-source AI-powered frontend development platform built on DeepAgents and LangGraph. Generate complete React applications through natural language conversations.

109
Stars
25
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/emanueleielo/deepagents-open-lovable

快速入门

使用 deepagents-open-lovable 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

DeepAgents Open Lovable

An open-source AI-powered frontend development platform built on DeepAgents and LangGraph. Generate complete React applications through natural language conversations.

Overview

This platform enables you to build frontend applications by simply describing what you want. The AI agent understands modern web development best practices and generates production-ready code using React, Next.js, Tailwind CSS, and shadcn/ui.

Key Features

  • Conversational UI Development - Describe your app in plain English and watch it come to life
  • Live Preview - See your application render in real-time as the agent writes code
  • File System Management - Browse, edit, and manage generated files through an intuitive interface
  • Sub-Agent Architecture - Specialized agents for design and image research work alongside the main agent
  • Vercel Deploy - One-click deployment to Vercel for instant preview URLs

Screenshots

Starting a New Project

Starting a chat with a prompt

Begin by describing your application in natural language. The agent understands your requirements and starts planning the implementation.

Live Development in Progress

CodeCraft website in development

Watch as the agent works on your project. This example shows the "CodeCraft" website being built with real-time task tracking and progress updates.

Sub-Agent Architecture in Action

Designer sub-agent at work

Specialized sub-agents handle specific tasks. Here, the designer sub-agent is creating files while you can see the filesystem structure being built in real-time.

Final Result

CodeCraft website final result

The completed application preview. From concept to working website through simple conversation.

Architecture

deepagents-open-lovable/
├── agent/                    # Python backend (LangGraph)
│   ├── src/
│   │   ├── agent.py         # Main agent configuration
│   │   ├── prompts.py       # System prompts
│   │   ├── tools.py         # Custom tools
│   │   ├── subagents.py     # Designer & image researcher
│   │   └── skills/          # Skill definitions
│   └── langgraph.json       # LangGraph configuration
└── gui/                      # React/Vite frontend
    └── src/
        ├── components/      # UI components
        ├── hooks/           # Custom React hooks
        ├── pages/           # Route components
        └── api/             # Backend API client

Quick Start

Prerequisites

  • Python 3.11+
  • Node.js 18+
  • An Anthropic API key

1. Clone the Repository

git clone https://github.com/emanueleielo/deepagents-open-lovable.git
cd deepagents-open-lovable

2. Set Up the Agent (Backend)

cd agent

# Create and activate virtual environment
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt

# Configure environment
cp .env.example .env
# Edit .env and add your ANTHROPIC_API_KEY

3. Set Up the GUI (Frontend)

cd ../gui

# Install dependencies
npm install

# Configure environment (optional)
cp gui.example .env

4. Start the Development Servers

Terminal 1 - Backend:

cd agent
langgraph dev
# Runs at http://localhost:2024

Terminal 2 - Frontend:

cd gui
npm run dev
# Runs at http://localhost:5173

Open your browser to http://localhost:5173 and start building!

Configuration

Agent Environment Variables

VariableRequiredDescription
ANTHROPIC_API_KEYYesYour Anthropic API key
MODELNoModel to use (default: anthropic:claude-sonnet-4-5-20250929)
TAVILY_API_KEYNoTavily API key for web search

GUI Environment Variables

VariableRequiredDescription
VITE_API_URLNoLangGraph API URL (default: http://localhost:2024)
VERCEL_API_TOKENNoVercel token for preview deployments

Tech Stack

Backend:

  • Python 3.11+
  • DeepAgents - AI agent framework
  • LangGraph - Stateful agent orchestration
  • LangChain - LLM tooling
  • Claude (Anthropic) - Language model

Frontend:

  • React 18 + TypeScript
  • Vite - Build tool
  • Tailwind CSS - Styling
  • Sandpack - Live code preview
  • react-router-dom - Routing

Development

Adding Custom Tools

Create new tools in agent/src/tools.py:

from langchain_core.tools import tool

@tool
def my_custom_tool(param: str) -> str:
    """Tool description for the agent."""
    return f"Result: {param}"

Adding Sub-Agents

Define sub-agents in agent/src/subagents.py:

subagents = [
    {
        "name": "my-agent",
        "description": "What this agent does",
        "prompt": "System prompt for the agent",
    }
]

Adding Skills

Create skill files in agent/src/skills/<skill-name>/SKILL.md:

# Skill Name

Description of what this skill does.

## Instructions

Step-by-step instructions for the agent.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is open source. See the individual components for their respective licenses.

Acknowledgments

常见问题

What is deepagents-open-lovable?

deepagents-open-lovable is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by emanueleielo. An open-source AI-powered frontend development platform built on DeepAgents and LangGraph. Generate complete React applications through natural language conversations. It has 109 GitHub stars.

Is deepagents-open-lovable safe to use?

Yes. deepagents-open-lovable passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install deepagents-open-lovable?

Clone the repository with "git clone https://github.com/emanueleielo/deepagents-open-lovable" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is deepagents-open-lovable written in?

deepagents-open-lovable is primarily written in TypeScript. It is open-source under emanueleielo on GitHub, so you can review or fork the full source.

Are there alternatives to deepagents-open-lovable?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh deepagents-open-lovable against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情