feat: add Accordion component for UI and Zustand store for coordinator management

- Implemented Accordion component using Radix UI for collapsible sections.
- Created Zustand store to manage coordinator execution state, command chains, logs, and interactive questions.
- Added validation tests for CLI settings type definitions, ensuring type safety and correct behavior of helper functions.
This commit is contained in:
catlog22
2026-02-03 10:02:40 +08:00
parent bcb4af3ba0
commit 5483a72e9f
82 changed files with 6156 additions and 7605 deletions

View File

@@ -6,10 +6,17 @@
"edit": "编辑",
"delete": "删除",
"copy": "复制",
"copySuccess": "已复制到剪贴板",
"copyError": "复制失败",
"refresh": "刷新",
"expand": "展开",
"collapse": "收起"
},
"tabs": {
"memories": "记忆",
"favorites": "收藏",
"archived": "归档"
},
"stats": {
"totalSize": "总大小",
"count": "数量",
@@ -43,7 +50,9 @@
"editTitle": "编辑记忆",
"labels": {
"content": "内容",
"tags": "标签"
"tags": "标签",
"favorite": "收藏",
"priority": "优先级"
},
"placeholders": {
"content": "输入记忆内容...",
@@ -57,6 +66,11 @@
"updating": "更新中..."
}
},
"priority": {
"low": "低",
"medium": "中",
"high": "高"
},
"types": {
"coreMemory": "核心记忆",
"workflow": "工作流",