log-center/repair_agent
zyc 625e53dc44
All checks were successful
Build and Deploy Log Center / build-and-deploy (push) Successful in 2m16s
feat(project-mgmt): 项目管理 + 失败原因追踪 + 前端展示
- 新增 Project 模型(repo_url, local_path, name, description)
- 项目 CRUD API(GET/PUT /api/v1/projects)
- 日志上报自动 upsert Project 记录
- ErrorLog 增加 failure_reason 字段
- update_task_status / create_repair_report 写入失败原因
- Repair Agent 优先从 API 获取项目配置,回退 .env
- 新增 Web 端「项目管理」页面(表格 + 行内编辑)
- BugList/BugDetail/RepairList 展示失败原因
- 更新接入指南文档

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 11:18:27 +08:00
..
2026-02-12 10:42:39 +08:00
2026-02-13 14:04:21 +08:00
2026-01-30 14:52:21 +08:00
2026-02-12 10:42:39 +08:00
2026-02-12 13:23:59 +08:00
2026-01-30 14:52:21 +08:00
2026-01-30 14:52:21 +08:00

Repair Agent - 自动化 Bug 修复代理

本地运行的自动化 Bug 修复工具,从 Log Center 获取 Bug使用 Claude Code CLI 进行修复。

安装

cd log_center/repair_agent
pip install -r requirements.txt

配置

复制 .env.example.env 并配置:

cp .env.example .env

使用

# 查看待修复的 Bug
python -m repair_agent list

# 修复指定项目的所有 Bug
python -m repair_agent fix rtc_backend

# 修复单个 Bug
python -m repair_agent fix-one <bug_id>

# 查看状态
python -m repair_agent status

架构

repair_agent/
├── agent/
│   ├── core.py           # 核心引擎
│   ├── task_manager.py   # Log Center 交互
│   ├── git_manager.py    # Git 操作
│   ├── claude_service.py # Claude CLI 调用
│   └── test_runner.py    # 测试执行
├── config/
│   └── settings.py       # 配置管理
├── models/
│   └── bug.py            # 数据模型
└── __main__.py           # CLI 入口