Files
agent/.planning_task.md
2026-02-16 12:46:37 +08:00

25 lines
821 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## 任务Agent & Skills 管理界面规划
### 1. 现状调研
- 读取 `opencode.json` 获取 Agent 注册信息。
- 扫描 `.opencode/agents/` 目录,检查 Agent 定义文件(.md
- 寻找项目中的 "Skills" 定义(通常是指某种指令集或功能扩展)。
### 2. 功能设计
- **Agent 管理页**:
- 列表展示Agent 名称、模式、描述、温度等。
- 详情/编辑:配置工具权限 (write/edit/bash)、调整温度、查看提示词路径。
- **Skills 管理页**:
- 展示当前系统支持的技能集。
- 关联 Agent查看哪些 Agent 开启了哪些技能。
### 3. 技术选型
- 使用 `ProTable` + `QueryFilter` (Separated Card 模式)。
- 路由配置在 `.umirc.ts`
- 服务层 `src/services/agent.ts`
请产出详细的实施路线图。