@geminilight/mindos 0.6.28 → 0.6.30
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/README.md +10 -4
- package/app/app/api/a2a/agents/route.ts +9 -0
- package/app/app/api/a2a/delegations/route.ts +9 -0
- package/app/app/api/a2a/discover/route.ts +2 -0
- package/app/app/api/a2a/route.ts +6 -6
- package/app/app/api/acp/config/route.ts +82 -0
- package/app/app/api/acp/detect/route.ts +114 -0
- package/app/app/api/acp/install/route.ts +51 -0
- package/app/app/api/acp/registry/route.ts +31 -0
- package/app/app/api/acp/session/route.ts +185 -0
- package/app/app/api/ask/route.ts +116 -13
- package/app/app/api/workflows/route.ts +156 -0
- package/app/app/layout.tsx +2 -0
- package/app/app/page.tsx +7 -2
- package/app/components/ActivityBar.tsx +12 -4
- package/app/components/AskModal.tsx +4 -1
- package/app/components/DirView.tsx +64 -2
- package/app/components/FileTree.tsx +40 -10
- package/app/components/GuideCard.tsx +7 -17
- package/app/components/HomeContent.tsx +1 -0
- package/app/components/MarkdownView.tsx +2 -0
- package/app/components/Panel.tsx +1 -0
- package/app/components/RightAskPanel.tsx +5 -1
- package/app/components/SearchModal.tsx +234 -80
- package/app/components/SidebarLayout.tsx +6 -0
- package/app/components/agents/AgentDetailContent.tsx +266 -52
- package/app/components/agents/AgentsContentPage.tsx +32 -6
- package/app/components/agents/AgentsPanelA2aTab.tsx +684 -0
- package/app/components/agents/AgentsPanelSessionsTab.tsx +166 -0
- package/app/components/agents/SkillDetailPopover.tsx +4 -9
- package/app/components/agents/agents-content-model.ts +2 -2
- package/app/components/ask/AgentSelectorCapsule.tsx +218 -0
- package/app/components/ask/AskContent.tsx +197 -239
- package/app/components/ask/FileChip.tsx +82 -17
- package/app/components/ask/MentionPopover.tsx +21 -3
- package/app/components/ask/MessageList.tsx +30 -9
- package/app/components/ask/SlashCommandPopover.tsx +21 -3
- package/app/components/help/HelpContent.tsx +9 -9
- package/app/components/panels/AgentsPanel.tsx +2 -0
- package/app/components/panels/AgentsPanelAgentDetail.tsx +5 -8
- package/app/components/panels/AgentsPanelHubNav.tsx +16 -2
- package/app/components/panels/EchoPanel.tsx +5 -1
- package/app/components/panels/EchoSidebarStats.tsx +136 -0
- package/app/components/panels/WorkflowsPanel.tsx +206 -0
- package/app/components/renderers/workflow-yaml/StepEditor.tsx +157 -0
- package/app/components/renderers/workflow-yaml/WorkflowEditor.tsx +201 -0
- package/app/components/renderers/workflow-yaml/WorkflowRunner.tsx +226 -0
- package/app/components/renderers/workflow-yaml/WorkflowYamlRenderer.tsx +126 -0
- package/app/components/renderers/workflow-yaml/execution.ts +177 -0
- package/app/components/renderers/workflow-yaml/index.ts +6 -0
- package/app/components/renderers/workflow-yaml/manifest.ts +21 -0
- package/app/components/renderers/workflow-yaml/parser.ts +172 -0
- package/app/components/renderers/workflow-yaml/selectors.tsx +522 -0
- package/app/components/renderers/workflow-yaml/serializer.ts +56 -0
- package/app/components/renderers/workflow-yaml/types.ts +46 -0
- package/app/components/settings/KnowledgeTab.tsx +3 -6
- package/app/components/settings/McpSkillsSection.tsx +4 -5
- package/app/components/settings/McpTab.tsx +6 -8
- package/app/components/setup/StepSecurity.tsx +4 -5
- package/app/components/setup/index.tsx +5 -11
- package/app/components/ui/Toaster.tsx +39 -0
- package/app/hooks/useA2aRegistry.ts +6 -1
- package/app/hooks/useAcpConfig.ts +96 -0
- package/app/hooks/useAcpDetection.ts +120 -0
- package/app/hooks/useAcpRegistry.ts +86 -0
- package/app/hooks/useAskModal.ts +12 -5
- package/app/hooks/useAskPanel.ts +8 -5
- package/app/hooks/useAskSession.ts +19 -2
- package/app/hooks/useDelegationHistory.ts +49 -0
- package/app/hooks/useImageUpload.ts +152 -0
- package/app/lib/a2a/client.ts +49 -5
- package/app/lib/a2a/orchestrator.ts +0 -1
- package/app/lib/a2a/task-handler.ts +4 -4
- package/app/lib/a2a/types.ts +15 -0
- package/app/lib/acp/acp-tools.ts +95 -0
- package/app/lib/acp/agent-descriptors.ts +274 -0
- package/app/lib/acp/bridge.ts +144 -0
- package/app/lib/acp/index.ts +40 -0
- package/app/lib/acp/registry.ts +202 -0
- package/app/lib/acp/session.ts +717 -0
- package/app/lib/acp/subprocess.ts +495 -0
- package/app/lib/acp/types.ts +274 -0
- package/app/lib/agent/model.ts +18 -3
- package/app/lib/agent/to-agent-messages.ts +25 -2
- package/app/lib/agent/tools.ts +2 -1
- package/app/lib/i18n/_core.ts +22 -0
- package/app/lib/i18n/index.ts +35 -0
- package/app/lib/i18n/modules/ai-chat.ts +215 -0
- package/app/lib/i18n/modules/common.ts +71 -0
- package/app/lib/i18n/modules/features.ts +153 -0
- package/app/lib/i18n/modules/knowledge.ts +429 -0
- package/app/lib/i18n/modules/navigation.ts +153 -0
- package/app/lib/i18n/modules/onboarding.ts +523 -0
- package/app/lib/i18n/modules/panels.ts +1196 -0
- package/app/lib/i18n/modules/settings.ts +585 -0
- package/app/lib/i18n-en.ts +2 -1518
- package/app/lib/i18n-zh.ts +2 -1542
- package/app/lib/i18n.ts +3 -6
- package/app/lib/pi-integration/skills.ts +21 -6
- package/app/lib/renderers/index.ts +2 -2
- package/app/lib/settings.ts +10 -0
- package/app/lib/toast.ts +79 -0
- package/app/lib/types.ts +12 -1
- package/app/next-env.d.ts +1 -1
- package/app/package.json +3 -1
- package/bin/cli.js +25 -25
- package/bin/commands/file.js +29 -2
- package/bin/commands/space.js +249 -91
- package/package.json +1 -1
- package/templates/en/.mindos/workflows/Sprint Release.flow.yaml +130 -0
- package/templates/zh/.mindos/workflows//345/221/250/350/277/255/344/273/243/346/243/200/346/237/245.flow.yaml +84 -0
- package/app/components/renderers/workflow/WorkflowRenderer.tsx +0 -409
- package/app/components/renderers/workflow/manifest.ts +0 -14
|
@@ -0,0 +1,153 @@
|
|
|
1
|
+
// sidebar + search + shortcutPanel
|
|
2
|
+
|
|
3
|
+
export const navigationEn = {
|
|
4
|
+
sidebar: {
|
|
5
|
+
files: 'Spaces',
|
|
6
|
+
search: 'Search',
|
|
7
|
+
searchTitle: 'Search',
|
|
8
|
+
askTitle: 'MindOS Agent',
|
|
9
|
+
settingsTitle: 'Settings',
|
|
10
|
+
plugins: 'Plugins',
|
|
11
|
+
agents: 'Agents',
|
|
12
|
+
echo: 'Echo',
|
|
13
|
+
discover: 'Discover',
|
|
14
|
+
workflows: 'Flows',
|
|
15
|
+
history: 'History',
|
|
16
|
+
help: 'Help',
|
|
17
|
+
syncLabel: 'Sync',
|
|
18
|
+
collapseTitle: 'Collapse sidebar',
|
|
19
|
+
expandTitle: 'Expand sidebar',
|
|
20
|
+
collapseLevel: 'Collapse one level',
|
|
21
|
+
collapseLevelHint: 'Collapse one level (double-click: all)',
|
|
22
|
+
expandLevel: 'Expand one level',
|
|
23
|
+
expandLevelHint: 'Expand one level (double-click: all)',
|
|
24
|
+
importFile: 'Import file',
|
|
25
|
+
new: 'New',
|
|
26
|
+
newFile: 'New file',
|
|
27
|
+
newSpace: 'New Space',
|
|
28
|
+
sync: {
|
|
29
|
+
synced: 'Synced',
|
|
30
|
+
unpushed: 'awaiting push',
|
|
31
|
+
unpushedHint: 'commit(s) not yet pushed to remote — will sync automatically',
|
|
32
|
+
conflicts: 'conflicts',
|
|
33
|
+
conflictsHint: 'file(s) have merge conflicts — open Settings > Sync to resolve',
|
|
34
|
+
syncError: 'Sync error',
|
|
35
|
+
syncOff: 'Sync off',
|
|
36
|
+
syncing: 'Syncing...',
|
|
37
|
+
syncNow: 'Sync now',
|
|
38
|
+
syncDone: 'Sync complete',
|
|
39
|
+
syncFailed: 'Sync failed',
|
|
40
|
+
syncRestored: 'Sync restored',
|
|
41
|
+
enableSync: 'Enable sync',
|
|
42
|
+
enableHint: 'Set up cross-device sync',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
search: {
|
|
46
|
+
placeholder: 'Search files...',
|
|
47
|
+
noResults: 'No results found',
|
|
48
|
+
prompt: 'Type to search across all files',
|
|
49
|
+
navigate: 'navigate',
|
|
50
|
+
open: 'open',
|
|
51
|
+
close: 'close',
|
|
52
|
+
tabSearch: 'Search',
|
|
53
|
+
tabActions: 'Actions',
|
|
54
|
+
openSettings: 'Open Settings',
|
|
55
|
+
restartWalkthrough: 'Restart Walkthrough',
|
|
56
|
+
toggleDarkMode: 'Toggle Dark Mode',
|
|
57
|
+
goToAgents: 'Go to Agents',
|
|
58
|
+
goToDiscover: 'Go to Discover',
|
|
59
|
+
goToHelp: 'Go to Help',
|
|
60
|
+
walkthroughRestarted: 'Walkthrough restarted',
|
|
61
|
+
},
|
|
62
|
+
shortcutPanel: {
|
|
63
|
+
title: 'Keyboard Shortcuts',
|
|
64
|
+
navigation: 'Navigation',
|
|
65
|
+
panelsSection: 'Panels',
|
|
66
|
+
editor: 'Editor',
|
|
67
|
+
toggleSearch: 'Toggle Search',
|
|
68
|
+
toggleAskAI: 'Toggle Ask AI',
|
|
69
|
+
openSettings: 'Open Settings',
|
|
70
|
+
keyboardShortcuts: 'Keyboard Shortcuts',
|
|
71
|
+
closePanel: 'Close panel / Exit maximize',
|
|
72
|
+
saveFile: 'Save file',
|
|
73
|
+
undo: 'Undo',
|
|
74
|
+
redo: 'Redo',
|
|
75
|
+
toggleHint: 'to toggle this panel',
|
|
76
|
+
},
|
|
77
|
+
} as const;
|
|
78
|
+
|
|
79
|
+
export const navigationZh = {
|
|
80
|
+
sidebar: {
|
|
81
|
+
files: '空间',
|
|
82
|
+
search: '搜索',
|
|
83
|
+
searchTitle: '搜索',
|
|
84
|
+
askTitle: 'MindOS Agent',
|
|
85
|
+
settingsTitle: '设置',
|
|
86
|
+
plugins: '插件',
|
|
87
|
+
agents: '智能体',
|
|
88
|
+
echo: '回响',
|
|
89
|
+
discover: '探索',
|
|
90
|
+
workflows: '流程',
|
|
91
|
+
history: '历史',
|
|
92
|
+
help: '帮助',
|
|
93
|
+
syncLabel: '同步',
|
|
94
|
+
collapseTitle: '收起侧栏',
|
|
95
|
+
expandTitle: '展开侧栏',
|
|
96
|
+
collapseLevel: '折叠一级',
|
|
97
|
+
collapseLevelHint: '折叠一级(双击:全部折叠)',
|
|
98
|
+
expandLevel: '展开一级',
|
|
99
|
+
expandLevelHint: '展开一级(双击:全部展开)',
|
|
100
|
+
importFile: '导入文件',
|
|
101
|
+
new: '新建',
|
|
102
|
+
newFile: '新建文件',
|
|
103
|
+
newSpace: '新建空间',
|
|
104
|
+
sync: {
|
|
105
|
+
synced: '已同步',
|
|
106
|
+
unpushed: '待推送',
|
|
107
|
+
unpushedHint: '个提交尚未推送到远程 — 将自动同步',
|
|
108
|
+
conflicts: '冲突',
|
|
109
|
+
conflictsHint: '个文件存在合并冲突 — 前往 设置 > 同步 解决',
|
|
110
|
+
syncError: '同步出错',
|
|
111
|
+
syncOff: '同步关闭',
|
|
112
|
+
syncing: '同步中...',
|
|
113
|
+
syncNow: '立即同步',
|
|
114
|
+
syncDone: '同步完成',
|
|
115
|
+
syncFailed: '同步失败',
|
|
116
|
+
syncRestored: '同步已恢复',
|
|
117
|
+
enableSync: '启用同步',
|
|
118
|
+
enableHint: '设置跨设备同步',
|
|
119
|
+
},
|
|
120
|
+
},
|
|
121
|
+
search: {
|
|
122
|
+
placeholder: '搜索文件...',
|
|
123
|
+
noResults: '没有找到结果',
|
|
124
|
+
prompt: '输入关键词搜索所有文件',
|
|
125
|
+
navigate: '上下导航',
|
|
126
|
+
open: '打开',
|
|
127
|
+
close: '关闭',
|
|
128
|
+
tabSearch: '搜索',
|
|
129
|
+
tabActions: '快捷操作',
|
|
130
|
+
openSettings: '打开设置',
|
|
131
|
+
restartWalkthrough: '重新开始引导',
|
|
132
|
+
toggleDarkMode: '切换深色模式',
|
|
133
|
+
goToAgents: '前往 Agents',
|
|
134
|
+
goToDiscover: '前往探索',
|
|
135
|
+
goToHelp: '前往帮助',
|
|
136
|
+
walkthroughRestarted: '引导已重置',
|
|
137
|
+
},
|
|
138
|
+
shortcutPanel: {
|
|
139
|
+
title: '快捷键',
|
|
140
|
+
navigation: '导航',
|
|
141
|
+
panelsSection: '面板',
|
|
142
|
+
editor: '编辑器',
|
|
143
|
+
toggleSearch: '切换搜索',
|
|
144
|
+
toggleAskAI: '切换 Ask AI',
|
|
145
|
+
openSettings: '打开设置',
|
|
146
|
+
keyboardShortcuts: '快捷键',
|
|
147
|
+
closePanel: '关闭面板 / 退出最大化',
|
|
148
|
+
saveFile: '保存文件',
|
|
149
|
+
undo: '撤销',
|
|
150
|
+
redo: '重做',
|
|
151
|
+
toggleHint: '切换此面板',
|
|
152
|
+
},
|
|
153
|
+
};
|
|
@@ -0,0 +1,523 @@
|
|
|
1
|
+
// onboarding + setup + guide + explore + walkthrough
|
|
2
|
+
|
|
3
|
+
export const onboardingEn = {
|
|
4
|
+
onboarding: {
|
|
5
|
+
subtitle: 'Your knowledge base is empty. Pick a starter template to get going.',
|
|
6
|
+
templates: {
|
|
7
|
+
en: { title: 'English', desc: 'Pre-built structure with Profile, Notes, Projects, and more.' },
|
|
8
|
+
zh: { title: '中文', desc: '预置画像、笔记、项目等中文目录结构。' },
|
|
9
|
+
empty: { title: 'Empty', desc: 'Just the essentials — README, CONFIG, and INSTRUCTION.' },
|
|
10
|
+
},
|
|
11
|
+
importHint: 'Already have notes? Set MIND_ROOT to your existing directory in Settings.',
|
|
12
|
+
syncHint: 'Want cross-device sync? Run',
|
|
13
|
+
syncHintSuffix: 'in the terminal after setup.',
|
|
14
|
+
initError: 'Initialization failed. Please try again.',
|
|
15
|
+
dismiss: 'Dismiss',
|
|
16
|
+
},
|
|
17
|
+
setup: {
|
|
18
|
+
stepTitles: ['Knowledge Base', 'AI Provider', 'Ports', 'Security', 'Agent Tools', 'Review'],
|
|
19
|
+
// Step 1
|
|
20
|
+
kbPath: 'Knowledge base path',
|
|
21
|
+
kbPathHint: 'Absolute path to your notes directory.',
|
|
22
|
+
kbPathDefault: '~/MindOS/mind',
|
|
23
|
+
kbPathUseDefault: (path: string) => `Use ${path}`,
|
|
24
|
+
kbPathHasFiles: (n: number) => `This directory already contains ${n} file${n > 1 ? 's' : ''}. You can skip the template or merge (existing files won't be overwritten).`,
|
|
25
|
+
kbTemplateSkip: 'Skip template',
|
|
26
|
+
kbTemplateMerge: 'Choose a template to merge',
|
|
27
|
+
template: 'Starter template',
|
|
28
|
+
templateSkip: 'Skip (directory already has files)',
|
|
29
|
+
// Step 2
|
|
30
|
+
aiProvider: 'AI Provider',
|
|
31
|
+
aiProviderHint: 'Choose your preferred AI service.',
|
|
32
|
+
aiSkip: 'Skip — configure later',
|
|
33
|
+
apiKey: 'API Key',
|
|
34
|
+
apiKeyExisting: 'Existing key configured. Leave blank to keep it.',
|
|
35
|
+
model: 'Model',
|
|
36
|
+
baseUrl: 'Base URL',
|
|
37
|
+
baseUrlHint: 'Optional. For proxies or OpenAI-compatible APIs.',
|
|
38
|
+
// Step 3
|
|
39
|
+
webPort: 'Web UI port',
|
|
40
|
+
mcpPort: 'MCP server port',
|
|
41
|
+
portHint: 'Valid range: 1024–65535',
|
|
42
|
+
portRestartWarning: 'The service will start on these ports after setup completes.',
|
|
43
|
+
portInUse: (p: number) => `Port ${p} is already in use.`,
|
|
44
|
+
portSuggest: (p: number) => `Use ${p}`,
|
|
45
|
+
portChecking: 'Checking…',
|
|
46
|
+
portSelf: 'Current port',
|
|
47
|
+
portConflict: 'Web UI and MCP ports must be different.',
|
|
48
|
+
portVerifyHint: 'Click outside each field to verify, or wait for auto-check.',
|
|
49
|
+
// Step 4
|
|
50
|
+
authToken: 'Auth Token',
|
|
51
|
+
authTokenHint: 'Bearer token for MCP / API clients. Auto-generated.',
|
|
52
|
+
authTokenUsage: 'Used for MCP connections and API clients. When configuring an Agent, this token is written automatically — no manual steps needed.',
|
|
53
|
+
authTokenUsageWhat: 'What is this?',
|
|
54
|
+
authTokenSeed: 'Custom seed (optional)',
|
|
55
|
+
authTokenSeedHint: 'Enter a passphrase to derive a deterministic token.',
|
|
56
|
+
generateToken: 'Generate',
|
|
57
|
+
copyToken: 'Copy',
|
|
58
|
+
copiedToken: 'Copied!',
|
|
59
|
+
webPassword: 'Web UI Password',
|
|
60
|
+
webPasswordHint: 'Optional. Protect browser access with a password.',
|
|
61
|
+
// Step 5 — Agent Tools
|
|
62
|
+
agentToolsTitle: 'Agent Tools',
|
|
63
|
+
agentToolsHint: 'Select AI agents to configure with MindOS MCP. Agents marked "not installed" can be configured now — they will work once you install the app.',
|
|
64
|
+
agentTransport: 'Transport',
|
|
65
|
+
agentScope: 'Scope',
|
|
66
|
+
agentToolsLoading: 'Loading agents…',
|
|
67
|
+
agentToolsEmpty: 'No supported agents detected.',
|
|
68
|
+
agentNoneSelected: 'No agents selected — you can configure later in Settings → MCP.',
|
|
69
|
+
agentSkipLater: 'Skip — install agents later in Settings > MCP',
|
|
70
|
+
agentSelectDetected: 'Select detected agents',
|
|
71
|
+
agentNoneDetected: 'No agents detected on your system.',
|
|
72
|
+
agentShowMore: (n: number) => `Show ${n} more agents`,
|
|
73
|
+
agentAdvanced: 'Advanced options',
|
|
74
|
+
agentScopeGlobal: 'Install for all projects',
|
|
75
|
+
agentScopeProject: 'This project only',
|
|
76
|
+
badgeInstalled: 'Installed',
|
|
77
|
+
badgeDetected: 'Detected',
|
|
78
|
+
badgeNotFound: 'Not found',
|
|
79
|
+
agentNotInstalled: 'not installed',
|
|
80
|
+
agentDetected: 'detected',
|
|
81
|
+
agentNotFound: 'not found',
|
|
82
|
+
agentStatusOk: 'configured',
|
|
83
|
+
agentStatusError: 'failed',
|
|
84
|
+
agentInstalling: 'Configuring…',
|
|
85
|
+
agentTransportAuto: 'Auto (recommended)',
|
|
86
|
+
agentTransportLabel: 'Transport',
|
|
87
|
+
agentVerified: 'verified',
|
|
88
|
+
agentUnverified: 'unverified',
|
|
89
|
+
agentVerifyNote: 'stdio agents are verified after restart',
|
|
90
|
+
// Skill auto-install
|
|
91
|
+
skillWhat: 'Skills teach AI agents how to use your knowledge base — like instructions for reading, writing, and organizing your notes.',
|
|
92
|
+
skillAutoHint: (name: string) => `Based on your template, the "${name}" skill will be installed to selected agents.`,
|
|
93
|
+
skillLabel: 'Skill',
|
|
94
|
+
skillInstalling: 'Installing skill…',
|
|
95
|
+
skillInstalled: 'Skill installed',
|
|
96
|
+
skillFailed: 'Skill install failed',
|
|
97
|
+
// Step 2 — AI skip card
|
|
98
|
+
aiSkipTitle: 'Skip for now',
|
|
99
|
+
aiSkipDesc: 'You can add an API key later in Settings → AI.',
|
|
100
|
+
// Step 6 — Review
|
|
101
|
+
reviewHint: 'Verify your settings, then press Complete Setup.',
|
|
102
|
+
reviewInstallResults: 'Agent configuration results:',
|
|
103
|
+
phaseSaving: 'Saving configuration…',
|
|
104
|
+
phaseAgents: 'Configuring agents…',
|
|
105
|
+
phaseSkill: 'Installing skill…',
|
|
106
|
+
phaseDone: 'Setup complete!',
|
|
107
|
+
retryAgent: 'Retry',
|
|
108
|
+
agentFailedCount: (n: number) => `${n} agent${n > 1 ? 's' : ''} failed`,
|
|
109
|
+
agentCountSummary: (n: number) => `${n} agent${n > 1 ? 's' : ''}`,
|
|
110
|
+
agentFailureNote: 'Agent failures are non-blocking — you can enter MindOS and retry from Settings → MCP.',
|
|
111
|
+
portAvailable: 'Available',
|
|
112
|
+
portChanged: 'Port changed — please restart the server for it to take effect.',
|
|
113
|
+
restartRequired: 'Server restart required for these changes to take effect.',
|
|
114
|
+
restartNow: 'Restart now',
|
|
115
|
+
restarting: 'Restarting…',
|
|
116
|
+
restartDone: 'Server is restarting. Redirecting shortly…',
|
|
117
|
+
restartManual: 'Restart manually:',
|
|
118
|
+
// Buttons
|
|
119
|
+
back: 'Back',
|
|
120
|
+
next: 'Next',
|
|
121
|
+
complete: 'Complete Setup',
|
|
122
|
+
skip: 'Skip',
|
|
123
|
+
// Status
|
|
124
|
+
completing: 'Saving...',
|
|
125
|
+
completeDone: 'Setup complete!',
|
|
126
|
+
completeFailed: 'Setup failed. Please try again.',
|
|
127
|
+
// Welcome banner (shown after first onboard)
|
|
128
|
+
welcomeTitle: 'Welcome to MindOS!',
|
|
129
|
+
welcomeDesc: 'Setup is complete. Start by asking AI a question, browsing your knowledge base, or configuring MCP agents.',
|
|
130
|
+
welcomeLinkReconfigure: 'Reconfigure',
|
|
131
|
+
welcomeLinkAskAI: 'MindOS Agent',
|
|
132
|
+
welcomeLinkMCP: 'MCP Settings',
|
|
133
|
+
},
|
|
134
|
+
guide: {
|
|
135
|
+
title: 'Quick Start',
|
|
136
|
+
showGuide: 'Show getting started guide',
|
|
137
|
+
close: 'Close',
|
|
138
|
+
skip: 'Skip',
|
|
139
|
+
import: {
|
|
140
|
+
title: 'Import your files',
|
|
141
|
+
cta: 'Import',
|
|
142
|
+
desc: 'Upload your resume, project docs, or notes — anything you want AI agents to know about you.',
|
|
143
|
+
button: 'Import Files',
|
|
144
|
+
},
|
|
145
|
+
ai: {
|
|
146
|
+
title: 'See AI read your content',
|
|
147
|
+
cta: 'Try it',
|
|
148
|
+
desc: 'Your files are in the knowledge base. Ask MindOS Agent what it learned:',
|
|
149
|
+
prompt: 'Introduce me based on my knowledge base — who am I and what am I working on?',
|
|
150
|
+
promptEmpty: 'Help me design a knowledge base folder structure that fits my needs',
|
|
151
|
+
},
|
|
152
|
+
agent: {
|
|
153
|
+
title: 'Try in another Agent',
|
|
154
|
+
cta: 'Copy prompt',
|
|
155
|
+
desc: 'Open Cursor, Claude Code, or any MCP-connected Agent and paste this:',
|
|
156
|
+
copyPrompt: 'Read my MindOS knowledge base and summarize my background, then suggest what I should focus on next.',
|
|
157
|
+
copy: 'Copy',
|
|
158
|
+
copied: 'Copied!',
|
|
159
|
+
},
|
|
160
|
+
done: {
|
|
161
|
+
title: "You're all set!",
|
|
162
|
+
titleFinal: "You've mastered MindOS essentials!",
|
|
163
|
+
steps: [
|
|
164
|
+
{ hint: 'Next: try saving an article into your KB →', prompt: 'Help me save the key points from this article into MindOS.' },
|
|
165
|
+
{ hint: 'Next: try turning experience into a reusable SOP →', prompt: 'Help me distill this conversation into a reusable workflow in MindOS.' },
|
|
166
|
+
],
|
|
167
|
+
},
|
|
168
|
+
},
|
|
169
|
+
explore: {
|
|
170
|
+
title: 'Explore Use Cases',
|
|
171
|
+
subtitle: 'Discover what you can do with MindOS — pick a scenario and try it now.',
|
|
172
|
+
tryIt: 'Try it',
|
|
173
|
+
categories: {
|
|
174
|
+
'knowledge-management': 'Knowledge Management',
|
|
175
|
+
'memory-sync': 'Memory Sync',
|
|
176
|
+
'auto-execute': 'Auto Execute',
|
|
177
|
+
'experience-evolution': 'Experience Evolution',
|
|
178
|
+
'human-insights': 'Human Insights',
|
|
179
|
+
'audit-control': 'Audit & Control',
|
|
180
|
+
},
|
|
181
|
+
scenarios: {
|
|
182
|
+
'first-day': 'First Day',
|
|
183
|
+
'daily': 'Daily Work',
|
|
184
|
+
'project': 'Project Work',
|
|
185
|
+
'advanced': 'Advanced',
|
|
186
|
+
},
|
|
187
|
+
all: 'All',
|
|
188
|
+
byCapability: 'By Capability',
|
|
189
|
+
byScenario: 'By Scenario',
|
|
190
|
+
c1: {
|
|
191
|
+
title: 'Inject Your Identity',
|
|
192
|
+
desc: 'Tell all AI agents who you are — preferences, tech stack, communication style — in one shot.',
|
|
193
|
+
prompt: "Here's my resume, read it and organize my info into MindOS.",
|
|
194
|
+
},
|
|
195
|
+
c2: {
|
|
196
|
+
title: 'Save Information',
|
|
197
|
+
desc: 'Archive articles, meeting notes, or web pages into your knowledge base with one prompt.',
|
|
198
|
+
prompt: 'Help me save the key points from this article into MindOS.',
|
|
199
|
+
},
|
|
200
|
+
c3: {
|
|
201
|
+
title: 'Cross-Agent Handoff',
|
|
202
|
+
desc: 'Start a plan in MindOS, continue coding in Claude Code, refine in Cursor — zero context loss.',
|
|
203
|
+
prompt: 'Help me start coding based on the plan in MindOS.',
|
|
204
|
+
},
|
|
205
|
+
c4: {
|
|
206
|
+
title: 'Experience → SOP',
|
|
207
|
+
desc: 'Turn hard-won debugging sessions into reusable workflows that prevent future mistakes.',
|
|
208
|
+
prompt: 'Help me distill this conversation into a reusable workflow in MindOS.',
|
|
209
|
+
},
|
|
210
|
+
c5: {
|
|
211
|
+
title: 'Capture Ideas on the Go',
|
|
212
|
+
desc: 'Jot down an inspiration on your phone — MindOS archives, decomposes, and assigns to agents.',
|
|
213
|
+
prompt: 'Help me organize this idea into MindOS and break it into actionable sub-tasks.',
|
|
214
|
+
},
|
|
215
|
+
c6: {
|
|
216
|
+
title: 'Project Cold Start',
|
|
217
|
+
desc: 'Spin up a new project in 4 minutes — your profile and SOPs guide the scaffolding automatically.',
|
|
218
|
+
prompt: 'Help me start a new project following the Startup SOP in MindOS.',
|
|
219
|
+
},
|
|
220
|
+
c7: {
|
|
221
|
+
title: 'Research & Archive',
|
|
222
|
+
desc: 'Let agents research competitors or topics for you, then file structured results in your KB.',
|
|
223
|
+
prompt: 'Help me research X, Y, Z products and save results to the MindOS product library.',
|
|
224
|
+
},
|
|
225
|
+
c8: {
|
|
226
|
+
title: 'Network Management',
|
|
227
|
+
desc: 'Log conversations with contacts, auto-generate follow-up TODOs, and keep full context.',
|
|
228
|
+
prompt: 'I met with someone today — update MindOS Connections and create follow-up TODOs.',
|
|
229
|
+
},
|
|
230
|
+
c9: {
|
|
231
|
+
title: 'Audit & Correct',
|
|
232
|
+
desc: 'Review what agents know about you, fix mistakes in one place, and all agents update instantly.',
|
|
233
|
+
prompt: 'Check my MindOS Profile for accuracy and correct any errors.',
|
|
234
|
+
},
|
|
235
|
+
},
|
|
236
|
+
walkthrough: {
|
|
237
|
+
step: (current: number, total: number) => `${current} of ${total}`,
|
|
238
|
+
next: 'Next',
|
|
239
|
+
back: 'Back',
|
|
240
|
+
skip: 'Skip tour',
|
|
241
|
+
done: 'Done',
|
|
242
|
+
exploreCta: 'Explore what you can do →',
|
|
243
|
+
steps: [
|
|
244
|
+
{
|
|
245
|
+
title: 'Your Project Memory',
|
|
246
|
+
body: 'Organize projects, SOPs, and preferences in Spaces. Everything is local-first and under your control.',
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
title: 'AI That Already Knows You',
|
|
250
|
+
body: 'MindOS Agent reads your entire knowledge base automatically. Ask about your projects — no need to re-explain anything.',
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
title: 'Connect Any Agent',
|
|
254
|
+
body: 'Link Cursor, Claude Code, or Windsurf via MCP — they all share the same project memory.',
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
title: 'Echo — Growth Compounds',
|
|
258
|
+
body: 'About you, daily reflections, growth tracking — MindOS helps you accumulate cognitive compound interest over time.',
|
|
259
|
+
},
|
|
260
|
+
],
|
|
261
|
+
},
|
|
262
|
+
} as const;
|
|
263
|
+
|
|
264
|
+
export const onboardingZh = {
|
|
265
|
+
onboarding: {
|
|
266
|
+
subtitle: '知识库为空,选择一个模板快速开始。',
|
|
267
|
+
templates: {
|
|
268
|
+
en: { title: 'English', desc: '预置 Profile、Notes、Projects 等英文目录结构。' },
|
|
269
|
+
zh: { title: '中文', desc: '预置画像、笔记、项目等中文目录结构。' },
|
|
270
|
+
empty: { title: '空白', desc: '仅包含 README、CONFIG 和 INSTRUCTION 基础文件。' },
|
|
271
|
+
},
|
|
272
|
+
importHint: '已有笔记?在设置中将 MIND_ROOT 指向已有目录即可。',
|
|
273
|
+
syncHint: '需要跨设备同步?完成初始化后在终端运行',
|
|
274
|
+
syncHintSuffix: '即可。',
|
|
275
|
+
initError: '初始化失败,请重试。',
|
|
276
|
+
dismiss: '关闭',
|
|
277
|
+
},
|
|
278
|
+
setup: {
|
|
279
|
+
stepTitles: ['知识库', 'AI 服务商', '端口', '安全', 'Agent 工具', '确认'],
|
|
280
|
+
// Step 1
|
|
281
|
+
kbPath: '知识库路径',
|
|
282
|
+
kbPathHint: '笔记目录的绝对路径。',
|
|
283
|
+
kbPathDefault: '~/MindOS/mind',
|
|
284
|
+
kbPathUseDefault: (path: string) => `使用 ${path}`,
|
|
285
|
+
kbPathHasFiles: (n: number) => `该目录已有 ${n} 个文件。可以跳过模板,或选择合并(已有文件不会被覆盖)。`,
|
|
286
|
+
kbTemplateSkip: '跳过模板',
|
|
287
|
+
kbTemplateMerge: '选择模板合并',
|
|
288
|
+
template: '初始模板',
|
|
289
|
+
templateSkip: '跳过(目录已有文件)',
|
|
290
|
+
// Step 2
|
|
291
|
+
aiProvider: 'AI 服务商',
|
|
292
|
+
aiProviderHint: '选择你偏好的 AI 服务。',
|
|
293
|
+
aiSkip: '跳过 — 稍后配置',
|
|
294
|
+
apiKey: 'API 密钥',
|
|
295
|
+
apiKeyExisting: '已配置密钥。留空即保持不变。',
|
|
296
|
+
model: '模型',
|
|
297
|
+
baseUrl: '接口地址',
|
|
298
|
+
baseUrlHint: '可选。用于代理或 OpenAI 兼容 API。',
|
|
299
|
+
// Step 3
|
|
300
|
+
webPort: 'Web UI 端口',
|
|
301
|
+
mcpPort: 'MCP 服务端口',
|
|
302
|
+
portHint: '有效范围:1024–65535',
|
|
303
|
+
portRestartWarning: '完成配置后,服务将以这些端口启动。',
|
|
304
|
+
portInUse: (p: number) => `端口 ${p} 已被占用。`,
|
|
305
|
+
portSuggest: (p: number) => `使用 ${p}`,
|
|
306
|
+
portChecking: '检测中…',
|
|
307
|
+
portSelf: '当前端口',
|
|
308
|
+
portConflict: 'Web UI 端口和 MCP 端口不能相同。',
|
|
309
|
+
portVerifyHint: '点击输入框外部验证,或等待自动检测。',
|
|
310
|
+
// Step 4
|
|
311
|
+
authToken: 'Auth Token',
|
|
312
|
+
authTokenHint: 'MCP / API 客户端使用的 Bearer Token,自动生成。',
|
|
313
|
+
authTokenUsage: '用于 MCP 连接和 API 客户端身份验证。配置 Agent 时会自动写入,无需手动填写。',
|
|
314
|
+
authTokenUsageWhat: '这是什么?',
|
|
315
|
+
authTokenSeed: '自定义种子(可选)',
|
|
316
|
+
authTokenSeedHint: '输入口令短语生成确定性 Token。',
|
|
317
|
+
generateToken: '生成',
|
|
318
|
+
copyToken: '复制',
|
|
319
|
+
copiedToken: '已复制!',
|
|
320
|
+
webPassword: '网页访问密码',
|
|
321
|
+
webPasswordHint: '可选。设置后浏览器访问需要登录。',
|
|
322
|
+
// Step 5 — Agent Tools
|
|
323
|
+
agentToolsTitle: 'Agent 工具',
|
|
324
|
+
agentToolsHint: '选择要与 MindOS MCP 配置的 AI Agent。标注「未安装」的 agent 可以先行配置,安装应用后即可生效。',
|
|
325
|
+
agentTransport: '传输方式',
|
|
326
|
+
agentScope: '范围',
|
|
327
|
+
agentToolsLoading: '正在加载 Agent…',
|
|
328
|
+
agentToolsEmpty: '未检测到受支持的 Agent。',
|
|
329
|
+
agentNoneSelected: '未选择 agent — 可稍后在 设置 → MCP 中配置。',
|
|
330
|
+
agentSkipLater: '跳过 — 稍后在 设置 > MCP 中安装',
|
|
331
|
+
agentSelectDetected: '选择已检测到的 Agent',
|
|
332
|
+
agentNoneDetected: '未在系统中检测到已安装的 Agent。',
|
|
333
|
+
agentShowMore: (n: number) => `显示另外 ${n} 个 Agent`,
|
|
334
|
+
agentAdvanced: '高级选项',
|
|
335
|
+
agentScopeGlobal: '为所有项目安装',
|
|
336
|
+
agentScopeProject: '仅当前项目',
|
|
337
|
+
badgeInstalled: '已安装',
|
|
338
|
+
badgeDetected: '已检测到',
|
|
339
|
+
badgeNotFound: '未找到',
|
|
340
|
+
agentNotInstalled: '未安装',
|
|
341
|
+
agentDetected: '已检测到',
|
|
342
|
+
agentNotFound: '未找到',
|
|
343
|
+
agentStatusOk: '已配置',
|
|
344
|
+
agentStatusError: '失败',
|
|
345
|
+
agentInstalling: '配置中…',
|
|
346
|
+
agentTransportAuto: '自动(推荐)',
|
|
347
|
+
agentTransportLabel: '传输方式',
|
|
348
|
+
agentVerified: '已验证',
|
|
349
|
+
agentUnverified: '未验证',
|
|
350
|
+
agentVerifyNote: 'stdio agent 需重启后验证',
|
|
351
|
+
// Skill auto-install
|
|
352
|
+
skillWhat: 'Skill 教 AI Agent 如何使用你的知识库 — 包括笔记的读取、写入和整理规则。',
|
|
353
|
+
skillAutoHint: (name: string) => `根据您选择的模板,将向选中的 Agent 安装「${name}」Skill。`,
|
|
354
|
+
skillLabel: 'Skill',
|
|
355
|
+
skillInstalling: '正在安装 Skill…',
|
|
356
|
+
skillInstalled: 'Skill 已安装',
|
|
357
|
+
skillFailed: 'Skill 安装失败',
|
|
358
|
+
// Step 2 — AI skip card
|
|
359
|
+
aiSkipTitle: '暂时跳过',
|
|
360
|
+
aiSkipDesc: '稍后可在 设置 → AI 中添加 API 密钥。',
|
|
361
|
+
// Step 6 — Review
|
|
362
|
+
reviewHint: '确认设置无误后,点击完成。',
|
|
363
|
+
reviewInstallResults: 'Agent 配置结果:',
|
|
364
|
+
phaseSaving: '正在保存配置…',
|
|
365
|
+
phaseAgents: '正在配置 Agent…',
|
|
366
|
+
phaseSkill: '正在安装 Skill…',
|
|
367
|
+
phaseDone: '设置完成!',
|
|
368
|
+
retryAgent: '重试',
|
|
369
|
+
agentFailedCount: (n: number) => `${n} 个 Agent 配置失败`,
|
|
370
|
+
agentCountSummary: (n: number) => `${n} 个 Agent`,
|
|
371
|
+
agentFailureNote: 'Agent 安装失败不影响进入 MindOS — 可稍后在 设置 → MCP 中重试。',
|
|
372
|
+
portAvailable: '可用',
|
|
373
|
+
portChanged: '端口已变更 — 请重启服务以使其生效。',
|
|
374
|
+
restartRequired: '以下变更需要重启服务后生效。',
|
|
375
|
+
restartNow: '立即重启',
|
|
376
|
+
restarting: '重启中…',
|
|
377
|
+
restartDone: '服务正在重启,稍后自动跳转…',
|
|
378
|
+
restartManual: '手动重启命令:',
|
|
379
|
+
// Buttons
|
|
380
|
+
back: '上一步',
|
|
381
|
+
next: '下一步',
|
|
382
|
+
complete: '完成设置',
|
|
383
|
+
skip: '跳过',
|
|
384
|
+
// Status
|
|
385
|
+
completing: '保存中...',
|
|
386
|
+
completeDone: '设置完成!',
|
|
387
|
+
completeFailed: '设置失败,请重试。',
|
|
388
|
+
// Welcome banner
|
|
389
|
+
welcomeTitle: '欢迎使用 MindOS!',
|
|
390
|
+
welcomeDesc: '初始化完成。可以开始向 AI 提问、浏览知识库,或配置 MCP Agent。',
|
|
391
|
+
welcomeLinkReconfigure: '重新配置',
|
|
392
|
+
welcomeLinkAskAI: 'MindOS Agent',
|
|
393
|
+
welcomeLinkMCP: 'MCP 设置',
|
|
394
|
+
},
|
|
395
|
+
guide: {
|
|
396
|
+
title: '快速上手',
|
|
397
|
+
showGuide: '显示新手引导',
|
|
398
|
+
close: '关闭',
|
|
399
|
+
skip: '跳过',
|
|
400
|
+
import: {
|
|
401
|
+
title: '导入你的文件',
|
|
402
|
+
cta: '导入',
|
|
403
|
+
desc: '上传简历、项目文档、笔记——任何你想让 AI Agent 了解的内容。',
|
|
404
|
+
button: '导入文件',
|
|
405
|
+
},
|
|
406
|
+
ai: {
|
|
407
|
+
title: '感受 AI 读取内容',
|
|
408
|
+
cta: '试试',
|
|
409
|
+
desc: '你的文件已在知识库中。问问 MindOS Agent 它了解了什么:',
|
|
410
|
+
prompt: '根据我的知识库介绍一下我——我是谁、在做什么?',
|
|
411
|
+
promptEmpty: '帮我设计一个适合我的知识库目录结构',
|
|
412
|
+
},
|
|
413
|
+
agent: {
|
|
414
|
+
title: '在其他 Agent 验证',
|
|
415
|
+
cta: '复制提示词',
|
|
416
|
+
desc: '打开 Cursor、Claude Code 或任意连接了 MCP 的 Agent,粘贴以下提示词:',
|
|
417
|
+
copyPrompt: '读取我的 MindOS 知识库,概括我的背景,然后建议我接下来该做什么。',
|
|
418
|
+
copy: '复制',
|
|
419
|
+
copied: '已复制!',
|
|
420
|
+
},
|
|
421
|
+
done: {
|
|
422
|
+
title: '你已准备好使用 MindOS',
|
|
423
|
+
titleFinal: '你已掌握 MindOS 核心用法',
|
|
424
|
+
steps: [
|
|
425
|
+
{ hint: '下一步:试试把一篇文章存进来 →', prompt: '帮我把这篇文章的要点整理到 MindOS 里。' },
|
|
426
|
+
{ hint: '下一步:试试把经验沉淀为 SOP →', prompt: '帮我把这次对话的经验沉淀到 MindOS,形成可复用的工作流。' },
|
|
427
|
+
],
|
|
428
|
+
},
|
|
429
|
+
},
|
|
430
|
+
explore: {
|
|
431
|
+
title: '探索使用场景',
|
|
432
|
+
subtitle: '发现 MindOS 能帮你做什么 — 选一个场景,立即体验。',
|
|
433
|
+
tryIt: '试一试',
|
|
434
|
+
categories: {
|
|
435
|
+
'knowledge-management': '知识管理',
|
|
436
|
+
'memory-sync': '记忆同步',
|
|
437
|
+
'auto-execute': '自动执行',
|
|
438
|
+
'experience-evolution': '经验进化',
|
|
439
|
+
'human-insights': '人类洞察',
|
|
440
|
+
'audit-control': '审计纠错',
|
|
441
|
+
},
|
|
442
|
+
scenarios: {
|
|
443
|
+
'first-day': '初次使用',
|
|
444
|
+
'daily': '日常工作',
|
|
445
|
+
'project': '项目协作',
|
|
446
|
+
'advanced': '高级',
|
|
447
|
+
},
|
|
448
|
+
all: '全部',
|
|
449
|
+
byCapability: '按能力',
|
|
450
|
+
byScenario: '按场景',
|
|
451
|
+
c1: {
|
|
452
|
+
title: '注入身份',
|
|
453
|
+
desc: '让所有 AI Agent 一次认识你 — 偏好、技术栈、沟通风格。',
|
|
454
|
+
prompt: '这是我的简历,读一下,把我的信息整理到 MindOS 里。',
|
|
455
|
+
},
|
|
456
|
+
c2: {
|
|
457
|
+
title: '注入信息',
|
|
458
|
+
desc: '一句话归档文章、会议纪要或网页到知识库,全局可搜。',
|
|
459
|
+
prompt: '帮我把这篇文章的要点整理到 MindOS 里。',
|
|
460
|
+
},
|
|
461
|
+
c3: {
|
|
462
|
+
title: '跨 Agent 切换',
|
|
463
|
+
desc: '在 MindOS 写方案,在 Claude Code 写代码,在 Cursor 优化 — 零重复。',
|
|
464
|
+
prompt: '帮我按 MindOS 里的 XXX 方案开始写代码。',
|
|
465
|
+
},
|
|
466
|
+
c4: {
|
|
467
|
+
title: '经验→SOP',
|
|
468
|
+
desc: '把踩坑经验沉淀为可复用的工作流,下次 3 分钟搞定。',
|
|
469
|
+
prompt: '帮我把这次对话的经验沉淀到 MindOS,形成可复用的工作流。',
|
|
470
|
+
},
|
|
471
|
+
c5: {
|
|
472
|
+
title: '手机记灵感',
|
|
473
|
+
desc: '随手记下灵感,MindOS 自动归档、拆任务、多 Agent 接力执行。',
|
|
474
|
+
prompt: '帮我把这个想法整理到 MindOS,拆解成可执行的子任务。',
|
|
475
|
+
},
|
|
476
|
+
c6: {
|
|
477
|
+
title: '项目冷启动',
|
|
478
|
+
desc: '4 分钟搭建新项目 — Profile 和 SOP 自动引导脚手架。',
|
|
479
|
+
prompt: '帮我按 MindOS 里的 Startup SOP 启动一个新项目。',
|
|
480
|
+
},
|
|
481
|
+
c7: {
|
|
482
|
+
title: '调研入库',
|
|
483
|
+
desc: '让 Agent 替你跑腿调研竞品或话题,结果结构化入库。',
|
|
484
|
+
prompt: '帮我调研 X、Y、Z 这几个产品,结果写入 MindOS 产品库。',
|
|
485
|
+
},
|
|
486
|
+
c8: {
|
|
487
|
+
title: '人脉管理',
|
|
488
|
+
desc: '记录对话、自动生成跟进待办,每个联系人都有完整上下文。',
|
|
489
|
+
prompt: '我今天和 XXX 聊了这些内容,帮我更新到 MindOS 并生成跟进待办。',
|
|
490
|
+
},
|
|
491
|
+
c9: {
|
|
492
|
+
title: '审计纠偏',
|
|
493
|
+
desc: '审查 Agent 记了什么,一处修正,全局生效。',
|
|
494
|
+
prompt: '帮我检查 MindOS Profile 里的技术栈偏好是否正确,有错误帮我修正。',
|
|
495
|
+
},
|
|
496
|
+
},
|
|
497
|
+
walkthrough: {
|
|
498
|
+
step: (current: number, total: number) => `${current} / ${total}`,
|
|
499
|
+
next: '下一步',
|
|
500
|
+
back: '上一步',
|
|
501
|
+
skip: '跳过引导',
|
|
502
|
+
done: '完成',
|
|
503
|
+
exploreCta: '探索更多用法 →',
|
|
504
|
+
steps: [
|
|
505
|
+
{
|
|
506
|
+
title: '你的项目记忆',
|
|
507
|
+
body: '用 Space 管理项目、SOP 和偏好规则。数据存在本地,完全由你掌控。',
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
title: '不用重讲背景的 AI',
|
|
511
|
+
body: 'MindOS Agent 自动读取整个知识库。问它项目相关的事,不需要重复交代背景。',
|
|
512
|
+
},
|
|
513
|
+
{
|
|
514
|
+
title: '多 Agent 共享记忆',
|
|
515
|
+
body: '通过 MCP 连接 Cursor、Claude Code、Windsurf,它们共享同一份项目记忆。',
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
title: '回响 — 认知在积累',
|
|
519
|
+
body: '关于你、每日回顾、成长轨迹——MindOS 帮你沉淀判断与偏好,让经验不断复利。',
|
|
520
|
+
},
|
|
521
|
+
],
|
|
522
|
+
},
|
|
523
|
+
};
|