feat(agent): 初始化代理仓库并优化UI显示

- 添加默认agent.json配置文件,包含19个预定义代理角色及其简介
- 实现AgentRepo组件挂载时自动读取默认配置逻辑
- 优化任务模板中代理操作项的渲染样式和分割线显示
- 调整卡片悬停样式,去除阴影并添加背景色过渡动画
This commit is contained in:
zhaoweijie
2025-11-02 12:55:13 +08:00
parent 974af053ca
commit b73419b7a0
3 changed files with 125 additions and 17 deletions

View File

@@ -32,7 +32,9 @@ onMounted(() => {
border: 2px solid var(--color-bg-tertiary);
&:hover {
box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
background: #171b22;
box-shadow: none !important;
transition: background-color 0.3s ease-in-out;
}
.el-card__body {