feat: 将项目从nano重命名为beaver并更新相关配置

- 将所有环境变量前缀从NANO_改为BEAVER_
- 更新README.md文档内容,包括项目介绍、组件说明和快速开始指南
- 修改.gitignore文件,添加auth-portal运行时路径排除规则
- 更新app-instance镜像标签从nano/app-instance改为beaver/app-instance
- 增强技能安全检查器,支持工具前缀白名单功能
- 添加技能草稿重新检查安全性API端点
- 扩展证据选择器,收集工具调用名称用于技能学习
- 改进技能合成器,基于实际调用的工具生成工具提示
- 优化路由超时处理机制,增加重试逻辑
- 更新后端架构文档,添加可视化入口和基础概念说明
- 实现在WebSocket消息中传递工具迭代次数信息
This commit is contained in:
2026-05-20 18:01:06 +08:00
parent 3b0af173cc
commit 9d6cde2d23
63 changed files with 4894 additions and 1596 deletions

View File

@ -19,13 +19,13 @@
## 默认约定
- 容器名:`nano-router-proxy`
- Docker network`nano-instance-edge`
- 容器名:`beaver-router-proxy`
- Docker network`beaver-instance-edge`
- 对外端口:`8088`
建议直接参考:
- [`.env.example`](/home/ivan/xuan/nano_project/router-proxy/.env.example)
- [`.env.example`](/home/ivan/xuan/beaver_project/router-proxy/.env.example)
`REGISTRY_PATH``OUTPUT_PATH` 一般不需要配。
这两个是主机侧脚本路径,默认值会按 `start-proxy.sh` 自己所在目录推导,比写死某台机器上的绝对路径更稳。
@ -33,14 +33,14 @@
## 启动
```bash
cd /home/ivan/xuan/nano_project/router-proxy
cd /home/ivan/xuan/beaver_project/router-proxy
./start-proxy.sh
```
## 重载
```bash
cd /home/ivan/xuan/nano_project/router-proxy
cd /home/ivan/xuan/beaver_project/router-proxy
./reload-proxy.sh --start-if-missing
```