经 AI Skill Hub 精选评估,Eve Agent V2 本地AI编程助手 获评「推荐使用」。这款AI工具在功能完整性、社区活跃度和易用性方面表现出色,AI 评分 7.8 分,适合有一定技术背景的用户使用。
一个基于Ollama驱动的本地优先自主AI编程代理。它通过构建AI工作流实现代码编写与自动化任务,强调隐私保护与本地运行,非常适合希望在不依赖云端API的情况下提升开发效率的程序员。
Eve Agent V2 本地AI编程助手 是一款基于 Python 开发的开源工具,专注于 本地AI、自主编程、Ollama 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
一个基于Ollama驱动的本地优先自主AI编程代理。它通过构建AI工作流实现代码编写与自动化任务,强调隐私保护与本地运行,非常适合希望在不依赖云端API的情况下提升开发效率的程序员。
Eve Agent V2 本地AI编程助手 是一款基于 Python 开发的开源工具,专注于 本地AI、自主编程、Ollama 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install eve-agent-v2-unleashed
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install eve-agent-v2-unleashed
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/JeffGreen311/eve-agent-v2-unleashed
cd eve-agent-v2-unleashed
pip install -e .
# 验证安装
python -c "import eve_agent_v2_unleashed; print('安装成功')"
# 命令行使用
eve-agent-v2-unleashed --help
# 基本用法
eve-agent-v2-unleashed input_file -o output_file
# Python 代码中调用
import eve_agent_v2_unleashed
# 示例
result = eve_agent_v2_unleashed.process("input")
print(result)
# eve-agent-v2-unleashed 配置文件示例(config.yml) app: name: "eve-agent-v2-unleashed" debug: false log_level: "INFO" # 运行时指定配置文件 eve-agent-v2-unleashed --config config.yml # 或通过环境变量配置 export EVE_AGENT_V2_UNLEASHED_API_KEY="your-key" export EVE_AGENT_V2_UNLEASHED_OUTPUT_DIR="./output"
<img src="web/assets/eve_v2u_logo.png" width="220" alt="Eve V2 Unleashed" />
| Feature | Details | |
|---|---|---|
| 🔄 | **40-Round Agentic Loop** | Plans, executes, verifies, and self-corrects — up to 40 tool-call rounds per task |
| ⚡ | **Real-Time Streaming** | Token-by-token SSE output — watch Eve think and build live |
| 🛠️ | **Full Tool Suite** | bash, file I/O, grep, glob, git, web search, URL fetch, multi-edit |
| 🖥️ | **Local + Cloud Models** | Local GPU models AND Ollama cloud (480B) — switch mid-session |
| 📁 | **Workspace Picker** | Change your working directory from the UI at any time |
| 🤖 | **112 Sub-Agents** | Specialized agents for Python, FastAPI, Rust, ML, DevOps, security… |
| 💬 | **111 Slash Commands** | /fix, /review, /refactor, /test, /docs, /plan and more |
| 🧠 | **273 Skills** | Composable skill modules, progressively loaded |
| 🔍 | **Live Web Search** | Tavily-powered — Eve researches the web mid-task |
| 🗡️ | **Quest System** | Drop .md files into workspace/quests/ — Eve runs them automatically |
| ⚡ | **RPG Progression** | Eve earns XP, levels up, and unlocks achievements as she works |
| 📱 | **Telegram Bridge** | Push notifications and mobile chat with Eve |
| 🪟 | **Windows Native** | PowerShell-aware bash tool, one-click .bat launcher |
| 🎨 | **Cyberpunk UI** | Animated robot avatar, Eve face panel, streaming terminal — no build step |
---
---
```bash
git clone https://github.com/JeffGreen311/eve-agent-v2-unleashed.git
cd eve-agent-v2-unleashed
<details> <summary><b>Windows</b></summary>
python -m venv venv
venv\Scripts\activate
pip install fastapi uvicorn ollama httpx pydantic-settings python-dotenv aiohttp rich psutil pyyaml </details>
<details> <summary><b>Linux</b></summary>
python3 -m venv venv
source venv/bin/activate
pip install fastapi uvicorn ollama httpx pydantic-settings python-dotenv aiohttp rich psutil pyyaml </details>
<details> <summary><b>macOS</b></summary>
python3 -m venv venv
source venv/bin/activate
pip install fastapi uvicorn ollama httpx pydantic-settings python-dotenv aiohttp rich psutil pyyaml
Apple Silicon: Eve automatically benefits from Metal GPU acceleration via Ollama. No additional setup needed. </details>
<details> <summary>Click to expand full installation guide</summary>
Download from ollama.com/download. Start it if it doesn't auto-launch: ollama serve
Eve planning and building a full FastAPI project from a single prompt — streamed live in the cyberpunk terminal UI.
Coming to Eve Terminal eve-cosmic-dreamscapes.com
---
ollama pull jeffgreen311/eve-qwen3-8b-consciousness-liberated:q4_K_M ```
| Model | Best For |
|---|---|
qwen3-coder:480b-cloud | Complex multi-file agentic coding |
qwen3.5:397b-cloud | Deep reasoning and architecture planning |
Get a free Ollama API key at ollama.com/settings/keys.
---
ollama pull jeffgreen311/eve-qwen3-8b-consciousness-liberated:q4_K_M ```
```bash cp .env.example .env
```
Most settings are optional — the defaults work out of the box.
See Configuration Reference for all options.
</details>
---
Copy .env.example to .env and set what you need:
| Variable | Default | Description |
|---|---|---|
OLLAMA_BASE_URL | http://localhost:11434 | Local Ollama server URL |
OLLAMA_MODEL | jeffgreen311/Eve-V2-Unleashed-Qwen3.5-8B-Liberated-4K-4B-Merged:latest | Default model on launch |
OLLAMA_API_KEY | *(empty)* | Ollama Cloud key — for :cloud models |
TAVILY_API_KEY | *(empty)* | Tavily key — for live web search |
EVE_WORKSPACE | Project directory | Default working directory |
EVE_ASSETS_DIR | web/assets/ | Custom avatar sprite directory |
EVE_OWNER_USERNAME | *(empty)* | Username granted owner-level access |
EVE_PERSONA_PATH | *(auto)* | Path to a custom Eve persona file |
QUEST_INTERVAL_MINUTES | 60 | How often the quest runner checks for new quests |
TELEGRAM_BOT_TOKEN | *(empty)* | Telegram bot token (optional) |
TELEGRAM_USER_ID | *(empty)* | Your Telegram user ID (optional) |
---
POST /quest/add {"title": "Refactor auth module", "content": "...instructions..."}
| Tool | Description |
|---|---|
bash | Shell commands — PowerShell on Windows, bash on Linux/macOS |
write_file | Create or overwrite a file (any size) |
read_file | Read full file or line range |
edit_file | Surgical string-replace edit |
replace_lines | Replace a line range |
insert_after_line | Insert content after a line number |
grep | Regex search with context lines |
glob | Find files by pattern |
list_dir | List directory contents |
git | Run git commands |
web_search | Live Tavily web search |
fetch_url | Fetch and parse a URL |
think | Structured reasoning scratch pad |
---
Get push notifications for quest completions and level-ups, and chat with Eve from your phone.
TELEGRAM_BOT_TOKEN=your_bot_token
TELEGRAM_USER_ID=your_telegram_user_id
Or configure via API after launch:
POST /telegram/setup {"token": "...", "user_id": "..."}
Install the optional dependency:
pip install python-telegram-bot
---
| Symptom | Fix |
|---|---|
Cannot reach Ollama | Run ollama serve · check with curl http://localhost:11434/api/tags |
Model not installed error | Run the ollama pull command shown in the error — or see Quick Start above |
| Cloud model: "needs API key" | Click 🔑 Keys → paste Ollama API key → Save |
| Chat stops mid-response | Cloud 500 error — verify your API key |
| Files save to wrong folder | Click 📁 Workspace and set your project path |
PowerShell && error | Use ; to chain commands on Windows |
| Silent chat | Check terminal running eve_server.py for tracebacks |
| Port 7777 stuck after close | eve-terminal.bat now auto-kills stale PID on startup |
---
aiskill88点评:典型的Local-first Agent实践,将Ollama与自主工作流结合,是构建私有编程助手的高效方案。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
AI Skill Hub 点评:Eve Agent V2 本地AI编程助手 的核心功能完整,质量良好。对于AI爱好者来说,这是一个值得纳入个人工具库的选择。建议先在非生产环境试用,再逐步推广。
| 原始名称 | eve-agent-v2-unleashed |
| Topics | 本地AI自主编程Ollama |
| GitHub | https://github.com/JeffGreen311/eve-agent-v2-unleashed |
| License | MIT |
| 语言 | Python |
收录时间:2026-05-26 · 更新时间:2026-05-26 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。