From db216a5cc4e2910e203eadc99cf8fceb267b266b Mon Sep 17 00:00:00 2001 From: chiguyong Date: Sat, 13 Jun 2026 02:43:41 +0800 Subject: [PATCH] feat(gui): streamline evolution panel and group settings (U6) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - EvolutionView: simplify from 6 sub-panels to 3 tabs (概览+指标, 经验+坑点, 用量) - SettingsView: group into 4 tabs (LLM, 技能, 知识库, 系统), each with independent save - SkillsView: replace hardcoded colors with Design Tokens - All three views: replace hardcoded colors with Design Token references --- .../frontend/src/views/EvolutionView.vue | 113 ++----- .../frontend/src/views/SettingsView.vue | 277 +++++++++--------- .../server/frontend/src/views/SkillsView.vue | 80 ++++- 3 files changed, 242 insertions(+), 228 deletions(-) diff --git a/src/agentkit/server/frontend/src/views/EvolutionView.vue b/src/agentkit/server/frontend/src/views/EvolutionView.vue index e3d81c3..6965238 100644 --- a/src/agentkit/server/frontend/src/views/EvolutionView.vue +++ b/src/agentkit/server/frontend/src/views/EvolutionView.vue @@ -1,65 +1,32 @@