@vibe-forge/client 0.2.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/cli.cjs +6 -0
- package/index.html +27 -0
- package/package.json +42 -0
- package/src/App.tsx +174 -0
- package/src/api.ts +241 -0
- package/src/components/ArchiveView.scss +168 -0
- package/src/components/ArchiveView.tsx +299 -0
- package/src/components/AutomationView/AutomationView.scss +26 -0
- package/src/components/AutomationView/RuleFormPanel.scss +129 -0
- package/src/components/AutomationView/RuleFormPanel.tsx +257 -0
- package/src/components/AutomationView/RuleSidebar.scss +219 -0
- package/src/components/AutomationView/RuleSidebar.tsx +258 -0
- package/src/components/AutomationView/RunHistoryPanel.scss +286 -0
- package/src/components/AutomationView/RunHistoryPanel.tsx +320 -0
- package/src/components/AutomationView/TaskList.scss +128 -0
- package/src/components/AutomationView/TaskList.tsx +79 -0
- package/src/components/AutomationView/TriggerList.scss +153 -0
- package/src/components/AutomationView/TriggerList.tsx +217 -0
- package/src/components/AutomationView/index.tsx +228 -0
- package/src/components/AutomationView/types.ts +21 -0
- package/src/components/Chat.scss +89 -0
- package/src/components/Chat.tsx +92 -0
- package/src/components/ConfigView.scss +185 -0
- package/src/components/ConfigView.tsx +258 -0
- package/src/components/NavRail.scss +71 -0
- package/src/components/NavRail.tsx +188 -0
- package/src/components/Sidebar.scss +112 -0
- package/src/components/Sidebar.tsx +291 -0
- package/src/components/chat/ChatHeader.scss +401 -0
- package/src/components/chat/ChatHeader.tsx +342 -0
- package/src/components/chat/ChatHistoryView.tsx +122 -0
- package/src/components/chat/ChatSettingsView.tsx +22 -0
- package/src/components/chat/ChatTimelineView.scss +53 -0
- package/src/components/chat/ChatTimelineView.tsx +158 -0
- package/src/components/chat/CodeBlock.scss +87 -0
- package/src/components/chat/CodeBlock.tsx +179 -0
- package/src/components/chat/CompletionMenu.scss +70 -0
- package/src/components/chat/CompletionMenu.tsx +58 -0
- package/src/components/chat/CurrentTodoList.scss +217 -0
- package/src/components/chat/CurrentTodoList.tsx +103 -0
- package/src/components/chat/MarkdownContent.tsx +43 -0
- package/src/components/chat/MessageFooter.tsx +48 -0
- package/src/components/chat/MessageItem.scss +251 -0
- package/src/components/chat/MessageItem.tsx +78 -0
- package/src/components/chat/NewSessionGuide.scss +186 -0
- package/src/components/chat/NewSessionGuide.tsx +167 -0
- package/src/components/chat/Sender.scss +367 -0
- package/src/components/chat/Sender.tsx +541 -0
- package/src/components/chat/SessionTimelinePanel/EventList.scss +58 -0
- package/src/components/chat/SessionTimelinePanel/EventList.tsx +212 -0
- package/src/components/chat/SessionTimelinePanel/gantt.ts +177 -0
- package/src/components/chat/SessionTimelinePanel/git-graph.ts +518 -0
- package/src/components/chat/SessionTimelinePanel/index.scss +28 -0
- package/src/components/chat/SessionTimelinePanel/index.tsx +121 -0
- package/src/components/chat/SessionTimelinePanel/mermaid.ts +4 -0
- package/src/components/chat/SessionTimelinePanel/types.ts +64 -0
- package/src/components/chat/SessionTimelinePanel/utils.ts +20 -0
- package/src/components/chat/ThinkingStatus.scss +70 -0
- package/src/components/chat/ThinkingStatus.tsx +13 -0
- package/src/components/chat/ToolCallBox.scss +137 -0
- package/src/components/chat/ToolCallBox.tsx +55 -0
- package/src/components/chat/ToolGroup.scss +154 -0
- package/src/components/chat/ToolGroup.tsx +102 -0
- package/src/components/chat/ToolRenderer.tsx +45 -0
- package/src/components/chat/messageUtils.ts +171 -0
- package/src/components/chat/safeSerialize.ts +84 -0
- package/src/components/chat/tools/DefaultTool.tsx +63 -0
- package/src/components/chat/tools/adapter-claude/BashTool.scss +71 -0
- package/src/components/chat/tools/adapter-claude/BashTool.tsx +82 -0
- package/src/components/chat/tools/adapter-claude/GlobTool.scss +88 -0
- package/src/components/chat/tools/adapter-claude/GlobTool.tsx +85 -0
- package/src/components/chat/tools/adapter-claude/GrepTool.scss +96 -0
- package/src/components/chat/tools/adapter-claude/GrepTool.tsx +114 -0
- package/src/components/chat/tools/adapter-claude/LSTool.scss +85 -0
- package/src/components/chat/tools/adapter-claude/LSTool.tsx +94 -0
- package/src/components/chat/tools/adapter-claude/ReadTool.scss +57 -0
- package/src/components/chat/tools/adapter-claude/ReadTool.tsx +87 -0
- package/src/components/chat/tools/adapter-claude/TodoTool.scss +78 -0
- package/src/components/chat/tools/adapter-claude/TodoTool.tsx +60 -0
- package/src/components/chat/tools/adapter-claude/WriteTool.scss +92 -0
- package/src/components/chat/tools/adapter-claude/WriteTool.tsx +86 -0
- package/src/components/chat/tools/adapter-claude/components/FileList.scss +65 -0
- package/src/components/chat/tools/adapter-claude/components/FileList.tsx +185 -0
- package/src/components/chat/tools/adapter-claude/index.ts +28 -0
- package/src/components/chat/tools/defineToolRender.ts +28 -0
- package/src/components/chat/tools/task/GetTaskInfoTool.scss +50 -0
- package/src/components/chat/tools/task/GetTaskInfoTool.tsx +88 -0
- package/src/components/chat/tools/task/ListTasksTool.scss +56 -0
- package/src/components/chat/tools/task/ListTasksTool.tsx +83 -0
- package/src/components/chat/tools/task/StartTasksTool.scss +56 -0
- package/src/components/chat/tools/task/StartTasksTool.tsx +96 -0
- package/src/components/chat/tools/task/components/TaskToolCard.scss +127 -0
- package/src/components/chat/tools/task/components/TaskToolCard.tsx +177 -0
- package/src/components/chat/tools/task/index.ts +15 -0
- package/src/components/chat/useChatModels.tsx +206 -0
- package/src/components/chat/useChatSession.ts +370 -0
- package/src/components/config/ConfigAboutSection.scss +111 -0
- package/src/components/config/ConfigAboutSection.tsx +86 -0
- package/src/components/config/ConfigDisplayValue.scss +22 -0
- package/src/components/config/ConfigDisplayValue.tsx +62 -0
- package/src/components/config/ConfigEditors.scss +65 -0
- package/src/components/config/ConfigEditors.tsx +98 -0
- package/src/components/config/ConfigFieldRow.scss +97 -0
- package/src/components/config/ConfigFieldRow.tsx +36 -0
- package/src/components/config/ConfigSectionForm.scss +94 -0
- package/src/components/config/ConfigSectionForm.tsx +436 -0
- package/src/components/config/ConfigSectionPanel.tsx +67 -0
- package/src/components/config/ConfigShortcutInput.scss +11 -0
- package/src/components/config/ConfigShortcutInput.tsx +52 -0
- package/src/components/config/ConfigSourceSwitch.tsx +57 -0
- package/src/components/config/configSchema.ts +319 -0
- package/src/components/config/configUtils.ts +83 -0
- package/src/components/config/index.tsx +5 -0
- package/src/components/config/recordEditors/BooleanRecordEditor.scss +1 -0
- package/src/components/config/recordEditors/BooleanRecordEditor.tsx +75 -0
- package/src/components/config/recordEditors/KeyValueEditor.scss +1 -0
- package/src/components/config/recordEditors/KeyValueEditor.tsx +97 -0
- package/src/components/config/recordEditors/McpServersRecordEditor.scss +1 -0
- package/src/components/config/recordEditors/McpServersRecordEditor.tsx +258 -0
- package/src/components/config/recordEditors/ModelServicesRecordEditor.scss +1 -0
- package/src/components/config/recordEditors/ModelServicesRecordEditor.tsx +233 -0
- package/src/components/config/recordEditors/RecordEditors.scss +117 -0
- package/src/components/config/recordEditors/RecordJsonEditor.scss +1 -0
- package/src/components/config/recordEditors/RecordJsonEditor.tsx +113 -0
- package/src/components/config/recordEditors/index.tsx +5 -0
- package/src/components/knowledge-base/KnowledgeBaseView.scss +19 -0
- package/src/components/knowledge-base/KnowledgeBaseView.tsx +186 -0
- package/src/components/knowledge-base/components/ActionButton.scss +5 -0
- package/src/components/knowledge-base/components/ActionButton.tsx +9 -0
- package/src/components/knowledge-base/components/EmptyState.scss +19 -0
- package/src/components/knowledge-base/components/EmptyState.tsx +42 -0
- package/src/components/knowledge-base/components/EntitiesTab.scss +5 -0
- package/src/components/knowledge-base/components/EntitiesTab.tsx +80 -0
- package/src/components/knowledge-base/components/EntityItem.scss +82 -0
- package/src/components/knowledge-base/components/EntityItem.tsx +79 -0
- package/src/components/knowledge-base/components/EntityList.scss +5 -0
- package/src/components/knowledge-base/components/EntityList.tsx +70 -0
- package/src/components/knowledge-base/components/FilterBar.scss +21 -0
- package/src/components/knowledge-base/components/FilterBar.tsx +51 -0
- package/src/components/knowledge-base/components/FlowsTab.scss +5 -0
- package/src/components/knowledge-base/components/FlowsTab.tsx +80 -0
- package/src/components/knowledge-base/components/KnowledgeBaseHeader.scss +27 -0
- package/src/components/knowledge-base/components/KnowledgeBaseHeader.tsx +29 -0
- package/src/components/knowledge-base/components/KnowledgeList.scss +19 -0
- package/src/components/knowledge-base/components/KnowledgeList.tsx +19 -0
- package/src/components/knowledge-base/components/LoadingState.scss +5 -0
- package/src/components/knowledge-base/components/LoadingState.tsx +11 -0
- package/src/components/knowledge-base/components/MetaList.scss +19 -0
- package/src/components/knowledge-base/components/MetaList.tsx +18 -0
- package/src/components/knowledge-base/components/RulesTab.scss +5 -0
- package/src/components/knowledge-base/components/RulesTab.tsx +49 -0
- package/src/components/knowledge-base/components/SectionHeader.scss +22 -0
- package/src/components/knowledge-base/components/SectionHeader.tsx +21 -0
- package/src/components/knowledge-base/components/SkillsTab.scss +5 -0
- package/src/components/knowledge-base/components/SkillsTab.tsx +49 -0
- package/src/components/knowledge-base/components/SpecItem.scss +138 -0
- package/src/components/knowledge-base/components/SpecItem.tsx +131 -0
- package/src/components/knowledge-base/components/SpecList.scss +5 -0
- package/src/components/knowledge-base/components/SpecList.tsx +70 -0
- package/src/components/knowledge-base/components/TabContent.scss +8 -0
- package/src/components/knowledge-base/components/TabContent.tsx +17 -0
- package/src/components/knowledge-base/components/TabLabel.scss +10 -0
- package/src/components/knowledge-base/components/TabLabel.tsx +15 -0
- package/src/components/knowledge-base/index.tsx +1 -0
- package/src/components/sidebar/SessionItem.scss +256 -0
- package/src/components/sidebar/SessionItem.tsx +265 -0
- package/src/components/sidebar/SessionList.scss +92 -0
- package/src/components/sidebar/SessionList.tsx +166 -0
- package/src/components/sidebar/SidebarHeader.scss +79 -0
- package/src/components/sidebar/SidebarHeader.tsx +128 -0
- package/src/connectionManager.ts +172 -0
- package/src/hooks/useGlobalShortcut.ts +26 -0
- package/src/hooks/useQueryParams.ts +54 -0
- package/src/i18n.ts +22 -0
- package/src/main.tsx +41 -0
- package/src/resources/locales/en.json +765 -0
- package/src/resources/locales/zh.json +766 -0
- package/src/store/index.ts +23 -0
- package/src/styles/global.scss +100 -0
- package/src/utils/shortcutUtils.ts +88 -0
- package/src/vite-env.d.ts +12 -0
- package/src/ws.ts +33 -0
- package/vite.config.ts +26 -0
|
@@ -0,0 +1,765 @@
|
|
|
1
|
+
{
|
|
2
|
+
"common": {
|
|
3
|
+
"newChat": "New Chat",
|
|
4
|
+
"search": "Search title or ID...",
|
|
5
|
+
"sessions": "Sessions",
|
|
6
|
+
"knowledgeBase": "Knowledge Base",
|
|
7
|
+
"archive": "Archive",
|
|
8
|
+
"archivedSessions": "Archived Sessions",
|
|
9
|
+
"theme": "Theme Mode",
|
|
10
|
+
"themeLight": "Light",
|
|
11
|
+
"themeDark": "Dark",
|
|
12
|
+
"themeSystem": "System",
|
|
13
|
+
"settings": "Settings",
|
|
14
|
+
"language": "Language",
|
|
15
|
+
"automation": "Automation",
|
|
16
|
+
"delete": "Delete",
|
|
17
|
+
"deleteSession": "Delete Session",
|
|
18
|
+
"deleteSessionConfirm": "Are you sure you want to delete this session? This action cannot be undone.",
|
|
19
|
+
"restore": "Restore",
|
|
20
|
+
"restoreSuccess": "Restored successfully",
|
|
21
|
+
"restoreFailed": "Failed to restore",
|
|
22
|
+
"batchRestore": "Batch Restore",
|
|
23
|
+
"batchRestoreSuccess": "Batch restored successfully",
|
|
24
|
+
"batchRestoreFailed": "Failed to restore some sessions",
|
|
25
|
+
"cancel": "Cancel",
|
|
26
|
+
"confirm": "Confirm",
|
|
27
|
+
"startNewChat": "No active sessions found. Start a new chat!",
|
|
28
|
+
"backToHome": "Back to Home",
|
|
29
|
+
"noData": "No data",
|
|
30
|
+
"noSessions": "No matching sessions found",
|
|
31
|
+
"noArchivedSessions": "No archived sessions",
|
|
32
|
+
"sessionNotFound": "Session not found",
|
|
33
|
+
"expand": "Expand sidebar",
|
|
34
|
+
"dragResize": "Drag to resize",
|
|
35
|
+
"selectOrCreateSession": "Please select or create a session to start chatting",
|
|
36
|
+
"batchMode": "Batch Mode",
|
|
37
|
+
"cancelBatch": "Cancel Batch Mode",
|
|
38
|
+
"batchArchive": "Batch Archive",
|
|
39
|
+
"archiveConfirm": "Are you sure you want to archive the selected {{count}} chats?",
|
|
40
|
+
"alreadyInNewChat": "You are already in a new chat",
|
|
41
|
+
"creatingChat": "New Chat",
|
|
42
|
+
"batchDelete": "Batch Delete",
|
|
43
|
+
"batchDeleteSuccess": "Batch deleted successfully",
|
|
44
|
+
"batchDeleteFailed": "Failed to delete some sessions",
|
|
45
|
+
"selectedCount": "{{count}} sessions selected",
|
|
46
|
+
"collapse": "Collapse sidebar",
|
|
47
|
+
"expandChildren": "Expand children",
|
|
48
|
+
"collapseChildren": "Collapse children",
|
|
49
|
+
"childSummary": "{{count}} child sessions",
|
|
50
|
+
"childStatusItem": "{{count}} {{status}}",
|
|
51
|
+
"deleteConfirm": "Are you sure you want to delete the selected {{count}} chats?",
|
|
52
|
+
"deleteSuccess": "Deleted successfully",
|
|
53
|
+
"deleteFailed": "Failed to delete",
|
|
54
|
+
"star": "Star",
|
|
55
|
+
"unstar": "Unstar",
|
|
56
|
+
"addTag": "Tag",
|
|
57
|
+
"sessionIdCopied": "Session ID copied to clipboard",
|
|
58
|
+
"doubleClickToCopy": "Double click to copy Session ID",
|
|
59
|
+
"status": {
|
|
60
|
+
"running": "Running",
|
|
61
|
+
"completed": "Done",
|
|
62
|
+
"failed": "Failed",
|
|
63
|
+
"terminated": "Stopped",
|
|
64
|
+
"waiting_input": "Waiting"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"automation": {
|
|
68
|
+
"title": "Automation",
|
|
69
|
+
"newRule": "New Rule",
|
|
70
|
+
"creatingRule": "Creating",
|
|
71
|
+
"editRule": "Edit Rule",
|
|
72
|
+
"searchRule": "Search rules",
|
|
73
|
+
"favorite": "Favorite",
|
|
74
|
+
"unfavorite": "Unfavorite",
|
|
75
|
+
"toggleEnabled": "Enable/Disable",
|
|
76
|
+
"noDescription": "No description",
|
|
77
|
+
"runSearch": "Search runs",
|
|
78
|
+
"statusAll": "All statuses",
|
|
79
|
+
"timeAll": "All time",
|
|
80
|
+
"time24h": "Last 24 hours",
|
|
81
|
+
"time7d": "Last 7 days",
|
|
82
|
+
"time30d": "Last 30 days",
|
|
83
|
+
"sortDesc": "Newest first",
|
|
84
|
+
"sortAsc": "Oldest first",
|
|
85
|
+
"triggerCount": "{{count}} triggers",
|
|
86
|
+
"basicDesc": "Describe purpose and toggle the rule on or off",
|
|
87
|
+
"sectionBasic": "Basic Info",
|
|
88
|
+
"sectionTriggers": "Triggers",
|
|
89
|
+
"sectionTasks": "Tasks",
|
|
90
|
+
"ruleName": "Rule Name",
|
|
91
|
+
"ruleNameRequired": "Enter a rule name",
|
|
92
|
+
"ruleDescription": "Description",
|
|
93
|
+
"immediateRun": "Run Immediately",
|
|
94
|
+
"ruleType": "Trigger Type",
|
|
95
|
+
"ruleTypeRequired": "Select a trigger type",
|
|
96
|
+
"typeInterval": "Interval",
|
|
97
|
+
"typeWebhook": "Webhook",
|
|
98
|
+
"typeCron": "Cron",
|
|
99
|
+
"intervalMinutes": "Interval (minutes)",
|
|
100
|
+
"intervalRequired": "Enter an interval",
|
|
101
|
+
"webhookKey": "Webhook Key",
|
|
102
|
+
"webhookKeyHint": "Leave empty to auto-generate",
|
|
103
|
+
"cronExpressionLabel": "Cron Expression",
|
|
104
|
+
"cronExpressionRequired": "Enter a cron expression",
|
|
105
|
+
"cronExpressionHint": "Example: 0 9 * * 1",
|
|
106
|
+
"cronExpression": "Cron: {{expression}}",
|
|
107
|
+
"cronPreset": "Presets",
|
|
108
|
+
"cronPresetHint": "Choose a preset",
|
|
109
|
+
"cronPresetHourly": "Hourly",
|
|
110
|
+
"cronPresetDaily9": "Daily at 09:00",
|
|
111
|
+
"cronPresetWeekday9": "Weekdays at 09:00",
|
|
112
|
+
"cronPresetWeekend10": "Weekend at 10:00",
|
|
113
|
+
"cronInputHint": "Enter cron directly, or use weekly fields below to generate one",
|
|
114
|
+
"weeklyDay": "Weekly Day",
|
|
115
|
+
"weeklyTime": "Time (HH:mm)",
|
|
116
|
+
"weeklyTimeHint": "Example: 09:00",
|
|
117
|
+
"weekdaySun": "Sun",
|
|
118
|
+
"weekdayMon": "Mon",
|
|
119
|
+
"weekdayTue": "Tue",
|
|
120
|
+
"weekdayWed": "Wed",
|
|
121
|
+
"weekdayThu": "Thu",
|
|
122
|
+
"weekdayFri": "Fri",
|
|
123
|
+
"weekdaySat": "Sat",
|
|
124
|
+
"triggerAny": "Trigger when any condition matches",
|
|
125
|
+
"taskAll": "Run all tasks when triggered",
|
|
126
|
+
"addTrigger": "Add Trigger",
|
|
127
|
+
"addTask": "Add Task",
|
|
128
|
+
"remove": "Remove",
|
|
129
|
+
"taskDefaultTitle": "Task {{index}}",
|
|
130
|
+
"taskTitle": "Task Title",
|
|
131
|
+
"taskTitlePlaceholder": "Optional, for distinguishing tasks",
|
|
132
|
+
"taskIndex": "Task {{index}}",
|
|
133
|
+
"taskCount": "{{count}} tasks",
|
|
134
|
+
"taskUnknown": "Untitled Task",
|
|
135
|
+
"webhookUrl": "Webhook URL",
|
|
136
|
+
"prompt": "Task Prompt",
|
|
137
|
+
"promptRequired": "Enter the task prompt",
|
|
138
|
+
"trigger": "Trigger",
|
|
139
|
+
"webhookTrigger": "Webhook",
|
|
140
|
+
"intervalEvery": "Every {{minutes}} min",
|
|
141
|
+
"enabled": "Enabled",
|
|
142
|
+
"ruleStatus": "Rule Status",
|
|
143
|
+
"lastRunLabel": "Last Run",
|
|
144
|
+
"lastRun": "Last Run",
|
|
145
|
+
"lastRunAt": "Last run: {{time}}",
|
|
146
|
+
"noRunYet": "No runs yet",
|
|
147
|
+
"emptyRules": "No automation rules",
|
|
148
|
+
"selectRule": "Select an automation rule",
|
|
149
|
+
"ruleId": "Rule ID",
|
|
150
|
+
"createdAt": "Created At",
|
|
151
|
+
"enabledOn": "Enabled",
|
|
152
|
+
"enabledOff": "Disabled",
|
|
153
|
+
"noTriggers": "No triggers",
|
|
154
|
+
"noTasks": "No tasks",
|
|
155
|
+
"runHistory": "Run History",
|
|
156
|
+
"runTime": "Run Time",
|
|
157
|
+
"runStatus": "Status",
|
|
158
|
+
"runSummary": "Summary",
|
|
159
|
+
"session": "Session",
|
|
160
|
+
"relatedSession": "Related Session",
|
|
161
|
+
"openSession": "Open Session",
|
|
162
|
+
"noRuns": "No runs yet",
|
|
163
|
+
"actions": "Actions",
|
|
164
|
+
"run": "Run Now",
|
|
165
|
+
"edit": "Edit",
|
|
166
|
+
"delete": "Delete",
|
|
167
|
+
"copy": "Copy",
|
|
168
|
+
"webhookCopied": "Webhook copied",
|
|
169
|
+
"created": "Rule created",
|
|
170
|
+
"updated": "Rule updated",
|
|
171
|
+
"deleted": "Rule deleted",
|
|
172
|
+
"saveFailed": "Save failed",
|
|
173
|
+
"deleteFailed": "Delete failed",
|
|
174
|
+
"toggleFailed": "Update failed",
|
|
175
|
+
"runStarted": "Task started",
|
|
176
|
+
"runFailed": "Start failed"
|
|
177
|
+
},
|
|
178
|
+
"knowledge": {
|
|
179
|
+
"title": "Project Knowledge Base",
|
|
180
|
+
"subtitle": "Manage skills, entities, flows, and rules for this project",
|
|
181
|
+
"tabs": {
|
|
182
|
+
"skills": "Skills",
|
|
183
|
+
"entities": "Entities",
|
|
184
|
+
"flows": "Flows",
|
|
185
|
+
"rules": "Rules"
|
|
186
|
+
},
|
|
187
|
+
"actions": {
|
|
188
|
+
"refresh": "Refresh",
|
|
189
|
+
"refreshed": "Refreshed",
|
|
190
|
+
"import": "Import",
|
|
191
|
+
"expand": "Expand",
|
|
192
|
+
"collapse": "Collapse"
|
|
193
|
+
},
|
|
194
|
+
"filters": {
|
|
195
|
+
"search": "Search name, description, or params",
|
|
196
|
+
"tags": "Filter by tags",
|
|
197
|
+
"noResults": "No matching results"
|
|
198
|
+
},
|
|
199
|
+
"meta": {
|
|
200
|
+
"params": "{{count}} params",
|
|
201
|
+
"always": "Always",
|
|
202
|
+
"skills": "Skills",
|
|
203
|
+
"rules": "Rules",
|
|
204
|
+
"skillsCount": "Skills {{count}}",
|
|
205
|
+
"rulesCount": "Rules {{count}}"
|
|
206
|
+
},
|
|
207
|
+
"skills": {
|
|
208
|
+
"title": "Skill Library",
|
|
209
|
+
"desc": "Maintain reusable skill definitions and usage notes.",
|
|
210
|
+
"empty": "No skills found.",
|
|
211
|
+
"create": "Create Skill",
|
|
212
|
+
"createHint": "Create a skill file under .ai/skills, then refresh the page.",
|
|
213
|
+
"importHint": "Import skill files into .ai/skills, then refresh the page."
|
|
214
|
+
},
|
|
215
|
+
"entities": {
|
|
216
|
+
"title": "Entity Library",
|
|
217
|
+
"desc": "Manage roles, components, and domain entities for the project.",
|
|
218
|
+
"empty": "No entities found.",
|
|
219
|
+
"create": "Create Entity",
|
|
220
|
+
"createHint": "Create an entity definition under .ai/entities, then refresh the page.",
|
|
221
|
+
"importHint": "Import entity files into .ai/entities, then refresh the page."
|
|
222
|
+
},
|
|
223
|
+
"flows": {
|
|
224
|
+
"title": "Flow Library",
|
|
225
|
+
"desc": "Manage project flows and parameter definitions.",
|
|
226
|
+
"empty": "No flows found.",
|
|
227
|
+
"noContent": "No flow definition content",
|
|
228
|
+
"create": "Create Flow",
|
|
229
|
+
"createHint": "Create a flow file under .ai/specs, then refresh the page.",
|
|
230
|
+
"importHint": "Import flow files into .ai/specs, then refresh the page."
|
|
231
|
+
},
|
|
232
|
+
"rules": {
|
|
233
|
+
"title": "Rule Library",
|
|
234
|
+
"desc": "Maintain project conventions, constraints, and enforcement rules.",
|
|
235
|
+
"empty": "No rules found.",
|
|
236
|
+
"create": "Create Rule",
|
|
237
|
+
"createHint": "Create a rule file under .ai/rules, then refresh the page.",
|
|
238
|
+
"importHint": "Import rule files into .ai/rules, then refresh the page."
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"chat": {
|
|
242
|
+
"titleUpdated": "Title updated",
|
|
243
|
+
"titleUpdateFailed": "Failed to update title",
|
|
244
|
+
"clickToEditTitle": "Click to edit title",
|
|
245
|
+
"inputPlaceholder": "Type a message...",
|
|
246
|
+
"send": "Send",
|
|
247
|
+
"thinking": "Thinking...",
|
|
248
|
+
"stop": "Stop",
|
|
249
|
+
"result": "Result",
|
|
250
|
+
"sessionActive": "Session Active",
|
|
251
|
+
"selectModel": "Select a model to start",
|
|
252
|
+
"modelSelectPlaceholder": "Select model",
|
|
253
|
+
"modelSearchPlaceholder": "Search models or services",
|
|
254
|
+
"modelUnavailable": "No models available",
|
|
255
|
+
"modelConfigRequired": "Add a model service in config before starting a session",
|
|
256
|
+
"modelGroupRecommended": "Recommended Models",
|
|
257
|
+
"availableTools": "Available Tools",
|
|
258
|
+
"toolsCount": "{{count}} tools",
|
|
259
|
+
"usedTools": "Used {{count}} tools",
|
|
260
|
+
"viewInitInfo": "Double click to view initialization info",
|
|
261
|
+
"viewHistory": "History",
|
|
262
|
+
"viewTimeline": "Timeline",
|
|
263
|
+
"viewSettings": "Settings",
|
|
264
|
+
"deleteSessionTitle": "Delete session",
|
|
265
|
+
"deleteSessionDesc": "This will permanently remove the session and all messages. Proceed carefully.",
|
|
266
|
+
"timelineEmpty": "No events yet",
|
|
267
|
+
"timelineTask": "Task",
|
|
268
|
+
"timelineStatus": "Status",
|
|
269
|
+
"timelineTiming": "Timeline",
|
|
270
|
+
"timelineStart": "Start",
|
|
271
|
+
"timelineEventName": "Event",
|
|
272
|
+
"timelineInput": "Input",
|
|
273
|
+
"timelineOutput": "Output",
|
|
274
|
+
"timelineEmptyValue": "—",
|
|
275
|
+
"timeline": {
|
|
276
|
+
"mainTasks": "Main task",
|
|
277
|
+
"mainStart": "Conversation start",
|
|
278
|
+
"mainEnd": "Conversation end",
|
|
279
|
+
"startTasks": "Create tasks",
|
|
280
|
+
"askUserQuestion": "AskUserQuestion",
|
|
281
|
+
"edit": "Edit",
|
|
282
|
+
"resumeTask": "Resume task",
|
|
283
|
+
"userPrompt": "User prompt",
|
|
284
|
+
"merge": "Merge",
|
|
285
|
+
"merged": "Merged",
|
|
286
|
+
"donePrefix": "Done",
|
|
287
|
+
"taskStart": "Create task",
|
|
288
|
+
"taskEnd": "End",
|
|
289
|
+
"viewGit": "Git Graph",
|
|
290
|
+
"viewGantt": "Gantt",
|
|
291
|
+
"eventListTitle": "Event List",
|
|
292
|
+
"eventListSearch": "Search events",
|
|
293
|
+
"ganttTitle": "Task Timeline",
|
|
294
|
+
"ganttMainSection": "Main",
|
|
295
|
+
"ganttTasksSection": "Tasks",
|
|
296
|
+
"allTasksDone": "All tasks done",
|
|
297
|
+
"userAnswer": "User answer",
|
|
298
|
+
"receiveReply": "Reply received",
|
|
299
|
+
"destroyLabel": "Destroy {{name}} @ {{end}}",
|
|
300
|
+
"rangeLabel": "{{name}} ({{start}} → {{end}})"
|
|
301
|
+
},
|
|
302
|
+
"hint": "Press Enter to send, Shift + Enter for new line, type / @ # for completion",
|
|
303
|
+
"newSessionGuide": {
|
|
304
|
+
"loading": "Loading...",
|
|
305
|
+
"announcements": {
|
|
306
|
+
"title": "Announcements"
|
|
307
|
+
},
|
|
308
|
+
"specs": {
|
|
309
|
+
"title": "Existing Flows",
|
|
310
|
+
"params": "{{count}} params",
|
|
311
|
+
"empty": "No flows found. Add .ai/specs/*.md to show them here.",
|
|
312
|
+
"create": "Quick Create Flow",
|
|
313
|
+
"createToast": "Create a flow file under .ai/specs, then refresh the page."
|
|
314
|
+
},
|
|
315
|
+
"entities": {
|
|
316
|
+
"title": "Existing Entities",
|
|
317
|
+
"empty": "No entities found. Add them under .ai/entities to show here.",
|
|
318
|
+
"create": "Quick Create Entity",
|
|
319
|
+
"createToast": "Create an entity definition under .ai/entities, then refresh the page."
|
|
320
|
+
},
|
|
321
|
+
"help": {
|
|
322
|
+
"title": "Help",
|
|
323
|
+
"item1": "Flow files can include name/description/params for better discovery",
|
|
324
|
+
"item2": "Entities can be described with index.json or README.md",
|
|
325
|
+
"item3": "After creation, refresh the page to see them here",
|
|
326
|
+
"footer": "Add usage guidance to flow descriptions when needed"
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
"todo": {
|
|
330
|
+
"noTasks": "No tasks planned",
|
|
331
|
+
"progress": "Progress: {{completed}}/{{total}} completed"
|
|
332
|
+
},
|
|
333
|
+
"tools": {
|
|
334
|
+
"read": "Read File",
|
|
335
|
+
"write": "Write File",
|
|
336
|
+
"bash": "Bash",
|
|
337
|
+
"getTaskInfo": "Get Task Info",
|
|
338
|
+
"listTasks": "List Tasks",
|
|
339
|
+
"listTasksEmpty": "No tasks",
|
|
340
|
+
"startTasks": "Start Tasks",
|
|
341
|
+
"startTasksBackground": "Background",
|
|
342
|
+
"startTasksForeground": "Foreground",
|
|
343
|
+
"startTasksEmpty": "No tasks",
|
|
344
|
+
"startTasksStarted": "Started",
|
|
345
|
+
"startTasksFailed": "Failed",
|
|
346
|
+
"startTasksLogs": "Task Logs",
|
|
347
|
+
"task": "Task",
|
|
348
|
+
"taskExitCode": "Exit: {{code}}",
|
|
349
|
+
"writeSuccess": "Write Success",
|
|
350
|
+
"writeFailed": "Write Failed",
|
|
351
|
+
"todo": "Task Planning",
|
|
352
|
+
"call": "call",
|
|
353
|
+
"reading": "Reading file...",
|
|
354
|
+
"unknown": "Unknown tool"
|
|
355
|
+
},
|
|
356
|
+
"sessionSettings": "Session Settings",
|
|
357
|
+
"enterTitle": "Enter session title...",
|
|
358
|
+
"tags": "Tags",
|
|
359
|
+
"addTagPlaceholder": "Add tag and press Enter...",
|
|
360
|
+
"noTags": "No tags",
|
|
361
|
+
"title": "Title",
|
|
362
|
+
"newSessionPlaceholder": "Type a message to start a new chat..."
|
|
363
|
+
},
|
|
364
|
+
"config": {
|
|
365
|
+
"title": "System Configuration",
|
|
366
|
+
"readOnlyHint": "Configuration supports in-app editing and saves to json/yaml files.",
|
|
367
|
+
"loadFailed": "Failed to load configuration",
|
|
368
|
+
"editHint": "Changes are auto-saved to the selected source config file for project or user overrides.",
|
|
369
|
+
"maskHint": "Sensitive fields are masked. Keep ****** to preserve existing values.",
|
|
370
|
+
"invalidJson": "Invalid JSON. Fix the format before saving.",
|
|
371
|
+
"saveSuccess": "Configuration saved",
|
|
372
|
+
"saveFailed": "Failed to save configuration",
|
|
373
|
+
"copySuccess": "Configuration copied",
|
|
374
|
+
"copyFailed": "Copy failed",
|
|
375
|
+
"sources": {
|
|
376
|
+
"project": "Project",
|
|
377
|
+
"user": "User",
|
|
378
|
+
"projectMissing": "Project (Not created)",
|
|
379
|
+
"userMissing": "User (Not created)"
|
|
380
|
+
},
|
|
381
|
+
"actions": {
|
|
382
|
+
"edit": "Edit",
|
|
383
|
+
"save": "Save",
|
|
384
|
+
"cancel": "Cancel",
|
|
385
|
+
"format": "Format",
|
|
386
|
+
"copy": "Copy"
|
|
387
|
+
},
|
|
388
|
+
"editor": {
|
|
389
|
+
"addField": "Add Field",
|
|
390
|
+
"addItem": "Add Item",
|
|
391
|
+
"remove": "Remove",
|
|
392
|
+
"collapse": "Collapse",
|
|
393
|
+
"expand": "Expand",
|
|
394
|
+
"addAdapter": "Add Adapter",
|
|
395
|
+
"addPlugin": "Add Plugin",
|
|
396
|
+
"addMcpServer": "Add MCP Server",
|
|
397
|
+
"addModelService": "Add Model Service",
|
|
398
|
+
"addMarketplace": "Add Marketplace",
|
|
399
|
+
"addEnvVar": "Add Environment Variable",
|
|
400
|
+
"addHeader": "Add Header",
|
|
401
|
+
"addEntry": "Add Entry",
|
|
402
|
+
"shortcutPlaceholder": "Press shortcut",
|
|
403
|
+
"clearShortcut": "Clear shortcut",
|
|
404
|
+
"newModelServiceName": "New model service name",
|
|
405
|
+
"newAdapterName": "New adapter name",
|
|
406
|
+
"newPluginName": "New plugin name",
|
|
407
|
+
"newMcpServerName": "New MCP server name",
|
|
408
|
+
"newMarketplaceName": "New marketplace name",
|
|
409
|
+
"newEnvVarName": "New environment variable name",
|
|
410
|
+
"newHeaderName": "New header name",
|
|
411
|
+
"fieldKey": "Field Key",
|
|
412
|
+
"fieldValue": "Field Value",
|
|
413
|
+
"complexPlaceholder": "Use JSON for complex structures",
|
|
414
|
+
"secretPlaceholder": "Enter secret",
|
|
415
|
+
"itemPlaceholder": "Enter value",
|
|
416
|
+
"commandPlaceholder": "Enter command",
|
|
417
|
+
"urlPlaceholder": "Enter URL",
|
|
418
|
+
"multilinePlaceholder": "Enter content",
|
|
419
|
+
"defaultAdapterPlaceholder": "Select adapter",
|
|
420
|
+
"defaultModelServicePlaceholder": "Select model service",
|
|
421
|
+
"defaultModelPlaceholder": "Select model",
|
|
422
|
+
"titlePlaceholder": "Enter title",
|
|
423
|
+
"descriptionPlaceholder": "Enter description",
|
|
424
|
+
"complexValue": "Complex value",
|
|
425
|
+
"tagsPlaceholder": "Type and press Enter",
|
|
426
|
+
"types": {
|
|
427
|
+
"string": "Text",
|
|
428
|
+
"number": "Number",
|
|
429
|
+
"boolean": "Boolean",
|
|
430
|
+
"object": "Object",
|
|
431
|
+
"array": "Array"
|
|
432
|
+
}
|
|
433
|
+
},
|
|
434
|
+
"fields": {
|
|
435
|
+
"general": {
|
|
436
|
+
"baseDir": {
|
|
437
|
+
"label": "Workspace Folder",
|
|
438
|
+
"desc": "Default folder for configuration and cache files"
|
|
439
|
+
},
|
|
440
|
+
"defaultAdapter": {
|
|
441
|
+
"label": "Default Adapter",
|
|
442
|
+
"desc": "Adapter used when none is specified"
|
|
443
|
+
},
|
|
444
|
+
"defaultModelService": {
|
|
445
|
+
"label": "Default Model Service",
|
|
446
|
+
"desc": "Model service used when none is specified"
|
|
447
|
+
},
|
|
448
|
+
"defaultModel": {
|
|
449
|
+
"label": "Default Model",
|
|
450
|
+
"desc": "Model used when none is specified"
|
|
451
|
+
},
|
|
452
|
+
"recommendedModels": {
|
|
453
|
+
"label": "Recommended Models",
|
|
454
|
+
"desc": "Models shown in the recommended section of the selector"
|
|
455
|
+
},
|
|
456
|
+
"interfaceLanguage": {
|
|
457
|
+
"label": "Interface Language",
|
|
458
|
+
"desc": "Controls UI display and interaction language"
|
|
459
|
+
},
|
|
460
|
+
"modelLanguage": {
|
|
461
|
+
"label": "Model Language",
|
|
462
|
+
"desc": "Controls the assistant response language"
|
|
463
|
+
},
|
|
464
|
+
"announcements": {
|
|
465
|
+
"label": "Announcements",
|
|
466
|
+
"desc": "Shown when starting a new session"
|
|
467
|
+
},
|
|
468
|
+
"permissions": {
|
|
469
|
+
"label": "Permissions",
|
|
470
|
+
"desc": "Access policy for tools and resources",
|
|
471
|
+
"allow": {
|
|
472
|
+
"label": "Allow"
|
|
473
|
+
},
|
|
474
|
+
"deny": {
|
|
475
|
+
"label": "Deny"
|
|
476
|
+
},
|
|
477
|
+
"ask": {
|
|
478
|
+
"label": "Ask"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
"env": {
|
|
482
|
+
"label": "Environment",
|
|
483
|
+
"desc": "Overrides or additional environment variables"
|
|
484
|
+
},
|
|
485
|
+
"notifications": {
|
|
486
|
+
"label": "Notifications",
|
|
487
|
+
"desc": "Trigger notifications on session status updates",
|
|
488
|
+
"disabled": {
|
|
489
|
+
"label": "Disable Notifications",
|
|
490
|
+
"desc": "Disable to stop sending notifications"
|
|
491
|
+
},
|
|
492
|
+
"volume": {
|
|
493
|
+
"label": "Notification Volume",
|
|
494
|
+
"desc": "0-1 or 0-100, 0 means mute"
|
|
495
|
+
},
|
|
496
|
+
"events": {
|
|
497
|
+
"completed": {
|
|
498
|
+
"label": "Completion Notification",
|
|
499
|
+
"desc": "Triggered when a session completes",
|
|
500
|
+
"disabled": {
|
|
501
|
+
"label": "Disable Completion Notification",
|
|
502
|
+
"desc": "Disable to stop completion notifications"
|
|
503
|
+
},
|
|
504
|
+
"title": {
|
|
505
|
+
"label": "Completion Title",
|
|
506
|
+
"desc": "Leave empty to use the default title"
|
|
507
|
+
},
|
|
508
|
+
"description": {
|
|
509
|
+
"label": "Completion Message",
|
|
510
|
+
"desc": "Leave empty to use the default message"
|
|
511
|
+
},
|
|
512
|
+
"sound": {
|
|
513
|
+
"label": "Completion Sound",
|
|
514
|
+
"desc": "Audio file path, leave empty for default sound"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"failed": {
|
|
518
|
+
"label": "Failure Notification",
|
|
519
|
+
"desc": "Triggered when a session fails",
|
|
520
|
+
"disabled": {
|
|
521
|
+
"label": "Disable Failure Notification",
|
|
522
|
+
"desc": "Disable to stop failure notifications"
|
|
523
|
+
},
|
|
524
|
+
"title": {
|
|
525
|
+
"label": "Failure Title",
|
|
526
|
+
"desc": "Leave empty to use the default title"
|
|
527
|
+
},
|
|
528
|
+
"description": {
|
|
529
|
+
"label": "Failure Message",
|
|
530
|
+
"desc": "Leave empty to use the default message"
|
|
531
|
+
},
|
|
532
|
+
"sound": {
|
|
533
|
+
"label": "Failure Sound",
|
|
534
|
+
"desc": "Audio file path, leave empty for default sound"
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
"terminated": {
|
|
538
|
+
"label": "Termination Notification",
|
|
539
|
+
"desc": "Triggered when a session is terminated",
|
|
540
|
+
"disabled": {
|
|
541
|
+
"label": "Disable Termination Notification",
|
|
542
|
+
"desc": "Disable to stop termination notifications"
|
|
543
|
+
},
|
|
544
|
+
"title": {
|
|
545
|
+
"label": "Termination Title",
|
|
546
|
+
"desc": "Leave empty to use the default title"
|
|
547
|
+
},
|
|
548
|
+
"description": {
|
|
549
|
+
"label": "Termination Message",
|
|
550
|
+
"desc": "Leave empty to use the default message"
|
|
551
|
+
},
|
|
552
|
+
"sound": {
|
|
553
|
+
"label": "Termination Sound",
|
|
554
|
+
"desc": "Audio file path, leave empty for default sound"
|
|
555
|
+
}
|
|
556
|
+
},
|
|
557
|
+
"waiting_input": {
|
|
558
|
+
"label": "Waiting Input Notification",
|
|
559
|
+
"desc": "Triggered when a session waits for input",
|
|
560
|
+
"disabled": {
|
|
561
|
+
"label": "Disable Waiting Input Notification",
|
|
562
|
+
"desc": "Disable to stop waiting input notifications"
|
|
563
|
+
},
|
|
564
|
+
"title": {
|
|
565
|
+
"label": "Waiting Input Title",
|
|
566
|
+
"desc": "Leave empty to use the default title"
|
|
567
|
+
},
|
|
568
|
+
"description": {
|
|
569
|
+
"label": "Waiting Input Message",
|
|
570
|
+
"desc": "Leave empty to use the default message"
|
|
571
|
+
},
|
|
572
|
+
"sound": {
|
|
573
|
+
"label": "Waiting Input Sound",
|
|
574
|
+
"desc": "Audio file path, leave empty for default sound"
|
|
575
|
+
}
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
},
|
|
580
|
+
"conversation": {
|
|
581
|
+
"style": {
|
|
582
|
+
"label": "Conversation Style",
|
|
583
|
+
"desc": "Controls the assistant’s interaction style"
|
|
584
|
+
},
|
|
585
|
+
"customInstructions": {
|
|
586
|
+
"label": "Custom Instructions",
|
|
587
|
+
"desc": "Additional guidance for the assistant"
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"modelServices": {
|
|
591
|
+
"items": {
|
|
592
|
+
"label": "Service Entries",
|
|
593
|
+
"desc": "Flattened configuration by service name"
|
|
594
|
+
},
|
|
595
|
+
"item": {
|
|
596
|
+
"title": {
|
|
597
|
+
"label": "Display Title",
|
|
598
|
+
"desc": "Shown in the default model service dropdown"
|
|
599
|
+
},
|
|
600
|
+
"description": {
|
|
601
|
+
"label": "Display Description",
|
|
602
|
+
"desc": "Shown in the default model service dropdown"
|
|
603
|
+
},
|
|
604
|
+
"apiBaseUrl": {
|
|
605
|
+
"label": "API Base URL",
|
|
606
|
+
"desc": "Base URL for the model service API"
|
|
607
|
+
},
|
|
608
|
+
"apiKey": {
|
|
609
|
+
"label": "API Key",
|
|
610
|
+
"desc": "Access key for the model service"
|
|
611
|
+
},
|
|
612
|
+
"models": {
|
|
613
|
+
"label": "Models",
|
|
614
|
+
"desc": "Models supported by this service"
|
|
615
|
+
},
|
|
616
|
+
"modelsAlias": {
|
|
617
|
+
"label": "Model Aliases",
|
|
618
|
+
"desc": "Alias mapping for models"
|
|
619
|
+
},
|
|
620
|
+
"extra": {
|
|
621
|
+
"label": "Extra Settings",
|
|
622
|
+
"desc": "Additional configuration for the service"
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
},
|
|
626
|
+
"adapters": {
|
|
627
|
+
"items": {
|
|
628
|
+
"label": "Adapter Entries",
|
|
629
|
+
"desc": "Flattened configuration by adapter name"
|
|
630
|
+
}
|
|
631
|
+
},
|
|
632
|
+
"plugins": {
|
|
633
|
+
"items": {
|
|
634
|
+
"label": "Plugin Configuration",
|
|
635
|
+
"desc": "Flattened configuration by plugin name"
|
|
636
|
+
},
|
|
637
|
+
"enabled": {
|
|
638
|
+
"label": "Enabled Plugins",
|
|
639
|
+
"desc": "Enable or disable plugins"
|
|
640
|
+
},
|
|
641
|
+
"marketplaces": {
|
|
642
|
+
"label": "Extra Marketplaces",
|
|
643
|
+
"desc": "Additional plugin marketplace sources"
|
|
644
|
+
}
|
|
645
|
+
},
|
|
646
|
+
"mcp": {
|
|
647
|
+
"mcpServers": {
|
|
648
|
+
"label": "MCP Servers",
|
|
649
|
+
"desc": "Connection details for MCP servers"
|
|
650
|
+
},
|
|
651
|
+
"defaultIncludeMcpServers": {
|
|
652
|
+
"label": "Default Include",
|
|
653
|
+
"desc": "MCP servers enabled by default"
|
|
654
|
+
},
|
|
655
|
+
"defaultExcludeMcpServers": {
|
|
656
|
+
"label": "Default Exclude",
|
|
657
|
+
"desc": "MCP servers disabled by default"
|
|
658
|
+
},
|
|
659
|
+
"noDefaultVibeForgeMcpServer": {
|
|
660
|
+
"label": "Disable Built-in MCP",
|
|
661
|
+
"desc": "Do not enable the built-in VibeForge MCP server"
|
|
662
|
+
},
|
|
663
|
+
"items": {
|
|
664
|
+
"label": "Server Entries",
|
|
665
|
+
"desc": "Flattened configuration by server name"
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"mcpServer": {
|
|
669
|
+
"enabled": {
|
|
670
|
+
"label": "Enabled",
|
|
671
|
+
"desc": "Toggle MCP server availability"
|
|
672
|
+
},
|
|
673
|
+
"type": {
|
|
674
|
+
"label": "Connection Type",
|
|
675
|
+
"desc": "Choose how to connect to the server"
|
|
676
|
+
},
|
|
677
|
+
"command": {
|
|
678
|
+
"label": "Command",
|
|
679
|
+
"desc": "Local command launch"
|
|
680
|
+
},
|
|
681
|
+
"args": {
|
|
682
|
+
"label": "Arguments",
|
|
683
|
+
"desc": "Command arguments"
|
|
684
|
+
},
|
|
685
|
+
"url": {
|
|
686
|
+
"label": "Server URL",
|
|
687
|
+
"desc": "Remote MCP server address"
|
|
688
|
+
},
|
|
689
|
+
"headers": {
|
|
690
|
+
"label": "Headers",
|
|
691
|
+
"desc": "Headers included for the connection"
|
|
692
|
+
},
|
|
693
|
+
"env": {
|
|
694
|
+
"label": "Environment",
|
|
695
|
+
"desc": "Environment variables for the MCP server"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"shortcuts": {
|
|
699
|
+
"newSession": {
|
|
700
|
+
"label": "New Session",
|
|
701
|
+
"desc": "Global shortcut for creating a new session"
|
|
702
|
+
},
|
|
703
|
+
"openConfig": {
|
|
704
|
+
"label": "Open Config",
|
|
705
|
+
"desc": "Shortcut for opening the config view"
|
|
706
|
+
},
|
|
707
|
+
"sendMessage": {
|
|
708
|
+
"label": "Send Message",
|
|
709
|
+
"desc": "Shortcut for sending a message"
|
|
710
|
+
},
|
|
711
|
+
"clearInput": {
|
|
712
|
+
"label": "Clear Input",
|
|
713
|
+
"desc": "Shortcut for clearing the input"
|
|
714
|
+
}
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
"options": {
|
|
718
|
+
"language": {
|
|
719
|
+
"zh": "Chinese",
|
|
720
|
+
"en": "English"
|
|
721
|
+
},
|
|
722
|
+
"conversation": {
|
|
723
|
+
"friendly": "Friendly",
|
|
724
|
+
"programmatic": "Programmatic"
|
|
725
|
+
},
|
|
726
|
+
"mcp": {
|
|
727
|
+
"command": "Command",
|
|
728
|
+
"sse": "SSE",
|
|
729
|
+
"http": "HTTP"
|
|
730
|
+
}
|
|
731
|
+
},
|
|
732
|
+
"sectionGroups": {
|
|
733
|
+
"base": "Base Configuration",
|
|
734
|
+
"permissions": "Tool Permissions",
|
|
735
|
+
"env": "Environment Variables",
|
|
736
|
+
"items": "Entry Configuration",
|
|
737
|
+
"plugins": "Plugin Configuration"
|
|
738
|
+
},
|
|
739
|
+
"groups": {
|
|
740
|
+
"config": "Configuration",
|
|
741
|
+
"app": "Application"
|
|
742
|
+
},
|
|
743
|
+
"about": {
|
|
744
|
+
"software": "Software Info",
|
|
745
|
+
"version": "Version",
|
|
746
|
+
"lastRelease": "Last Release",
|
|
747
|
+
"checkUpdate": "Check Updates",
|
|
748
|
+
"docs": "Documentation",
|
|
749
|
+
"contact": "Contact Us",
|
|
750
|
+
"feedback": "Feedback",
|
|
751
|
+
"unknown": "Unknown"
|
|
752
|
+
},
|
|
753
|
+
"sections": {
|
|
754
|
+
"general": "General",
|
|
755
|
+
"conversation": "Conversation",
|
|
756
|
+
"modelServices": "Model Services",
|
|
757
|
+
"adapters": "Adapters",
|
|
758
|
+
"plugins": "Plugins",
|
|
759
|
+
"mcp": "MCP",
|
|
760
|
+
"shortcuts": "Shortcuts",
|
|
761
|
+
"experiments": "Experiments",
|
|
762
|
+
"about": "About"
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
}
|