agentstudio 0.3.0 → 0.3.1
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/.dockerignore +53 -0
- package/.mcp.json +8 -0
- package/CLAUDE.md +359 -0
- package/DOCKER.md +270 -0
- package/Dockerfile +42 -0
- package/JSONL_TOOLS_README.md +301 -0
- package/LICENSE +603 -0
- package/QUICKSTART.md +253 -0
- package/README.md +176 -24
- package/README.zh-CN.md +200 -0
- package/SOLUTION_SUMMARY.md +249 -0
- package/backend/comprehensive-session-check.js +142 -0
- package/backend/debug-sessions.js +60 -0
- package/backend/docs/chat-clean-1.svg +1 -0
- package/backend/docs/chat-clean.md +60 -0
- package/backend/docs/chat-comprehensive-1.svg +1 -0
- package/backend/docs/chat-comprehensive.md +166 -0
- package/backend/docs/chat_api_sequence_diagram.md +58 -0
- package/backend/docs/command-detection-logic.md +306 -0
- package/backend/docs/command-detection-sequence.md +186 -0
- package/backend/eslint.config.js +25 -0
- package/backend/package.json +103 -0
- package/backend/scripts/README.md +156 -0
- package/backend/scripts/fix-project-names.js +113 -0
- package/backend/scripts/migrate-projects.js +159 -0
- package/backend/src/bin/agentstudio.ts +318 -0
- package/backend/src/bin/serviceManager.ts +469 -0
- package/backend/src/config/index.ts +184 -0
- package/backend/src/config/paths.ts +105 -0
- package/backend/src/config/sdkConfig.ts +126 -0
- package/backend/src/index.ts +434 -0
- package/backend/src/jobs/taskTimeoutMonitor.ts +106 -0
- package/backend/src/middleware/a2aAuth.ts +159 -0
- package/backend/src/middleware/auth.ts +39 -0
- package/backend/src/middleware/httpsOnly.ts +205 -0
- package/backend/src/middleware/rateLimiting.ts +130 -0
- package/backend/src/routes/__tests__/a2a.integration.test.ts +377 -0
- package/backend/src/routes/__tests__/a2a.test.ts +677 -0
- package/backend/src/routes/__tests__/agents.test.ts +327 -0
- package/backend/src/routes/__tests__/sessions.test.ts +345 -0
- package/backend/src/routes/a2a.streaming.test.ts +185 -0
- package/backend/src/routes/a2a.ts +840 -0
- package/backend/src/routes/a2aManagement.ts +545 -0
- package/backend/src/routes/agents.ts +1176 -0
- package/backend/src/routes/auth.ts +151 -0
- package/backend/src/routes/cloudflareTunnel.ts +306 -0
- package/backend/src/routes/commands.ts +524 -0
- package/backend/src/routes/config.ts +193 -0
- package/backend/src/routes/files.ts +375 -0
- package/backend/src/routes/mcp.ts +866 -0
- package/backend/src/routes/mcpAdmin.ts +369 -0
- package/backend/src/routes/mcpAdminManagement.ts +338 -0
- package/backend/src/routes/media.ts +140 -0
- package/backend/src/routes/mediaAuth.ts +150 -0
- package/backend/src/routes/network.ts +68 -0
- package/backend/src/routes/plugins.ts +368 -0
- package/backend/src/routes/projects.ts +1100 -0
- package/backend/src/routes/scheduledTasks.ts +442 -0
- package/backend/src/routes/sessions.ts +1054 -0
- package/backend/src/routes/settings.ts +552 -0
- package/backend/src/routes/skills.ts +319 -0
- package/backend/src/routes/slack.ts +193 -0
- package/backend/src/routes/slides.ts +166 -0
- package/backend/src/routes/subagents.ts +366 -0
- package/backend/src/routes/taskExecutor.ts +243 -0
- package/backend/src/routes/tunnel.ts +317 -0
- package/backend/src/routes/version.ts +239 -0
- package/backend/src/schemas/a2a.ts +352 -0
- package/backend/src/services/__tests__/pluginInstaller.test.ts +316 -0
- package/backend/src/services/__tests__/pluginParser.test.ts +285 -0
- package/backend/src/services/__tests__/pluginPaths.test.ts +212 -0
- package/backend/src/services/__tests__/pluginScanner.test.ts +287 -0
- package/backend/src/services/__tests__/pluginSymlink.test.ts +340 -0
- package/backend/src/services/__tests__/projectMetadataStorage.test.ts +158 -0
- package/backend/src/services/__tests__/sessionConcurrency.test.ts +132 -0
- package/backend/src/services/__tests__/slackAIService.test.ts +561 -0
- package/backend/src/services/__tests__/slackThreadMapper.test.ts +228 -0
- package/backend/src/services/a2a/__tests__/a2aClientTool.integration.test.ts +347 -0
- package/backend/src/services/a2a/__tests__/a2aClientTool.test.ts +710 -0
- package/backend/src/services/a2a/__tests__/a2aConfigService.test.ts +526 -0
- package/backend/src/services/a2a/__tests__/a2aConfigServicePath.test.ts +55 -0
- package/backend/src/services/a2a/__tests__/a2aSdkMcp.test.ts +254 -0
- package/backend/src/services/a2a/__tests__/agentCardService.test.ts +357 -0
- package/backend/src/services/a2a/__tests__/apiKeyService.test.ts +378 -0
- package/backend/src/services/a2a/__tests__/buildQueryOptionsIntegration.test.ts +41 -0
- package/backend/src/services/a2a/__tests__/dynamic_config_verification.test.ts +71 -0
- package/backend/src/services/a2a/__tests__/integrateA2AMcpServer.test.ts +97 -0
- package/backend/src/services/a2a/__tests__/taskManager.integration.test.ts +417 -0
- package/backend/src/services/a2a/__tests__/taskManager.test.ts +511 -0
- package/backend/src/services/a2a/__tests__/webhookService.test.ts +258 -0
- package/backend/src/services/a2a/a2aClientTool.ts +723 -0
- package/backend/src/services/a2a/a2aConfigService.ts +194 -0
- package/backend/src/services/a2a/a2aHistoryService.ts +111 -0
- package/backend/src/services/a2a/a2aIntegration.ts +40 -0
- package/backend/src/services/a2a/a2aQueryService.ts +275 -0
- package/backend/src/services/a2a/a2aSdkMcp.ts +208 -0
- package/backend/src/services/a2a/a2aStreamEvents.ts +166 -0
- package/backend/src/services/a2a/agentCardService.ts +256 -0
- package/backend/src/services/a2a/agentMappingService.ts +202 -0
- package/backend/src/services/a2a/apiKeyService.ts +361 -0
- package/backend/src/services/a2a/taskCleanup.ts +199 -0
- package/backend/src/services/a2a/taskManager.ts +327 -0
- package/backend/src/services/a2a/webhookService.ts +161 -0
- package/backend/src/services/agentStorage.ts +506 -0
- package/backend/src/services/askUserQuestion/askUserQuestionIntegration.ts +68 -0
- package/backend/src/services/askUserQuestion/askUserQuestionMcp.ts +173 -0
- package/backend/src/services/askUserQuestion/index.ts +48 -0
- package/backend/src/services/askUserQuestion/init.ts +53 -0
- package/backend/src/services/askUserQuestion/notificationChannel.ts +218 -0
- package/backend/src/services/askUserQuestion/slackNotificationChannel.ts +150 -0
- package/backend/src/services/askUserQuestion/sseNotificationChannel.ts +102 -0
- package/backend/src/services/askUserQuestion/userInputRegistry.ts +307 -0
- package/backend/src/services/claudeSession.ts +421 -0
- package/backend/src/services/claudeVersionStorage.ts +389 -0
- package/backend/src/services/mcpAdmin/__tests__/adminApiKeyService.test.ts +385 -0
- package/backend/src/services/mcpAdmin/__tests__/mcpAdminRoutes.test.ts +356 -0
- package/backend/src/services/mcpAdmin/__tests__/mcpAdminServer.test.ts +541 -0
- package/backend/src/services/mcpAdmin/__tests__/providerTools.test.ts +347 -0
- package/backend/src/services/mcpAdmin/__tests__/tools.test.ts +463 -0
- package/backend/src/services/mcpAdmin/adminApiKeyService.ts +329 -0
- package/backend/src/services/mcpAdmin/index.ts +19 -0
- package/backend/src/services/mcpAdmin/mcpAdminServer.ts +318 -0
- package/backend/src/services/mcpAdmin/tools/agentTools.ts +390 -0
- package/backend/src/services/mcpAdmin/tools/index.ts +29 -0
- package/backend/src/services/mcpAdmin/tools/mcpServerTools.ts +368 -0
- package/backend/src/services/mcpAdmin/tools/projectTools.ts +415 -0
- package/backend/src/services/mcpAdmin/tools/providerTools.ts +649 -0
- package/backend/src/services/mcpAdmin/tools/systemTools.ts +254 -0
- package/backend/src/services/mcpAdmin/types.ts +155 -0
- package/backend/src/services/messageQueue.ts +80 -0
- package/backend/src/services/pluginInstaller.ts +329 -0
- package/backend/src/services/pluginParser.ts +441 -0
- package/backend/src/services/pluginPaths.ts +270 -0
- package/backend/src/services/pluginScanner.ts +245 -0
- package/backend/src/services/pluginSymlink.ts +241 -0
- package/backend/src/services/projectMetadataStorage.ts +871 -0
- package/backend/src/services/scheduledTaskStorage.ts +377 -0
- package/backend/src/services/schedulerService.ts +668 -0
- package/backend/src/services/sessionManager.ts +738 -0
- package/backend/src/services/skillStorage.ts +521 -0
- package/backend/src/services/slackAIService.ts +1395 -0
- package/backend/src/services/slackClient.ts +110 -0
- package/backend/src/services/slackSessionLock.ts +364 -0
- package/backend/src/services/slackThreadMapper.ts +170 -0
- package/backend/src/services/taskExecutor/BuiltinExecutor.ts +611 -0
- package/backend/src/services/taskExecutor/__tests__/a2a-tasks.test.ts +382 -0
- package/backend/src/services/taskExecutor/__tests__/e2e-workflows.test.ts +528 -0
- package/backend/src/services/taskExecutor/__tests__/error-handling.test.ts +458 -0
- package/backend/src/services/taskExecutor/__tests__/stress.test.ts +400 -0
- package/backend/src/services/taskExecutor/__tests__/taskExecutor.integration.test.ts +240 -0
- package/backend/src/services/taskExecutor/__tests__/timeout-cancellation.test.ts +384 -0
- package/backend/src/services/taskExecutor/index.ts +168 -0
- package/backend/src/services/taskExecutor/taskWorker.ts +222 -0
- package/backend/src/services/taskExecutor/types.ts +179 -0
- package/backend/src/services/telemetry.ts +234 -0
- package/backend/src/services/tunnelService.ts +614 -0
- package/backend/src/types/a2a.ts +372 -0
- package/backend/src/types/agents.ts +161 -0
- package/backend/src/types/claude-history.ts +81 -0
- package/backend/src/types/claude-versions.ts +39 -0
- package/backend/src/types/commands.ts +63 -0
- package/backend/src/types/plugins.ts +157 -0
- package/backend/src/types/projects.ts +64 -0
- package/backend/src/types/scheduledTasks.ts +214 -0
- package/backend/src/types/skills.ts +130 -0
- package/backend/src/types/slack.ts +112 -0
- package/backend/src/types/streaming.ts +13 -0
- package/backend/src/types/subagents.ts +29 -0
- package/backend/src/utils/__tests__/claudeUtils.test.ts +312 -0
- package/backend/src/utils/__tests__/configResolver.test.ts +255 -0
- package/backend/src/utils/__tests__/sessionUtils.test.ts +384 -0
- package/backend/src/utils/agentCardCache.ts +245 -0
- package/backend/src/utils/claudeUtils.ts +377 -0
- package/backend/src/utils/configResolver.ts +175 -0
- package/backend/src/utils/fileUtils.ts +5 -0
- package/backend/src/utils/jwt.ts +104 -0
- package/backend/src/utils/networkUtils.ts +68 -0
- package/backend/src/utils/sessionUtils.ts +303 -0
- package/backend/tsconfig.json +25 -0
- package/backend/vitest.config.ts +29 -0
- package/docker-compose.traefik.yml +59 -0
- package/docker-compose.yml +38 -0
- package/docker-entrypoint.sh +30 -0
- package/docs/CLOUDFLARE_TUNNEL.md +233 -0
- package/docs/CLOUDFLARE_TUNNEL_ARCHITECTURE.md +406 -0
- package/docs/LAVS-IMPLEMENTATION.md +1973 -0
- package/docs/LAVS-SPEC.md +951 -0
- package/docs/QUICK_START_CLOUDFLARE_TUNNEL.md +304 -0
- package/docs/SCHEDULER_CONTROL.md +142 -0
- package/docs/SCHEDULER_STATUS_DISPLAY.md +86 -0
- package/docs/USER_MANUAL.md +1726 -0
- package/docs/USER_MANUAL_EN.md +1408 -0
- package/docs/VERSION_COMPATIBILITY.md +616 -0
- package/docs/api/a2a-endpoints.md +891 -0
- package/docs/guides/unified-task-executor-summary.md +365 -0
- package/docs/guides/unified-task-executor.md +304 -0
- package/docs/screenshots/01-homepage.png +0 -0
- package/docs/screenshots/02-dashboard.png +0 -0
- package/docs/screenshots/03-projects.png +0 -0
- package/docs/screenshots/04-agents.png +0 -0
- package/docs/screenshots/05-mcp-services.png +0 -0
- package/docs/screenshots/06-commands.png +0 -0
- package/docs/screenshots/07-chat.png +0 -0
- package/docs/screenshots/08-skills.png +0 -0
- package/docs/screenshots/09-settings.png +0 -0
- package/docs/screenshots/10-suppliers.png +0 -0
- package/docs/screenshots/11-plugins.png +0 -0
- package/docs/screenshots/agent-create-dialog.png +0 -0
- package/docs/screenshots/agent-edit-dialog.png +0 -0
- package/docs/screenshots/agent-list-overview.png +0 -0
- package/docs/screenshots/agent-tools-selection.png +0 -0
- package/docs/screenshots/agents-management.png +0 -0
- package/docs/screenshots/auto-compacted-session.png +0 -0
- package/docs/screenshots/chat-interface.png +0 -0
- package/docs/screenshots/chat-session-debug.png +0 -0
- package/docs/screenshots/chat-session-history.png +0 -0
- package/docs/screenshots/chat-tools-selection.png +0 -0
- package/docs/screenshots/commands-create-dialog.png +0 -0
- package/docs/screenshots/commands-overview.png +0 -0
- package/docs/screenshots/create-project-dialog.png +0 -0
- package/docs/screenshots/dashboard-overview.png +0 -0
- package/docs/screenshots/file-browser-interface.png +0 -0
- package/docs/screenshots/import-project-dialog.png +0 -0
- package/docs/screenshots/mcp-add-service-dialog.png +0 -0
- package/docs/screenshots/mcp-admin-settings.png +0 -0
- package/docs/screenshots/mcp-import-claude-code.png +0 -0
- package/docs/screenshots/mcp-list-overview.png +0 -0
- package/docs/screenshots/mcp-services-page.png +0 -0
- package/docs/screenshots/password-management-modal.png +0 -0
- package/docs/screenshots/plugins-add-market.png +0 -0
- package/docs/screenshots/plugins-browse.png +0 -0
- package/docs/screenshots/plugins-overview.png +0 -0
- package/docs/screenshots/ppt-editor-chat-interface.png +0 -0
- package/docs/screenshots/project-commands-dialog.png +0 -0
- package/docs/screenshots/project-list-overview.png +0 -0
- package/docs/screenshots/project-memory-dialog.png +0 -0
- package/docs/screenshots/project-settings-dialog.png +0 -0
- package/docs/screenshots/project-subagent-dialog.png +0 -0
- package/docs/screenshots/projects-management.png +0 -0
- package/docs/screenshots/projects-overview.png +0 -0
- package/docs/screenshots/scheduled-tasks-create-dialog.png +0 -0
- package/docs/screenshots/scheduled-tasks-execution-history.png +0 -0
- package/docs/screenshots/scheduled-tasks-overview.png +0 -0
- package/docs/screenshots/session-display-issue.png +0 -0
- package/docs/screenshots/session-messages-fix.png +0 -0
- package/docs/screenshots/session-messages-loaded.png +0 -0
- package/docs/screenshots/settings-general.png +0 -0
- package/docs/screenshots/settings-memory.png +0 -0
- package/docs/screenshots/skills-create-dialog.png +0 -0
- package/docs/screenshots/skills-list-overview.png +0 -0
- package/docs/screenshots/skills-view-detail.png +0 -0
- package/docs/screenshots/slide-preview-after-fix.png +0 -0
- package/docs/screenshots/storybook-basetool-full.png +0 -0
- package/docs/screenshots/storybook-fixed.png +0 -0
- package/docs/screenshots/storybook-tasktool.png +0 -0
- package/docs/screenshots/supplier-add-dialog.png +0 -0
- package/docs/screenshots/supplier-edit-dialog.png +0 -0
- package/docs/screenshots/suppliers-overview.png +0 -0
- package/docs/screenshots/telemetry-settings.png +0 -0
- package/docs/screenshots/version-management-page.png +0 -0
- package/docs-site/.vitepress/cache/deps/@theme_index.js +275 -0
- package/docs-site/.vitepress/cache/deps/@theme_index.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/_metadata.json +58 -0
- package/docs-site/.vitepress/cache/deps/chunk-CN42XFKG.js +12824 -0
- package/docs-site/.vitepress/cache/deps/chunk-CN42XFKG.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/chunk-Y3A3J5YD.js +9719 -0
- package/docs-site/.vitepress/cache/deps/chunk-Y3A3J5YD.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/package.json +3 -0
- package/docs-site/.vitepress/cache/deps/vitepress___@vue_devtools-api.js +4505 -0
- package/docs-site/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/vitepress___@vueuse_core.js +583 -0
- package/docs-site/.vitepress/cache/deps/vitepress___@vueuse_core.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/vitepress___@vueuse_integrations_useFocusTrap.js +1352 -0
- package/docs-site/.vitepress/cache/deps/vitepress___@vueuse_integrations_useFocusTrap.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/vitepress___mark__js_src_vanilla__js.js +1665 -0
- package/docs-site/.vitepress/cache/deps/vitepress___mark__js_src_vanilla__js.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/vitepress___minisearch.js +1813 -0
- package/docs-site/.vitepress/cache/deps/vitepress___minisearch.js.map +7 -0
- package/docs-site/.vitepress/cache/deps/vue.js +347 -0
- package/docs-site/.vitepress/cache/deps/vue.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/_metadata.json +52 -0
- package/docs-site/src/.vitepress/cache/deps/chunk-CN42XFKG.js +12824 -0
- package/docs-site/src/.vitepress/cache/deps/chunk-CN42XFKG.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/chunk-Y3A3J5YD.js +9719 -0
- package/docs-site/src/.vitepress/cache/deps/chunk-Y3A3J5YD.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/package.json +3 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___@vue_devtools-api.js +4505 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___@vue_devtools-api.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___@vueuse_core.js +583 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___@vueuse_core.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___@vueuse_integrations_useFocusTrap.js +1352 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___@vueuse_integrations_useFocusTrap.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___mark__js_src_vanilla__js.js +1665 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___mark__js_src_vanilla__js.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___minisearch.js +1813 -0
- package/docs-site/src/.vitepress/cache/deps/vitepress___minisearch.js.map +7 -0
- package/docs-site/src/.vitepress/cache/deps/vue.js +347 -0
- package/docs-site/src/.vitepress/cache/deps/vue.js.map +7 -0
- package/frontend/.storybook/main.ts +22 -0
- package/frontend/.storybook/preview.ts +27 -0
- package/frontend/.storybook/vitest.setup.ts +7 -0
- package/frontend/README.md +69 -0
- package/frontend/components.json +17 -0
- package/frontend/eslint.config.js +26 -0
- package/frontend/index.html +62 -0
- package/frontend/package-lock.json +7922 -0
- package/frontend/package.json +90 -0
- package/frontend/pnpm-lock.yaml +4714 -0
- package/frontend/postcss.config.js +6 -0
- package/frontend/scripts/extract-chinese.js +146 -0
- package/frontend/src/App.css +42 -0
- package/frontend/src/App.tsx +201 -0
- package/frontend/src/__tests__/smoke.test.tsx +15 -0
- package/frontend/src/agents/README.md +136 -0
- package/frontend/src/agents/chat/index.ts +17 -0
- package/frontend/src/agents/registry.ts +22 -0
- package/frontend/src/agents/slides/components/SlidePreview.tsx +287 -0
- package/frontend/src/agents/slides/components/SlidePreviewPanel.tsx +120 -0
- package/frontend/src/agents/slides/hooks/useSlides.ts +245 -0
- package/frontend/src/agents/slides/index.ts +17 -0
- package/frontend/src/agents/slides/stores/useSlidesStore.ts +56 -0
- package/frontend/src/agents/types.ts +18 -0
- package/frontend/src/api/skills.ts +184 -0
- package/frontend/src/assets/react.svg +1 -0
- package/frontend/src/components/AgentChatPanel.tsx +901 -0
- package/frontend/src/components/ApiSettingsModal.tsx +267 -0
- package/frontend/src/components/BackendOnboardingWizard.tsx +255 -0
- package/frontend/src/components/BackendServiceSwitcher.tsx +356 -0
- package/frontend/src/components/CSVPreview.tsx +465 -0
- package/frontend/src/components/ChatMessageRenderer.tsx +279 -0
- package/frontend/src/components/CommandForm.tsx +560 -0
- package/frontend/src/components/CommandSelector.tsx +218 -0
- package/frontend/src/components/CompactSummary.tsx +52 -0
- package/frontend/src/components/ConfirmDialog.tsx +69 -0
- package/frontend/src/components/DiffViewer.css +78 -0
- package/frontend/src/components/DiffViewer.tsx +89 -0
- package/frontend/src/components/EnvVarsConfig.tsx +113 -0
- package/frontend/src/components/ErrorBoundary.tsx +100 -0
- package/frontend/src/components/ErrorMessage.tsx +197 -0
- package/frontend/src/components/FileBrowser.tsx +480 -0
- package/frontend/src/components/FileContentViewer.tsx +155 -0
- package/frontend/src/components/FileExplorer/FileIcon.tsx +32 -0
- package/frontend/src/components/FileExplorer/FilePreview.tsx +130 -0
- package/frontend/src/components/FileExplorer/FileTabs.tsx +104 -0
- package/frontend/src/components/FileExplorer/FileTreeToolbar.tsx +30 -0
- package/frontend/src/components/FileExplorer/ImagePreview.tsx +86 -0
- package/frontend/src/components/FileExplorer/REFACTOR_SUMMARY.md +117 -0
- package/frontend/src/components/FileExplorer/TabDropdown.tsx +59 -0
- package/frontend/src/components/FileExplorer/TreeNode.tsx +73 -0
- package/frontend/src/components/FileExplorer/constants.ts +16 -0
- package/frontend/src/components/FileExplorer/fileTypes.ts +156 -0
- package/frontend/src/components/FileExplorer/hooks/index.ts +2 -0
- package/frontend/src/components/FileExplorer/hooks/useFileTabs.ts +120 -0
- package/frontend/src/components/FileExplorer/hooks/useLazyFileTree.ts +260 -0
- package/frontend/src/components/FileExplorer/index.ts +15 -0
- package/frontend/src/components/FileExplorer.tsx +1124 -0
- package/frontend/src/components/FloatingToggle.tsx +66 -0
- package/frontend/src/components/ImagePreview.tsx +369 -0
- package/frontend/src/components/JSONLPreview.tsx +421 -0
- package/frontend/src/components/LanguageSwitcher.tsx +32 -0
- package/frontend/src/components/Layout.tsx +57 -0
- package/frontend/src/components/MarkdownMessage.tsx +136 -0
- package/frontend/src/components/McpStatusModal.tsx +272 -0
- package/frontend/src/components/MermaidDiagram.tsx +423 -0
- package/frontend/src/components/MobileChatInput.tsx +158 -0
- package/frontend/src/components/MobileChatToolbar.tsx +164 -0
- package/frontend/src/components/MobileNavigation.tsx +101 -0
- package/frontend/src/components/MobileSettingsModal.tsx +272 -0
- package/frontend/src/components/MobileSidebar.tsx +56 -0
- package/frontend/src/components/PanelToggle.tsx +69 -0
- package/frontend/src/components/ProjectA2AModal.tsx +1430 -0
- package/frontend/src/components/ProjectCommandsModal.tsx +453 -0
- package/frontend/src/components/ProjectMemoryModal.tsx +178 -0
- package/frontend/src/components/ProjectSelector.tsx +498 -0
- package/frontend/src/components/ProjectSettingsModal.tsx +210 -0
- package/frontend/src/components/ProjectSubAgentsModal.tsx +421 -0
- package/frontend/src/components/ProjectTable.tsx +387 -0
- package/frontend/src/components/ProtectedRoute.tsx +123 -0
- package/frontend/src/components/RecentActivity.tsx +145 -0
- package/frontend/src/components/ResponsiveTable.tsx +164 -0
- package/frontend/src/components/RightPanelHeader.tsx +87 -0
- package/frontend/src/components/RightPanelWrapper.tsx +74 -0
- package/frontend/src/components/ScheduledTaskEditor.tsx +718 -0
- package/frontend/src/components/ServiceManagementModal.tsx +794 -0
- package/frontend/src/components/ServiceStatusIndicator.tsx +334 -0
- package/frontend/src/components/SessionsDashboard.tsx +295 -0
- package/frontend/src/components/SessionsDropdown.tsx +168 -0
- package/frontend/src/components/SettingsDropdown.tsx +236 -0
- package/frontend/src/components/SettingsLayout.tsx +16 -0
- package/frontend/src/components/Sidebar.tsx +283 -0
- package/frontend/src/components/SplitLayout.tsx +261 -0
- package/frontend/src/components/SubagentForm.tsx +468 -0
- package/frontend/src/components/SwipeActions.tsx +413 -0
- package/frontend/src/components/SystemPromptEditor.tsx +126 -0
- package/frontend/src/components/TaskExecutionHistory.tsx +373 -0
- package/frontend/src/components/TelemetryProvider.tsx +157 -0
- package/frontend/src/components/ToolUsage.tsx +34 -0
- package/frontend/src/components/ToolsList.tsx +86 -0
- package/frontend/src/components/UnifiedToolSelector.tsx +508 -0
- package/frontend/src/components/UpdateNotification.tsx +105 -0
- package/frontend/src/components/agentChat/AgentChatInput.tsx +249 -0
- package/frontend/src/components/agentChat/AgentChatMobileInput.tsx +266 -0
- package/frontend/src/components/agentChat/AgentCommandSelector.tsx +226 -0
- package/frontend/src/components/agentChat/AgentInputArea.tsx +573 -0
- package/frontend/src/components/agentChat/ChatMessageList.tsx +125 -0
- package/frontend/src/components/agentChat/index.ts +7 -0
- package/frontend/src/components/onboarding/BackendDetectingStep.tsx +42 -0
- package/frontend/src/components/onboarding/BackendFoundStep.tsx +75 -0
- package/frontend/src/components/onboarding/BackendNotFoundStep.tsx +249 -0
- package/frontend/src/components/onboarding/OnboardingCompleteStep.tsx +90 -0
- package/frontend/src/components/onboarding/WelcomeStep.tsx +93 -0
- package/frontend/src/components/plugins/AddMarketplaceModal.tsx +186 -0
- package/frontend/src/components/plugins/BrowsePluginsTab.tsx +262 -0
- package/frontend/src/components/plugins/InstalledPluginsTab.tsx +246 -0
- package/frontend/src/components/plugins/MarketplacesTab.tsx +168 -0
- package/frontend/src/components/plugins/PluginDetailModal.tsx +307 -0
- package/frontend/src/components/settings/version/ClaudeVersionForm.tsx +266 -0
- package/frontend/src/components/settings/version/ClaudeVersionList.tsx +61 -0
- package/frontend/src/components/settings/version/EnvironmentVariablesSection.tsx +173 -0
- package/frontend/src/components/settings/version/ModelConfigSection.tsx +129 -0
- package/frontend/src/components/settings/version/VersionListItem.tsx +133 -0
- package/frontend/src/components/settings/version/VersionTemplateSelector.tsx +53 -0
- package/frontend/src/components/skills/CreateSkillModal.tsx +702 -0
- package/frontend/src/components/skills/SkillDetailModal.tsx +180 -0
- package/frontend/src/components/skills/SkillFileBrowserModal.tsx +67 -0
- package/frontend/src/components/skills/SkillPreview.tsx +150 -0
- package/frontend/src/components/skills/SkillsPage.tsx +329 -0
- package/frontend/src/components/skills/index.ts +4 -0
- package/frontend/src/components/tools/A2ACallTool.tsx +733 -0
- package/frontend/src/components/tools/AskUserQuestionTool.stories.tsx +223 -0
- package/frontend/src/components/tools/AskUserQuestionTool.tsx +546 -0
- package/frontend/src/components/tools/BaseToolComponent.stories.tsx +316 -0
- package/frontend/src/components/tools/BaseToolComponent.tsx +226 -0
- package/frontend/src/components/tools/BashOutputTool.stories.tsx +106 -0
- package/frontend/src/components/tools/BashOutputTool.tsx +198 -0
- package/frontend/src/components/tools/BashTool.stories.tsx +163 -0
- package/frontend/src/components/tools/BashTool.tsx +80 -0
- package/frontend/src/components/tools/EditTool.stories.tsx +109 -0
- package/frontend/src/components/tools/EditTool.tsx +60 -0
- package/frontend/src/components/tools/ExitPlanModeTool.stories.tsx +118 -0
- package/frontend/src/components/tools/ExitPlanModeTool.tsx +34 -0
- package/frontend/src/components/tools/GlobTool.stories.tsx +122 -0
- package/frontend/src/components/tools/GlobTool.tsx +50 -0
- package/frontend/src/components/tools/GrepTool.stories.tsx +125 -0
- package/frontend/src/components/tools/GrepTool.tsx +87 -0
- package/frontend/src/components/tools/KillBashTool.stories.tsx +120 -0
- package/frontend/src/components/tools/KillBashTool.tsx +112 -0
- package/frontend/src/components/tools/LSTool.stories.tsx +132 -0
- package/frontend/src/components/tools/LSTool.tsx +41 -0
- package/frontend/src/components/tools/ListMcpResourcesTool.stories.tsx +125 -0
- package/frontend/src/components/tools/ListMcpResourcesTool.tsx +84 -0
- package/frontend/src/components/tools/McpTool.stories.tsx +140 -0
- package/frontend/src/components/tools/McpTool.tsx +266 -0
- package/frontend/src/components/tools/MultiEditTool.stories.tsx +127 -0
- package/frontend/src/components/tools/MultiEditTool.tsx +59 -0
- package/frontend/src/components/tools/NotebookEditTool.stories.tsx +137 -0
- package/frontend/src/components/tools/NotebookEditTool.tsx +57 -0
- package/frontend/src/components/tools/NotebookReadTool.stories.tsx +134 -0
- package/frontend/src/components/tools/NotebookReadTool.tsx +25 -0
- package/frontend/src/components/tools/README.md +677 -0
- package/frontend/src/components/tools/ReadMcpResourceTool.stories.tsx +125 -0
- package/frontend/src/components/tools/ReadMcpResourceTool.tsx +126 -0
- package/frontend/src/components/tools/ReadTool.stories.tsx +116 -0
- package/frontend/src/components/tools/ReadTool.tsx +37 -0
- package/frontend/src/components/tools/SkillTool.tsx +91 -0
- package/frontend/src/components/tools/SubAgentMessageFlow.tsx +172 -0
- package/frontend/src/components/tools/TaskTool.stories.tsx +483 -0
- package/frontend/src/components/tools/TaskTool.tsx +199 -0
- package/frontend/src/components/tools/TimeMachineTool.stories.tsx +254 -0
- package/frontend/src/components/tools/TimeMachineTool.tsx +126 -0
- package/frontend/src/components/tools/TodoWriteTool.stories.tsx +128 -0
- package/frontend/src/components/tools/TodoWriteTool.tsx +74 -0
- package/frontend/src/components/tools/ToolRenderer.stories.tsx +460 -0
- package/frontend/src/components/tools/ToolRenderer.tsx +147 -0
- package/frontend/src/components/tools/WebFetchTool.stories.tsx +114 -0
- package/frontend/src/components/tools/WebFetchTool.tsx +50 -0
- package/frontend/src/components/tools/WebSearchTool.stories.tsx +124 -0
- package/frontend/src/components/tools/WebSearchTool.tsx +67 -0
- package/frontend/src/components/tools/WriteTool.stories.tsx +115 -0
- package/frontend/src/components/tools/WriteTool.tsx +41 -0
- package/frontend/src/components/tools/__mocks__/toolTestData.ts +557 -0
- package/frontend/src/components/tools/customMcpTools.tsx +17 -0
- package/frontend/src/components/tools/index.stories.tsx +107 -0
- package/frontend/src/components/tools/index.ts +24 -0
- package/frontend/src/components/tools/mcpUtils.ts +27 -0
- package/frontend/src/components/tools/sdk-types.ts +327 -0
- package/frontend/src/components/tools/types.ts +218 -0
- package/frontend/src/components/ui/Button.tsx +39 -0
- package/frontend/src/components/ui/Input.tsx +24 -0
- package/frontend/src/components/ui/Textarea.tsx +23 -0
- package/frontend/src/components/ui/VersionInfo.tsx +116 -0
- package/frontend/src/components/ui/dialog.tsx +90 -0
- package/frontend/src/components/ui/index.ts +4 -0
- package/frontend/src/components/ui/label.tsx +19 -0
- package/frontend/src/components/ui/select.tsx +121 -0
- package/frontend/src/components/ui/table.tsx +117 -0
- package/frontend/src/components/ui/tabs.tsx +124 -0
- package/frontend/src/components/ui/toast.tsx +127 -0
- package/frontend/src/components/ui/toaster.tsx +33 -0
- package/frontend/src/contexts/MobileContext.tsx +109 -0
- package/frontend/src/hooks/__tests__/useAIStreamHandler.test.ts +1198 -0
- package/frontend/src/hooks/agentChat/index.ts +10 -0
- package/frontend/src/hooks/agentChat/useAIStreamHandler.ts +1594 -0
- package/frontend/src/hooks/agentChat/useClaudeVersionManager.ts +99 -0
- package/frontend/src/hooks/agentChat/useCommandCompletion.ts +253 -0
- package/frontend/src/hooks/agentChat/useImageUpload.ts +176 -0
- package/frontend/src/hooks/agentChat/useMessageSender.ts +391 -0
- package/frontend/src/hooks/agentChat/useScrollManagement.ts +66 -0
- package/frontend/src/hooks/agentChat/useSessionManager.ts +110 -0
- package/frontend/src/hooks/agentChat/useToolSelector.ts +82 -0
- package/frontend/src/hooks/agentChat/useUIState.ts +103 -0
- package/frontend/src/hooks/index.ts +3 -0
- package/frontend/src/hooks/use-toast.ts +194 -0
- package/frontend/src/hooks/useA2AConfig.ts +224 -0
- package/frontend/src/hooks/useA2AManagement.ts +456 -0
- package/frontend/src/hooks/useAI.ts +264 -0
- package/frontend/src/hooks/useAgents.ts +411 -0
- package/frontend/src/hooks/useApiBase.ts +31 -0
- package/frontend/src/hooks/useAuth.ts +454 -0
- package/frontend/src/hooks/useBackendServices.ts +58 -0
- package/frontend/src/hooks/useClaudeVersions.ts +128 -0
- package/frontend/src/hooks/useCommands.ts +312 -0
- package/frontend/src/hooks/useDashboardStats.ts +61 -0
- package/frontend/src/hooks/useFileSystem.ts +349 -0
- package/frontend/src/hooks/useFiles.ts +80 -0
- package/frontend/src/hooks/useMarketplaces.ts +120 -0
- package/frontend/src/hooks/useMobile.tsx +110 -0
- package/frontend/src/hooks/usePlugins.ts +239 -0
- package/frontend/src/hooks/useProjects.ts +45 -0
- package/frontend/src/hooks/useResponsiveSettings.tsx +22 -0
- package/frontend/src/hooks/useScheduledTasks.ts +483 -0
- package/frontend/src/hooks/useSessionHeartbeat.ts +173 -0
- package/frontend/src/hooks/useSessionHeartbeatOnSuccess.ts +80 -0
- package/frontend/src/hooks/useSessions.ts +96 -0
- package/frontend/src/hooks/useSkills.ts +197 -0
- package/frontend/src/hooks/useSubagents.ts +274 -0
- package/frontend/src/hooks/useTabNotification.ts +155 -0
- package/frontend/src/hooks/useVersionCheck.ts +164 -0
- package/frontend/src/i18n/index.ts +66 -0
- package/frontend/src/i18n/locales/en-US/agents.json +85 -0
- package/frontend/src/i18n/locales/en-US/common.json +155 -0
- package/frontend/src/i18n/locales/en-US/components.json +1197 -0
- package/frontend/src/i18n/locales/en-US/errors.json +56 -0
- package/frontend/src/i18n/locales/en-US/home.json +27 -0
- package/frontend/src/i18n/locales/en-US/onboarding.json +122 -0
- package/frontend/src/i18n/locales/en-US/pages.json +1409 -0
- package/frontend/src/i18n/locales/en-US/skills.json +120 -0
- package/frontend/src/i18n/locales/zh-CN/agents.json +85 -0
- package/frontend/src/i18n/locales/zh-CN/common.json +155 -0
- package/frontend/src/i18n/locales/zh-CN/components.json +1199 -0
- package/frontend/src/i18n/locales/zh-CN/errors.json +56 -0
- package/frontend/src/i18n/locales/zh-CN/home.json +27 -0
- package/frontend/src/i18n/locales/zh-CN/onboarding.json +122 -0
- package/frontend/src/i18n/locales/zh-CN/pages.json +1540 -0
- package/frontend/src/i18n/locales/zh-CN/pages.json.tmp +0 -0
- package/frontend/src/i18n/locales/zh-CN/pages_new.json +0 -0
- package/frontend/src/i18n/locales/zh-CN/skills.json +120 -0
- package/frontend/src/i18n/types.ts +19 -0
- package/frontend/src/index.css +112 -0
- package/frontend/src/lib/authFetch.ts +183 -0
- package/frontend/src/lib/config.ts +120 -0
- package/frontend/src/lib/utils.ts +6 -0
- package/frontend/src/main.tsx +13 -0
- package/frontend/src/pages/AgentsPage.tsx +781 -0
- package/frontend/src/pages/AnalyticsPage.tsx +363 -0
- package/frontend/src/pages/ChatPage.tsx +286 -0
- package/frontend/src/pages/CommandsPage.tsx +445 -0
- package/frontend/src/pages/DashboardPage.tsx +519 -0
- package/frontend/src/pages/HomePage.tsx +223 -0
- package/frontend/src/pages/LandingPage.tsx +607 -0
- package/frontend/src/pages/LoginPage.tsx +510 -0
- package/frontend/src/pages/McpPage.tsx +1049 -0
- package/frontend/src/pages/PluginsPage.tsx +98 -0
- package/frontend/src/pages/ProjectSettings/A2AConfigTab.tsx +468 -0
- package/frontend/src/pages/ProjectsPage.tsx +818 -0
- package/frontend/src/pages/ScheduledTasksPage.tsx +574 -0
- package/frontend/src/pages/SkillsPage.tsx +6 -0
- package/frontend/src/pages/ToastTestPage.tsx +33 -0
- package/frontend/src/pages/index.ts +3 -0
- package/frontend/src/pages/settings/ApiSettingsPage.tsx +240 -0
- package/frontend/src/pages/settings/CloudflareTunnelPage.tsx +730 -0
- package/frontend/src/pages/settings/GeneralSettingsPage.tsx +456 -0
- package/frontend/src/pages/settings/McpAdminSettingsPage.tsx +1088 -0
- package/frontend/src/pages/settings/MemorySettingsPage.tsx +153 -0
- package/frontend/src/pages/settings/SubagentsPage.tsx +412 -0
- package/frontend/src/pages/settings/SystemInfoPage.tsx +268 -0
- package/frontend/src/pages/settings/TelemetrySettingsPage.tsx +175 -0
- package/frontend/src/pages/settings/VersionSettingsPage.tsx +366 -0
- package/frontend/src/pages/settings/WebSocketTunnelPage.tsx +1578 -0
- package/frontend/src/stores/authStore.ts +99 -0
- package/frontend/src/stores/useAgentStore.ts +426 -0
- package/frontend/src/stores/useSubAgentStore.ts +207 -0
- package/frontend/src/styles/mobile.css +156 -0
- package/frontend/src/test/setup.ts +64 -0
- package/frontend/src/types/agents.ts +109 -0
- package/frontend/src/types/backendServices.ts +20 -0
- package/frontend/src/types/claude-versions.ts +45 -0
- package/frontend/src/types/commands.ts +63 -0
- package/frontend/src/types/index.ts +171 -0
- package/frontend/src/types/plugins.ts +128 -0
- package/frontend/src/types/scheduledTasks.ts +140 -0
- package/frontend/src/types/skills.ts +161 -0
- package/frontend/src/types/subagents.ts +48 -0
- package/frontend/src/types/versionTemplates.ts +270 -0
- package/frontend/src/utils/authHelpers.ts +89 -0
- package/frontend/src/utils/backendServiceStorage.ts +100 -0
- package/frontend/src/utils/commandFormatter.ts +100 -0
- package/frontend/src/utils/commandGenerator.ts +72 -0
- package/frontend/src/utils/commandHandler.ts +205 -0
- package/frontend/src/utils/dateFormat.ts +35 -0
- package/frontend/src/utils/eventBus.ts +53 -0
- package/frontend/src/utils/index.ts +34 -0
- package/frontend/src/utils/onboardingStorage.ts +40 -0
- package/frontend/src/utils/smartNavigation.ts +244 -0
- package/frontend/src/utils/streamReader.ts +32 -0
- package/frontend/src/utils/systemCommands.ts +49 -0
- package/frontend/src/utils/tabManager.ts +816 -0
- package/frontend/src/utils/toast.ts +49 -0
- package/frontend/src/utils/toolMapping.ts +83 -0
- package/frontend/src/vite-env.d.ts +3 -0
- package/frontend/tailwind.config.js +119 -0
- package/frontend/tsconfig.app.json +33 -0
- package/frontend/tsconfig.json +7 -0
- package/frontend/tsconfig.node.json +25 -0
- package/frontend/vite.config.ts +73 -0
- package/frontend/vitest.config.ts +39 -0
- package/frontend/vitest.shims.d.ts +1 -0
- package/nginx.conf +153 -0
- package/package.json +38 -49
- package/pnpm-workspace.yaml +3 -0
- package/scripts/API_KEY_GENERATION_README.md +181 -0
- package/scripts/README-nginx.md +327 -0
- package/scripts/README.md +259 -0
- package/scripts/build-complete.js +98 -0
- package/scripts/build-npm.js +251 -0
- package/scripts/check-system.sh +153 -0
- package/scripts/cloudflare_tunnel.py +292 -0
- package/scripts/deploy-feature.sh +265 -0
- package/scripts/generate-api-key.ts +59 -0
- package/scripts/install-linux.sh +1507 -0
- package/scripts/install-macos.sh +1194 -0
- package/scripts/remote-install.sh +244 -0
- package/scripts/remove-feature.sh +214 -0
- package/scripts/remove.sh +390 -0
- package/scripts/requirements.txt +1 -0
- package/scripts/restore.sh +331 -0
- package/scripts/setup-nginx-ssl.sh +242 -0
- package/scripts/setup_nginx.sh +110 -0
- package/scripts/windows-install-simple.bat +277 -0
- package/scripts/windows-install.ps1 +620 -0
- package/tsconfig.json +30 -0
- package/vercel.json +44 -0
- package/bin/agentstudio.d.ts +0 -3
- package/bin/agentstudio.d.ts.map +0 -1
- package/bin/agentstudio.js +0 -327
- package/bin/agentstudio.js.map +0 -1
- package/bin/serviceManager.d.ts +0 -16
- package/bin/serviceManager.d.ts.map +0 -1
- package/bin/serviceManager.js +0 -434
- package/bin/serviceManager.js.map +0 -1
- package/config/index.d.ts +0 -74
- package/config/index.d.ts.map +0 -1
- package/config/index.js +0 -166
- package/config/index.js.map +0 -1
- package/config/paths.d.ts +0 -81
- package/config/paths.d.ts.map +0 -1
- package/config/paths.js +0 -98
- package/config/paths.js.map +0 -1
- package/index.d.ts +0 -4
- package/index.d.ts.map +0 -1
- package/index.js +0 -425
- package/index.js.map +0 -1
- package/jobs/taskTimeoutMonitor.d.ts +0 -25
- package/jobs/taskTimeoutMonitor.d.ts.map +0 -1
- package/jobs/taskTimeoutMonitor.js +0 -94
- package/jobs/taskTimeoutMonitor.js.map +0 -1
- package/middleware/a2aAuth.d.ts +0 -38
- package/middleware/a2aAuth.d.ts.map +0 -1
- package/middleware/a2aAuth.js +0 -134
- package/middleware/a2aAuth.js.map +0 -1
- package/middleware/auth.d.ts +0 -9
- package/middleware/auth.d.ts.map +0 -1
- package/middleware/auth.js +0 -35
- package/middleware/auth.js.map +0 -1
- package/middleware/httpsOnly.d.ts +0 -75
- package/middleware/httpsOnly.d.ts.map +0 -1
- package/middleware/httpsOnly.js +0 -189
- package/middleware/httpsOnly.js.map +0 -1
- package/middleware/rateLimiting.d.ts +0 -37
- package/middleware/rateLimiting.d.ts.map +0 -1
- package/middleware/rateLimiting.js +0 -118
- package/middleware/rateLimiting.js.map +0 -1
- package/public/assets/AgentsPage-Cl2yOPj5.js +0 -10
- package/public/assets/Button-DPVn3zDJ.js +0 -1
- package/public/assets/ChatPage-BAslLt2l.js +0 -471
- package/public/assets/ChatPage-BvQmXfcP.css +0 -1
- package/public/assets/CommandForm-C8RL-p7h.js +0 -7
- package/public/assets/CommandsPage-DakxsAcv.js +0 -1
- package/public/assets/DashboardPage-Dz5tihOs.js +0 -1
- package/public/assets/FileBrowser-BXtVLz8h.js +0 -6
- package/public/assets/FileExplorer-DFQ7ynXa.js +0 -1
- package/public/assets/GeneralSettingsPage-CWWgquA9.js +0 -1
- package/public/assets/LandingPage-BDKkpXK0.js +0 -1
- package/public/assets/LoginPage-1PbdWrXW.js +0 -16
- package/public/assets/McpAdminSettingsPage-BlTO82W3.js +0 -7
- package/public/assets/McpPage-Bix7CnMS.js +0 -20
- package/public/assets/MemorySettingsPage-Dzq3vCns.js +0 -1
- package/public/assets/PluginsPage-oYSGDv3z.js +0 -1
- package/public/assets/ProjectSelector-Bp1q7dra.js +0 -1
- package/public/assets/ProjectsPage-BKpI8KE2.js +0 -21
- package/public/assets/ScheduledTasksPage-D2rYw_Qf.js +0 -1
- package/public/assets/SettingsLayout-CfmsuehF.js +0 -1
- package/public/assets/SkillsPage-D01PYcoW.js +0 -18
- package/public/assets/SubagentForm-CSRBsxUE.js +0 -7
- package/public/assets/SubagentsPage-CDaYnbfn.js +0 -1
- package/public/assets/SystemInfoPage-DAeYkq91.js +0 -1
- package/public/assets/TelemetrySettingsPage-BPuPqJPR.js +0 -1
- package/public/assets/ToastTestPage-DkZ9D943.js +0 -1
- package/public/assets/ToolsList-Ci2lqPin.js +0 -1
- package/public/assets/UnifiedToolSelector-CKjY_qjS.js +0 -1
- package/public/assets/VersionSettingsPage-DHUbqInQ.js +0 -5
- package/public/assets/WebSocketTunnelPage-BGeVdEp8.js +0 -1
- package/public/assets/_basePickBy-BFNUdIR5.js +0 -1
- package/public/assets/_baseUniq-DP62Yq8R.js +0 -1
- package/public/assets/agents-DG431Wop.js +0 -1
- package/public/assets/agents-DwCY2K8p.css +0 -1
- package/public/assets/arc-CkNwuwWZ.js +0 -1
- package/public/assets/architectureDiagram-VXUJARFQ-7Ky7pc6T.js +0 -36
- package/public/assets/blockDiagram-VD42YOAC-Ax8FYBYm.js +0 -122
- package/public/assets/c4Diagram-YG6GDRKO-CyNR39OO.js +0 -10
- package/public/assets/channel-BKv1iINC.js +0 -1
- package/public/assets/chunk-4BX2VUAB-zM0Al_rU.js +0 -1
- package/public/assets/chunk-55IACEB6-CCDkr_yY.js +0 -1
- package/public/assets/chunk-B4BG7PRW-yOb-P7Po.js +0 -165
- package/public/assets/chunk-DI55MBZ5-zGH8m4eb.js +0 -220
- package/public/assets/chunk-FMBD7UC4-DI1MjWfw.js +0 -15
- package/public/assets/chunk-QN33PNHL-C_FDNT8n.js +0 -1
- package/public/assets/chunk-QZHKN3VN-V_K-gce9.js +0 -1
- package/public/assets/chunk-TZMSLE5B-BnNBbkNq.js +0 -1
- package/public/assets/classDiagram-2ON5EDUG-DWylXt6j.js +0 -1
- package/public/assets/classDiagram-v2-WZHVMYZB-DWylXt6j.js +0 -1
- package/public/assets/clone-BnTQiQb4.js +0 -1
- package/public/assets/cose-bilkent-S5V4N54A-DrNb0vKp.js +0 -1
- package/public/assets/cytoscape.esm-DtBltrT8.js +0 -331
- package/public/assets/dagre-6UL2VRFP-CtKFNLmb.js +0 -4
- package/public/assets/data-structures-C0h9Oap1.js +0 -27
- package/public/assets/dateFormat-CXa8VnEC.js +0 -1
- package/public/assets/defaultLocale-C4B-KCzX.js +0 -1
- package/public/assets/diagram-PSM6KHXK-DpQfOKt-.js +0 -24
- package/public/assets/diagram-QEK2KX5R-DscZmfZJ.js +0 -43
- package/public/assets/diagram-S2PKOQOG-UbEZAQ1u.js +0 -24
- package/public/assets/erDiagram-Q2GNP2WA-mmTcLBrY.js +0 -60
- package/public/assets/flowDiagram-NV44I4VS-BsIXhV1w.js +0 -162
- package/public/assets/ganttDiagram-LVOFAZNH-CaHkiTYy.js +0 -267
- package/public/assets/gitGraphDiagram-NY62KEGX-B-ctMH3l.js +0 -65
- package/public/assets/graph-CtuWuGCI.js +0 -1
- package/public/assets/index-D9bAK8SN.js +0 -297
- package/public/assets/index-DBxcQY5U.css +0 -1
- package/public/assets/infoDiagram-F6ZHWCRC-DMsG_8YD.js +0 -2
- package/public/assets/init-Gi6I4Gst.js +0 -1
- package/public/assets/journeyDiagram-XKPGCS4Q-XnBAE0k9.js +0 -139
- package/public/assets/kanban-definition-3W4ZIXB7-DY1J_CQA.js +0 -89
- package/public/assets/katex-qrhCpa0F.js +0 -261
- package/public/assets/layout-BBAqRBns.js +0 -1
- package/public/assets/linear-DXGOqRyX.js +0 -1
- package/public/assets/mindmap-definition-VGOIOE7T-D8LYlQnr.js +0 -68
- package/public/assets/monaco-editor-DHKm5-VF.js +0 -19
- package/public/assets/ordinal-Cboi1Yqb.js +0 -1
- package/public/assets/pieDiagram-ADFJNKIX-DqZw-HeQ.js +0 -30
- package/public/assets/quadrantDiagram-AYHSOK5B-CfjEkg6d.js +0 -7
- package/public/assets/requirementDiagram-UZGBJVZJ-CEbDefgn.js +0 -64
- package/public/assets/sankeyDiagram-TZEHDZUN-DOU4OJks.js +0 -10
- package/public/assets/sequenceDiagram-WL72ISMW-BmjWQ4oi.js +0 -145
- package/public/assets/stateDiagram-FKZM4ZOC-C7lI7uz2.js +0 -1
- package/public/assets/stateDiagram-v2-4FDKWEC3-C8Eo5YFb.js +0 -1
- package/public/assets/syntax-highlighting-CnREyncB.js +0 -24
- package/public/assets/table-F592JIUY.js +0 -1
- package/public/assets/timeline-definition-IT6M3QCI-BltidY3A.js +0 -61
- package/public/assets/tools-C0JOzoE_.js +0 -1
- package/public/assets/treemap-KMMF4GRG-CXskbtZo.js +0 -128
- package/public/assets/ui-components-CRCmgMKc.js +0 -646
- package/public/assets/useAgents-Bp5Ry-Dk.js +0 -2
- package/public/assets/useClaudeVersions-DYM2HCGW.js +0 -1
- package/public/assets/useCommands-B0s3JzZs.js +0 -1
- package/public/assets/useProjects-DuCnMeYt.js +0 -1
- package/public/assets/useSessions-EknKfdIv.js +0 -1
- package/public/assets/xychartDiagram-PRI3JC2R-Bk3p1DGz.js +0 -7
- package/public/index.html +0 -70
- package/routes/__tests__/a2a.integration.test.d.ts +0 -11
- package/routes/__tests__/a2a.integration.test.d.ts.map +0 -1
- package/routes/__tests__/a2a.integration.test.js +0 -314
- package/routes/__tests__/a2a.integration.test.js.map +0 -1
- package/routes/__tests__/a2a.test.d.ts +0 -6
- package/routes/__tests__/a2a.test.d.ts.map +0 -1
- package/routes/__tests__/a2a.test.js +0 -622
- package/routes/__tests__/a2a.test.js.map +0 -1
- package/routes/__tests__/agents.test.d.ts +0 -6
- package/routes/__tests__/agents.test.d.ts.map +0 -1
- package/routes/__tests__/agents.test.js +0 -315
- package/routes/__tests__/agents.test.js.map +0 -1
- package/routes/__tests__/sessions.test.d.ts +0 -7
- package/routes/__tests__/sessions.test.d.ts.map +0 -1
- package/routes/__tests__/sessions.test.js +0 -330
- package/routes/__tests__/sessions.test.js.map +0 -1
- package/routes/a2a.d.ts +0 -18
- package/routes/a2a.d.ts.map +0 -1
- package/routes/a2a.js +0 -718
- package/routes/a2a.js.map +0 -1
- package/routes/a2a.streaming.test.d.ts +0 -2
- package/routes/a2a.streaming.test.d.ts.map +0 -1
- package/routes/a2a.streaming.test.js +0 -167
- package/routes/a2a.streaming.test.js.map +0 -1
- package/routes/a2aManagement.d.ts +0 -21
- package/routes/a2aManagement.d.ts.map +0 -1
- package/routes/a2aManagement.js +0 -466
- package/routes/a2aManagement.js.map +0 -1
- package/routes/agents.d.ts +0 -4
- package/routes/agents.d.ts.map +0 -1
- package/routes/agents.js +0 -1026
- package/routes/agents.js.map +0 -1
- package/routes/auth.d.ts +0 -4
- package/routes/auth.d.ts.map +0 -1
- package/routes/auth.js +0 -135
- package/routes/auth.js.map +0 -1
- package/routes/cloudflareTunnel.d.ts +0 -4
- package/routes/cloudflareTunnel.d.ts.map +0 -1
- package/routes/cloudflareTunnel.js +0 -250
- package/routes/cloudflareTunnel.js.map +0 -1
- package/routes/commands.d.ts +0 -4
- package/routes/commands.d.ts.map +0 -1
- package/routes/commands.js +0 -479
- package/routes/commands.js.map +0 -1
- package/routes/config.d.ts +0 -4
- package/routes/config.d.ts.map +0 -1
- package/routes/config.js +0 -211
- package/routes/config.js.map +0 -1
- package/routes/files.d.ts +0 -4
- package/routes/files.d.ts.map +0 -1
- package/routes/files.js +0 -361
- package/routes/files.js.map +0 -1
- package/routes/mcp.d.ts +0 -26
- package/routes/mcp.d.ts.map +0 -1
- package/routes/mcp.js +0 -796
- package/routes/mcp.js.map +0 -1
- package/routes/mcpAdmin.d.ts +0 -16
- package/routes/mcpAdmin.d.ts.map +0 -1
- package/routes/mcpAdmin.js +0 -308
- package/routes/mcpAdmin.js.map +0 -1
- package/routes/mcpAdminManagement.d.ts +0 -17
- package/routes/mcpAdminManagement.d.ts.map +0 -1
- package/routes/mcpAdminManagement.js +0 -345
- package/routes/mcpAdminManagement.js.map +0 -1
- package/routes/media.d.ts +0 -5
- package/routes/media.d.ts.map +0 -1
- package/routes/media.js +0 -127
- package/routes/media.js.map +0 -1
- package/routes/mediaAuth.d.ts +0 -8
- package/routes/mediaAuth.d.ts.map +0 -1
- package/routes/mediaAuth.js +0 -136
- package/routes/mediaAuth.js.map +0 -1
- package/routes/network.d.ts +0 -9
- package/routes/network.d.ts.map +0 -1
- package/routes/network.js +0 -60
- package/routes/network.js.map +0 -1
- package/routes/plugins.d.ts +0 -4
- package/routes/plugins.d.ts.map +0 -1
- package/routes/plugins.js +0 -339
- package/routes/plugins.js.map +0 -1
- package/routes/projects.d.ts +0 -4
- package/routes/projects.d.ts.map +0 -1
- package/routes/projects.js +0 -1000
- package/routes/projects.js.map +0 -1
- package/routes/scheduledTasks.d.ts +0 -9
- package/routes/scheduledTasks.d.ts.map +0 -1
- package/routes/scheduledTasks.js +0 -386
- package/routes/scheduledTasks.js.map +0 -1
- package/routes/sessions.d.ts +0 -4
- package/routes/sessions.d.ts.map +0 -1
- package/routes/sessions.js +0 -966
- package/routes/sessions.js.map +0 -1
- package/routes/settings.d.ts +0 -4
- package/routes/settings.d.ts.map +0 -1
- package/routes/settings.js +0 -499
- package/routes/settings.js.map +0 -1
- package/routes/skills.d.ts +0 -4
- package/routes/skills.d.ts.map +0 -1
- package/routes/skills.js +0 -272
- package/routes/skills.js.map +0 -1
- package/routes/slack.d.ts +0 -10
- package/routes/slack.d.ts.map +0 -1
- package/routes/slack.js +0 -189
- package/routes/slack.js.map +0 -1
- package/routes/slides.d.ts +0 -4
- package/routes/slides.d.ts.map +0 -1
- package/routes/slides.js +0 -148
- package/routes/slides.js.map +0 -1
- package/routes/subagents.d.ts +0 -4
- package/routes/subagents.d.ts.map +0 -1
- package/routes/subagents.js +0 -331
- package/routes/subagents.js.map +0 -1
- package/routes/taskExecutor.d.ts +0 -9
- package/routes/taskExecutor.d.ts.map +0 -1
- package/routes/taskExecutor.js +0 -224
- package/routes/taskExecutor.js.map +0 -1
- package/routes/tunnel.d.ts +0 -10
- package/routes/tunnel.d.ts.map +0 -1
- package/routes/tunnel.js +0 -296
- package/routes/tunnel.js.map +0 -1
- package/routes/version.d.ts +0 -4
- package/routes/version.d.ts.map +0 -1
- package/routes/version.js +0 -216
- package/routes/version.js.map +0 -1
- package/schemas/a2a.d.ts +0 -946
- package/schemas/a2a.d.ts.map +0 -1
- package/schemas/a2a.js +0 -316
- package/schemas/a2a.js.map +0 -1
- package/scripts/postinstall.js +0 -10
- package/services/__tests__/pluginInstaller.test.d.ts +0 -5
- package/services/__tests__/pluginInstaller.test.d.ts.map +0 -1
- package/services/__tests__/pluginInstaller.test.js +0 -290
- package/services/__tests__/pluginInstaller.test.js.map +0 -1
- package/services/__tests__/pluginParser.test.d.ts +0 -5
- package/services/__tests__/pluginParser.test.d.ts.map +0 -1
- package/services/__tests__/pluginParser.test.js +0 -272
- package/services/__tests__/pluginParser.test.js.map +0 -1
- package/services/__tests__/pluginPaths.test.d.ts +0 -5
- package/services/__tests__/pluginPaths.test.d.ts.map +0 -1
- package/services/__tests__/pluginPaths.test.js +0 -221
- package/services/__tests__/pluginPaths.test.js.map +0 -1
- package/services/__tests__/pluginScanner.test.d.ts +0 -5
- package/services/__tests__/pluginScanner.test.d.ts.map +0 -1
- package/services/__tests__/pluginScanner.test.js +0 -272
- package/services/__tests__/pluginScanner.test.js.map +0 -1
- package/services/__tests__/pluginSymlink.test.d.ts +0 -5
- package/services/__tests__/pluginSymlink.test.d.ts.map +0 -1
- package/services/__tests__/pluginSymlink.test.js +0 -318
- package/services/__tests__/pluginSymlink.test.js.map +0 -1
- package/services/__tests__/projectMetadataStorage.test.d.ts +0 -5
- package/services/__tests__/projectMetadataStorage.test.d.ts.map +0 -1
- package/services/__tests__/projectMetadataStorage.test.js +0 -154
- package/services/__tests__/projectMetadataStorage.test.js.map +0 -1
- package/services/__tests__/sessionConcurrency.test.d.ts +0 -7
- package/services/__tests__/sessionConcurrency.test.d.ts.map +0 -1
- package/services/__tests__/sessionConcurrency.test.js +0 -110
- package/services/__tests__/sessionConcurrency.test.js.map +0 -1
- package/services/__tests__/slackAIService.test.d.ts +0 -5
- package/services/__tests__/slackAIService.test.d.ts.map +0 -1
- package/services/__tests__/slackAIService.test.js +0 -479
- package/services/__tests__/slackAIService.test.js.map +0 -1
- package/services/__tests__/slackThreadMapper.test.d.ts +0 -5
- package/services/__tests__/slackThreadMapper.test.d.ts.map +0 -1
- package/services/__tests__/slackThreadMapper.test.js +0 -194
- package/services/__tests__/slackThreadMapper.test.js.map +0 -1
- package/services/a2a/__tests__/a2aClientTool.integration.test.d.ts +0 -6
- package/services/a2a/__tests__/a2aClientTool.integration.test.d.ts.map +0 -1
- package/services/a2a/__tests__/a2aClientTool.integration.test.js +0 -264
- package/services/a2a/__tests__/a2aClientTool.integration.test.js.map +0 -1
- package/services/a2a/__tests__/a2aClientTool.test.d.ts +0 -6
- package/services/a2a/__tests__/a2aClientTool.test.d.ts.map +0 -1
- package/services/a2a/__tests__/a2aClientTool.test.js +0 -592
- package/services/a2a/__tests__/a2aClientTool.test.js.map +0 -1
- package/services/a2a/__tests__/a2aConfigService.test.d.ts +0 -6
- package/services/a2a/__tests__/a2aConfigService.test.d.ts.map +0 -1
- package/services/a2a/__tests__/a2aConfigService.test.js +0 -431
- package/services/a2a/__tests__/a2aConfigService.test.js.map +0 -1
- package/services/a2a/__tests__/a2aConfigServicePath.test.d.ts +0 -2
- package/services/a2a/__tests__/a2aConfigServicePath.test.d.ts.map +0 -1
- package/services/a2a/__tests__/a2aConfigServicePath.test.js +0 -49
- package/services/a2a/__tests__/a2aConfigServicePath.test.js.map +0 -1
- package/services/a2a/__tests__/a2aSdkMcp.test.d.ts +0 -10
- package/services/a2a/__tests__/a2aSdkMcp.test.d.ts.map +0 -1
- package/services/a2a/__tests__/a2aSdkMcp.test.js +0 -239
- package/services/a2a/__tests__/a2aSdkMcp.test.js.map +0 -1
- package/services/a2a/__tests__/agentCardService.test.d.ts +0 -6
- package/services/a2a/__tests__/agentCardService.test.d.ts.map +0 -1
- package/services/a2a/__tests__/agentCardService.test.js +0 -292
- package/services/a2a/__tests__/agentCardService.test.js.map +0 -1
- package/services/a2a/__tests__/apiKeyService.test.d.ts +0 -6
- package/services/a2a/__tests__/apiKeyService.test.d.ts.map +0 -1
- package/services/a2a/__tests__/apiKeyService.test.js +0 -284
- package/services/a2a/__tests__/apiKeyService.test.js.map +0 -1
- package/services/a2a/__tests__/buildQueryOptionsIntegration.test.d.ts +0 -2
- package/services/a2a/__tests__/buildQueryOptionsIntegration.test.d.ts.map +0 -1
- package/services/a2a/__tests__/buildQueryOptionsIntegration.test.js +0 -70
- package/services/a2a/__tests__/buildQueryOptionsIntegration.test.js.map +0 -1
- package/services/a2a/__tests__/dynamic_config_verification.test.d.ts +0 -2
- package/services/a2a/__tests__/dynamic_config_verification.test.d.ts.map +0 -1
- package/services/a2a/__tests__/dynamic_config_verification.test.js +0 -67
- package/services/a2a/__tests__/dynamic_config_verification.test.js.map +0 -1
- package/services/a2a/__tests__/integrateA2AMcpServer.test.d.ts +0 -2
- package/services/a2a/__tests__/integrateA2AMcpServer.test.d.ts.map +0 -1
- package/services/a2a/__tests__/integrateA2AMcpServer.test.js +0 -112
- package/services/a2a/__tests__/integrateA2AMcpServer.test.js.map +0 -1
- package/services/a2a/__tests__/taskManager.integration.test.d.ts +0 -7
- package/services/a2a/__tests__/taskManager.integration.test.d.ts.map +0 -1
- package/services/a2a/__tests__/taskManager.integration.test.js +0 -346
- package/services/a2a/__tests__/taskManager.integration.test.js.map +0 -1
- package/services/a2a/__tests__/taskManager.test.d.ts +0 -7
- package/services/a2a/__tests__/taskManager.test.d.ts.map +0 -1
- package/services/a2a/__tests__/taskManager.test.js +0 -423
- package/services/a2a/__tests__/taskManager.test.js.map +0 -1
- package/services/a2a/__tests__/webhookService.test.d.ts +0 -6
- package/services/a2a/__tests__/webhookService.test.d.ts.map +0 -1
- package/services/a2a/__tests__/webhookService.test.js +0 -196
- package/services/a2a/__tests__/webhookService.test.js.map +0 -1
- package/services/a2a/a2aClientTool.d.ts +0 -73
- package/services/a2a/a2aClientTool.d.ts.map +0 -1
- package/services/a2a/a2aClientTool.js +0 -595
- package/services/a2a/a2aClientTool.js.map +0 -1
- package/services/a2a/a2aConfigService.d.ts +0 -50
- package/services/a2a/a2aConfigService.d.ts.map +0 -1
- package/services/a2a/a2aConfigService.js +0 -186
- package/services/a2a/a2aConfigService.js.map +0 -1
- package/services/a2a/a2aHistoryService.d.ts +0 -32
- package/services/a2a/a2aHistoryService.d.ts.map +0 -1
- package/services/a2a/a2aHistoryService.js +0 -108
- package/services/a2a/a2aHistoryService.js.map +0 -1
- package/services/a2a/a2aIntegration.d.ts +0 -10
- package/services/a2a/a2aIntegration.d.ts.map +0 -1
- package/services/a2a/a2aIntegration.js +0 -42
- package/services/a2a/a2aIntegration.js.map +0 -1
- package/services/a2a/a2aQueryService.d.ts +0 -71
- package/services/a2a/a2aQueryService.d.ts.map +0 -1
- package/services/a2a/a2aQueryService.js +0 -209
- package/services/a2a/a2aQueryService.js.map +0 -1
- package/services/a2a/a2aSdkMcp.d.ts +0 -52
- package/services/a2a/a2aSdkMcp.d.ts.map +0 -1
- package/services/a2a/a2aSdkMcp.js +0 -188
- package/services/a2a/a2aSdkMcp.js.map +0 -1
- package/services/a2a/a2aStreamEvents.d.ts +0 -94
- package/services/a2a/a2aStreamEvents.d.ts.map +0 -1
- package/services/a2a/a2aStreamEvents.js +0 -92
- package/services/a2a/a2aStreamEvents.js.map +0 -1
- package/services/a2a/agentCardService.d.ts +0 -34
- package/services/a2a/agentCardService.d.ts.map +0 -1
- package/services/a2a/agentCardService.js +0 -228
- package/services/a2a/agentCardService.js.map +0 -1
- package/services/a2a/agentMappingService.d.ts +0 -53
- package/services/a2a/agentMappingService.d.ts.map +0 -1
- package/services/a2a/agentMappingService.js +0 -185
- package/services/a2a/agentMappingService.js.map +0 -1
- package/services/a2a/apiKeyService.d.ts +0 -101
- package/services/a2a/apiKeyService.d.ts.map +0 -1
- package/services/a2a/apiKeyService.js +0 -314
- package/services/a2a/apiKeyService.js.map +0 -1
- package/services/a2a/taskCleanup.d.ts +0 -30
- package/services/a2a/taskCleanup.d.ts.map +0 -1
- package/services/a2a/taskCleanup.js +0 -184
- package/services/a2a/taskCleanup.js.map +0 -1
- package/services/a2a/taskManager.d.ts +0 -87
- package/services/a2a/taskManager.d.ts.map +0 -1
- package/services/a2a/taskManager.js +0 -265
- package/services/a2a/taskManager.js.map +0 -1
- package/services/a2a/webhookService.d.ts +0 -30
- package/services/a2a/webhookService.d.ts.map +0 -1
- package/services/a2a/webhookService.js +0 -113
- package/services/a2a/webhookService.js.map +0 -1
- package/services/agentStorage.d.ts +0 -27
- package/services/agentStorage.d.ts.map +0 -1
- package/services/agentStorage.js +0 -487
- package/services/agentStorage.js.map +0 -1
- package/services/askUserQuestion/askUserQuestionIntegration.d.ts +0 -24
- package/services/askUserQuestion/askUserQuestionIntegration.d.ts.map +0 -1
- package/services/askUserQuestion/askUserQuestionIntegration.js +0 -52
- package/services/askUserQuestion/askUserQuestionIntegration.js.map +0 -1
- package/services/askUserQuestion/askUserQuestionMcp.d.ts +0 -103
- package/services/askUserQuestion/askUserQuestionMcp.d.ts.map +0 -1
- package/services/askUserQuestion/askUserQuestionMcp.js +0 -129
- package/services/askUserQuestion/askUserQuestionMcp.js.map +0 -1
- package/services/askUserQuestion/index.d.ts +0 -13
- package/services/askUserQuestion/index.d.ts.map +0 -1
- package/services/askUserQuestion/index.js +0 -35
- package/services/askUserQuestion/index.js.map +0 -1
- package/services/askUserQuestion/init.d.ts +0 -17
- package/services/askUserQuestion/init.d.ts.map +0 -1
- package/services/askUserQuestion/init.js +0 -47
- package/services/askUserQuestion/init.js.map +0 -1
- package/services/askUserQuestion/notificationChannel.d.ts +0 -97
- package/services/askUserQuestion/notificationChannel.d.ts.map +0 -1
- package/services/askUserQuestion/notificationChannel.js +0 -147
- package/services/askUserQuestion/notificationChannel.js.map +0 -1
- package/services/askUserQuestion/slackNotificationChannel.d.ts +0 -35
- package/services/askUserQuestion/slackNotificationChannel.d.ts.map +0 -1
- package/services/askUserQuestion/slackNotificationChannel.js +0 -129
- package/services/askUserQuestion/slackNotificationChannel.js.map +0 -1
- package/services/askUserQuestion/sseNotificationChannel.d.ts +0 -36
- package/services/askUserQuestion/sseNotificationChannel.d.ts.map +0 -1
- package/services/askUserQuestion/sseNotificationChannel.js +0 -88
- package/services/askUserQuestion/sseNotificationChannel.js.map +0 -1
- package/services/askUserQuestion/userInputRegistry.d.ts +0 -107
- package/services/askUserQuestion/userInputRegistry.d.ts.map +0 -1
- package/services/askUserQuestion/userInputRegistry.js +0 -253
- package/services/askUserQuestion/userInputRegistry.js.map +0 -1
- package/services/claudeSession.d.ts +0 -113
- package/services/claudeSession.d.ts.map +0 -1
- package/services/claudeSession.js +0 -375
- package/services/claudeSession.js.map +0 -1
- package/services/claudeVersionStorage.d.ts +0 -20
- package/services/claudeVersionStorage.d.ts.map +0 -1
- package/services/claudeVersionStorage.js +0 -331
- package/services/claudeVersionStorage.js.map +0 -1
- package/services/mcpAdmin/__tests__/adminApiKeyService.test.d.ts +0 -5
- package/services/mcpAdmin/__tests__/adminApiKeyService.test.d.ts.map +0 -1
- package/services/mcpAdmin/__tests__/adminApiKeyService.test.js +0 -289
- package/services/mcpAdmin/__tests__/adminApiKeyService.test.js.map +0 -1
- package/services/mcpAdmin/__tests__/mcpAdminRoutes.test.d.ts +0 -5
- package/services/mcpAdmin/__tests__/mcpAdminRoutes.test.d.ts.map +0 -1
- package/services/mcpAdmin/__tests__/mcpAdminRoutes.test.js +0 -345
- package/services/mcpAdmin/__tests__/mcpAdminRoutes.test.js.map +0 -1
- package/services/mcpAdmin/__tests__/mcpAdminServer.test.d.ts +0 -5
- package/services/mcpAdmin/__tests__/mcpAdminServer.test.d.ts.map +0 -1
- package/services/mcpAdmin/__tests__/mcpAdminServer.test.js +0 -453
- package/services/mcpAdmin/__tests__/mcpAdminServer.test.js.map +0 -1
- package/services/mcpAdmin/__tests__/providerTools.test.d.ts +0 -7
- package/services/mcpAdmin/__tests__/providerTools.test.d.ts.map +0 -1
- package/services/mcpAdmin/__tests__/providerTools.test.js +0 -258
- package/services/mcpAdmin/__tests__/providerTools.test.js.map +0 -1
- package/services/mcpAdmin/__tests__/tools.test.d.ts +0 -5
- package/services/mcpAdmin/__tests__/tools.test.d.ts.map +0 -1
- package/services/mcpAdmin/__tests__/tools.test.js +0 -389
- package/services/mcpAdmin/__tests__/tools.test.js.map +0 -1
- package/services/mcpAdmin/adminApiKeyService.d.ts +0 -61
- package/services/mcpAdmin/adminApiKeyService.d.ts.map +0 -1
- package/services/mcpAdmin/adminApiKeyService.js +0 -270
- package/services/mcpAdmin/adminApiKeyService.js.map +0 -1
- package/services/mcpAdmin/index.d.ts +0 -10
- package/services/mcpAdmin/index.d.ts.map +0 -1
- package/services/mcpAdmin/index.js +0 -43
- package/services/mcpAdmin/index.js.map +0 -1
- package/services/mcpAdmin/mcpAdminServer.d.ts +0 -76
- package/services/mcpAdmin/mcpAdminServer.d.ts.map +0 -1
- package/services/mcpAdmin/mcpAdminServer.js +0 -243
- package/services/mcpAdmin/mcpAdminServer.js.map +0 -1
- package/services/mcpAdmin/tools/agentTools.d.ts +0 -27
- package/services/mcpAdmin/tools/agentTools.d.ts.map +0 -1
- package/services/mcpAdmin/tools/agentTools.js +0 -352
- package/services/mcpAdmin/tools/agentTools.js.map +0 -1
- package/services/mcpAdmin/tools/index.d.ts +0 -16
- package/services/mcpAdmin/tools/index.d.ts.map +0 -1
- package/services/mcpAdmin/tools/index.js +0 -34
- package/services/mcpAdmin/tools/index.js.map +0 -1
- package/services/mcpAdmin/tools/mcpServerTools.d.ts +0 -27
- package/services/mcpAdmin/tools/mcpServerTools.d.ts.map +0 -1
- package/services/mcpAdmin/tools/mcpServerTools.js +0 -334
- package/services/mcpAdmin/tools/mcpServerTools.js.map +0 -1
- package/services/mcpAdmin/tools/projectTools.d.ts +0 -27
- package/services/mcpAdmin/tools/projectTools.d.ts.map +0 -1
- package/services/mcpAdmin/tools/projectTools.js +0 -382
- package/services/mcpAdmin/tools/projectTools.js.map +0 -1
- package/services/mcpAdmin/tools/providerTools.d.ts +0 -40
- package/services/mcpAdmin/tools/providerTools.d.ts.map +0 -1
- package/services/mcpAdmin/tools/providerTools.js +0 -581
- package/services/mcpAdmin/tools/providerTools.js.map +0 -1
- package/services/mcpAdmin/tools/systemTools.d.ts +0 -23
- package/services/mcpAdmin/tools/systemTools.d.ts.map +0 -1
- package/services/mcpAdmin/tools/systemTools.js +0 -241
- package/services/mcpAdmin/tools/systemTools.js.map +0 -1
- package/services/mcpAdmin/types.d.ts +0 -124
- package/services/mcpAdmin/types.d.ts.map +0 -1
- package/services/mcpAdmin/types.js +0 -18
- package/services/mcpAdmin/types.js.map +0 -1
- package/services/messageQueue.d.ts +0 -31
- package/services/messageQueue.d.ts.map +0 -1
- package/services/messageQueue.js +0 -80
- package/services/messageQueue.js.map +0 -1
- package/services/pluginInstaller.d.ts +0 -58
- package/services/pluginInstaller.d.ts.map +0 -1
- package/services/pluginInstaller.js +0 -321
- package/services/pluginInstaller.js.map +0 -1
- package/services/pluginParser.d.ts +0 -45
- package/services/pluginParser.d.ts.map +0 -1
- package/services/pluginParser.js +0 -437
- package/services/pluginParser.js.map +0 -1
- package/services/pluginPaths.d.ts +0 -80
- package/services/pluginPaths.d.ts.map +0 -1
- package/services/pluginPaths.js +0 -274
- package/services/pluginPaths.js.map +0 -1
- package/services/pluginScanner.d.ts +0 -36
- package/services/pluginScanner.d.ts.map +0 -1
- package/services/pluginScanner.js +0 -251
- package/services/pluginScanner.js.map +0 -1
- package/services/pluginSymlink.d.ts +0 -54
- package/services/pluginSymlink.d.ts.map +0 -1
- package/services/pluginSymlink.js +0 -223
- package/services/pluginSymlink.js.map +0 -1
- package/services/projectMetadataStorage.d.ts +0 -121
- package/services/projectMetadataStorage.d.ts.map +0 -1
- package/services/projectMetadataStorage.js +0 -810
- package/services/projectMetadataStorage.js.map +0 -1
- package/services/scheduledTaskStorage.d.ts +0 -63
- package/services/scheduledTaskStorage.d.ts.map +0 -1
- package/services/scheduledTaskStorage.js +0 -351
- package/services/scheduledTaskStorage.js.map +0 -1
- package/services/schedulerService.d.ts +0 -91
- package/services/schedulerService.d.ts.map +0 -1
- package/services/schedulerService.js +0 -590
- package/services/schedulerService.js.map +0 -1
- package/services/sessionManager.d.ts +0 -176
- package/services/sessionManager.d.ts.map +0 -1
- package/services/sessionManager.js +0 -647
- package/services/sessionManager.js.map +0 -1
- package/services/skillStorage.d.ts +0 -60
- package/services/skillStorage.d.ts.map +0 -1
- package/services/skillStorage.js +0 -398
- package/services/skillStorage.js.map +0 -1
- package/services/slackAIService.d.ts +0 -81
- package/services/slackAIService.d.ts.map +0 -1
- package/services/slackAIService.js +0 -1137
- package/services/slackAIService.js.map +0 -1
- package/services/slackClient.d.ts +0 -46
- package/services/slackClient.d.ts.map +0 -1
- package/services/slackClient.js +0 -85
- package/services/slackClient.js.map +0 -1
- package/services/slackSessionLock.d.ts +0 -79
- package/services/slackSessionLock.d.ts.map +0 -1
- package/services/slackSessionLock.js +0 -353
- package/services/slackSessionLock.js.map +0 -1
- package/services/slackThreadMapper.d.ts +0 -57
- package/services/slackThreadMapper.d.ts.map +0 -1
- package/services/slackThreadMapper.js +0 -140
- package/services/slackThreadMapper.js.map +0 -1
- package/services/taskExecutor/BuiltinExecutor.d.ts +0 -44
- package/services/taskExecutor/BuiltinExecutor.d.ts.map +0 -1
- package/services/taskExecutor/BuiltinExecutor.js +0 -513
- package/services/taskExecutor/BuiltinExecutor.js.map +0 -1
- package/services/taskExecutor/__tests__/a2a-tasks.test.d.ts +0 -7
- package/services/taskExecutor/__tests__/a2a-tasks.test.d.ts.map +0 -1
- package/services/taskExecutor/__tests__/a2a-tasks.test.js +0 -328
- package/services/taskExecutor/__tests__/a2a-tasks.test.js.map +0 -1
- package/services/taskExecutor/__tests__/e2e-workflows.test.d.ts +0 -7
- package/services/taskExecutor/__tests__/e2e-workflows.test.d.ts.map +0 -1
- package/services/taskExecutor/__tests__/e2e-workflows.test.js +0 -446
- package/services/taskExecutor/__tests__/e2e-workflows.test.js.map +0 -1
- package/services/taskExecutor/__tests__/error-handling.test.d.ts +0 -7
- package/services/taskExecutor/__tests__/error-handling.test.d.ts.map +0 -1
- package/services/taskExecutor/__tests__/error-handling.test.js +0 -387
- package/services/taskExecutor/__tests__/error-handling.test.js.map +0 -1
- package/services/taskExecutor/__tests__/stress.test.d.ts +0 -7
- package/services/taskExecutor/__tests__/stress.test.d.ts.map +0 -1
- package/services/taskExecutor/__tests__/stress.test.js +0 -329
- package/services/taskExecutor/__tests__/stress.test.js.map +0 -1
- package/services/taskExecutor/__tests__/taskExecutor.integration.test.d.ts +0 -7
- package/services/taskExecutor/__tests__/taskExecutor.integration.test.d.ts.map +0 -1
- package/services/taskExecutor/__tests__/taskExecutor.integration.test.js +0 -205
- package/services/taskExecutor/__tests__/taskExecutor.integration.test.js.map +0 -1
- package/services/taskExecutor/__tests__/timeout-cancellation.test.d.ts +0 -7
- package/services/taskExecutor/__tests__/timeout-cancellation.test.d.ts.map +0 -1
- package/services/taskExecutor/__tests__/timeout-cancellation.test.js +0 -319
- package/services/taskExecutor/__tests__/timeout-cancellation.test.js.map +0 -1
- package/services/taskExecutor/index.d.ts +0 -40
- package/services/taskExecutor/index.d.ts.map +0 -1
- package/services/taskExecutor/index.js +0 -166
- package/services/taskExecutor/index.js.map +0 -1
- package/services/taskExecutor/taskWorker.d.ts +0 -11
- package/services/taskExecutor/taskWorker.d.ts.map +0 -1
- package/services/taskExecutor/taskWorker.js +0 -171
- package/services/taskExecutor/taskWorker.js.map +0 -1
- package/services/taskExecutor/types.d.ts +0 -145
- package/services/taskExecutor/types.d.ts.map +0 -1
- package/services/taskExecutor/types.js +0 -9
- package/services/taskExecutor/types.js.map +0 -1
- package/services/telemetry.d.ts +0 -40
- package/services/telemetry.d.ts.map +0 -1
- package/services/telemetry.js +0 -245
- package/services/telemetry.js.map +0 -1
- package/services/tunnelService.d.ts +0 -165
- package/services/tunnelService.d.ts.map +0 -1
- package/services/tunnelService.js +0 -493
- package/services/tunnelService.js.map +0 -1
- package/types/a2a.d.ts +0 -293
- package/types/a2a.d.ts.map +0 -1
- package/types/a2a.js +0 -23
- package/types/a2a.js.map +0 -1
- package/types/agents.d.ts +0 -94
- package/types/agents.d.ts.map +0 -1
- package/types/agents.js +0 -45
- package/types/agents.js.map +0 -1
- package/types/claude-history.d.ts +0 -62
- package/types/claude-history.d.ts.map +0 -1
- package/types/claude-history.js +0 -4
- package/types/claude-history.js.map +0 -1
- package/types/claude-versions.d.ts +0 -36
- package/types/claude-versions.d.ts.map +0 -1
- package/types/claude-versions.js +0 -3
- package/types/claude-versions.js.map +0 -1
- package/types/commands.d.ts +0 -50
- package/types/commands.d.ts.map +0 -1
- package/types/commands.js +0 -23
- package/types/commands.js.map +0 -1
- package/types/plugins.d.ts +0 -144
- package/types/plugins.d.ts.map +0 -1
- package/types/plugins.js +0 -8
- package/types/plugins.js.map +0 -1
- package/types/projects.d.ts +0 -46
- package/types/projects.d.ts.map +0 -1
- package/types/projects.js +0 -4
- package/types/projects.js.map +0 -1
- package/types/scheduledTasks.d.ts +0 -168
- package/types/scheduledTasks.d.ts.map +0 -1
- package/types/scheduledTasks.js +0 -17
- package/types/scheduledTasks.js.map +0 -1
- package/types/skills.d.ts +0 -91
- package/types/skills.d.ts.map +0 -1
- package/types/skills.js +0 -6
- package/types/skills.js.map +0 -1
- package/types/slack.d.ts +0 -97
- package/types/slack.d.ts.map +0 -1
- package/types/slack.js +0 -8
- package/types/slack.js.map +0 -1
- package/types/streaming.d.ts +0 -12
- package/types/streaming.d.ts.map +0 -1
- package/types/streaming.js +0 -8
- package/types/streaming.js.map +0 -1
- package/types/subagents.d.ts +0 -26
- package/types/subagents.d.ts.map +0 -1
- package/types/subagents.js +0 -3
- package/types/subagents.js.map +0 -1
- package/utils/__tests__/claudeUtils.test.d.ts +0 -5
- package/utils/__tests__/claudeUtils.test.d.ts.map +0 -1
- package/utils/__tests__/claudeUtils.test.js +0 -283
- package/utils/__tests__/claudeUtils.test.js.map +0 -1
- package/utils/__tests__/configResolver.test.d.ts +0 -7
- package/utils/__tests__/configResolver.test.d.ts.map +0 -1
- package/utils/__tests__/configResolver.test.js +0 -211
- package/utils/__tests__/configResolver.test.js.map +0 -1
- package/utils/__tests__/sessionUtils.test.d.ts +0 -5
- package/utils/__tests__/sessionUtils.test.d.ts.map +0 -1
- package/utils/__tests__/sessionUtils.test.js +0 -296
- package/utils/__tests__/sessionUtils.test.js.map +0 -1
- package/utils/agentCardCache.d.ts +0 -93
- package/utils/agentCardCache.d.ts.map +0 -1
- package/utils/agentCardCache.js +0 -212
- package/utils/agentCardCache.js.map +0 -1
- package/utils/claudeUtils.d.ts +0 -55
- package/utils/claudeUtils.d.ts.map +0 -1
- package/utils/claudeUtils.js +0 -355
- package/utils/claudeUtils.js.map +0 -1
- package/utils/configResolver.d.ts +0 -57
- package/utils/configResolver.d.ts.map +0 -1
- package/utils/configResolver.js +0 -130
- package/utils/configResolver.js.map +0 -1
- package/utils/fileUtils.d.ts +0 -2
- package/utils/fileUtils.d.ts.map +0 -1
- package/utils/fileUtils.js +0 -11
- package/utils/fileUtils.js.map +0 -1
- package/utils/jwt.d.ts +0 -30
- package/utils/jwt.d.ts.map +0 -1
- package/utils/jwt.js +0 -95
- package/utils/jwt.js.map +0 -1
- package/utils/networkUtils.d.ts +0 -25
- package/utils/networkUtils.d.ts.map +0 -1
- package/utils/networkUtils.js +0 -65
- package/utils/networkUtils.js.map +0 -1
- package/utils/sessionUtils.d.ts +0 -67
- package/utils/sessionUtils.d.ts.map +0 -1
- package/utils/sessionUtils.js +0 -296
- package/utils/sessionUtils.js.map +0 -1
- /package/{public → frontend/public}/cc-studio.png +0 -0
- /package/{public → frontend/public}/screenshot-chat.png +0 -0
- /package/{public → frontend/public}/screenshot-mcp.png +0 -0
- /package/{public → frontend/public}/vite.svg +0 -0
- /package/{public → frontend/public}/wechat-qr-code.png +0 -0
|
@@ -0,0 +1,1408 @@
|
|
|
1
|
+
# AgentStudio User Manual
|
|
2
|
+
|
|
3
|
+
> AgentStudio - Intelligent Agent Workspace | A modern personal AI agent platform built on Claude Code SDK
|
|
4
|
+
|
|
5
|
+
## Table of Contents
|
|
6
|
+
|
|
7
|
+
1. [Introduction](#introduction)
|
|
8
|
+
2. [Quick Start](#quick-start)
|
|
9
|
+
3. [Homepage Overview](#homepage-overview)
|
|
10
|
+
4. [Dashboard](#dashboard)
|
|
11
|
+
5. [Project Management](#project-management)
|
|
12
|
+
- [Create Project](#create-project)
|
|
13
|
+
- [Import Project](#import-project)
|
|
14
|
+
- [Project Memory Management](#project-memory-management)
|
|
15
|
+
- [Project Command Management](#project-command-management)
|
|
16
|
+
- [Project Sub-Agent Management](#project-sub-agent-management)
|
|
17
|
+
- [A2A Protocol Management](#a2a-protocol-management)
|
|
18
|
+
6. [Agent Management](#agent-management)
|
|
19
|
+
- [Create Agent](#create-agent)
|
|
20
|
+
- [System Prompt Configuration](#system-prompt-configuration)
|
|
21
|
+
- [Tool Selection](#tool-selection)
|
|
22
|
+
- [Edit Agent](#edit-agent)
|
|
23
|
+
7. [MCP Services](#mcp-services)
|
|
24
|
+
- [Add MCP Service](#add-mcp-service)
|
|
25
|
+
- [Import from Claude Code](#import-from-claude-code)
|
|
26
|
+
8. [Skills Management](#skills-management)
|
|
27
|
+
- [Create Skill](#create-skill)
|
|
28
|
+
- [View Skill Details](#view-skill-details)
|
|
29
|
+
- [Browse Skill Files](#browse-skill-files)
|
|
30
|
+
9. [Plugin Management](#plugin-management)
|
|
31
|
+
- [Add Marketplace](#add-marketplace)
|
|
32
|
+
- [Browse and Install Plugins](#browse-and-install-plugins)
|
|
33
|
+
10. [Custom Commands](#custom-commands)
|
|
34
|
+
- [Create Command](#create-command)
|
|
35
|
+
11. [Chat Interface](#chat-interface)
|
|
36
|
+
- [Sending Messages](#sending-messages)
|
|
37
|
+
- [Tool Selection](#tool-selection-1)
|
|
38
|
+
- [Session History](#session-history)
|
|
39
|
+
- [Chat Settings](#chat-settings)
|
|
40
|
+
12. [System Settings](#system-settings)
|
|
41
|
+
- [Look and Feel](#look-and-feel)
|
|
42
|
+
- [Supplier Management](#supplier-management)
|
|
43
|
+
- [Global Memory](#global-memory)
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Introduction
|
|
48
|
+
|
|
49
|
+
AgentStudio is a modern personal AI agent platform built on Claude Code SDK. Through an intuitive web interface, you can easily access powerful AI capabilities to enhance your productivity.
|
|
50
|
+
|
|
51
|
+
### Core Features
|
|
52
|
+
|
|
53
|
+
- **Modern Web Interface**: Professional and intuitive Web UI with real-time streaming responses and split-screen layout
|
|
54
|
+
- **Multi-Model Support**: Support for Claude, GLM, DeepSeek, Kimi K2, MiniMax, and other large language models
|
|
55
|
+
- **Agent System**: Built-in professional agents with support for custom agent creation
|
|
56
|
+
- **File Management**: Built-in file browser with project-aware operations, image upload, and content preview
|
|
57
|
+
- **Professional Tools**: Slide agent, code explorer, document outline, and other professional tools
|
|
58
|
+
- **Secure & Reliable**: Environment variable protection for API keys, sandbox file system access
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Quick Start
|
|
63
|
+
|
|
64
|
+
### Method 1: One-Click Installation (Recommended)
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
curl -fsSL https://raw.githubusercontent.com/okguitar/agentstudio/main/scripts/remote-install.sh | bash
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Method 2: Source Code Deployment
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
git clone https://github.com/okguitar/agentstudio.git
|
|
74
|
+
cd agentstudio
|
|
75
|
+
npm install && npm run dev
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
After installation, visit `http://localhost:3000` in your browser to get started.
|
|
79
|
+
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
## Homepage Overview
|
|
83
|
+
|
|
84
|
+
The homepage is the portal page of AgentStudio, showcasing the core value and quick entry points.
|
|
85
|
+
|
|
86
|
+

|
|
87
|
+
|
|
88
|
+
### Page Elements
|
|
89
|
+
|
|
90
|
+
1. **Top Navigation Bar**
|
|
91
|
+
- AgentStudio brand logo
|
|
92
|
+
- "Enter Workspace" button: Quick access to the main workspace
|
|
93
|
+
|
|
94
|
+
2. **Main Tagline Area**
|
|
95
|
+
- "Intelligent Agent Workspace, Let AI Be Your Capable Assistant"
|
|
96
|
+
- Product introduction description
|
|
97
|
+
|
|
98
|
+
3. **Core Features Display**
|
|
99
|
+
- Modern Web Interface
|
|
100
|
+
- Multi-Model Support
|
|
101
|
+
- Agent System
|
|
102
|
+
- File Management
|
|
103
|
+
- Professional Tools
|
|
104
|
+
- Secure & Reliable
|
|
105
|
+
|
|
106
|
+
4. **Quick Start Guide**
|
|
107
|
+
- One-click installation command for regular users
|
|
108
|
+
- Source code deployment command for developers
|
|
109
|
+
|
|
110
|
+
5. **Call to Action**
|
|
111
|
+
- "Get Started" button
|
|
112
|
+
- GitHub source code link
|
|
113
|
+
|
|
114
|
+
### Usage Guide
|
|
115
|
+
|
|
116
|
+
1. Click the **"Enter Workspace"** button in the top right to enter the main workspace
|
|
117
|
+
2. Or click **"Get Started"** button to begin using
|
|
118
|
+
3. Click **"View Source"** to access the GitHub repository
|
|
119
|
+
|
|
120
|
+
---
|
|
121
|
+
|
|
122
|
+
## Dashboard
|
|
123
|
+
|
|
124
|
+
The dashboard is the first page you see after logging in, providing a global view of your work status.
|
|
125
|
+
|
|
126
|
+

|
|
127
|
+
|
|
128
|
+
### Page Layout
|
|
129
|
+
|
|
130
|
+
1. **Left Navigation Bar**
|
|
131
|
+
- Dashboard
|
|
132
|
+
- Projects
|
|
133
|
+
- MCP Services
|
|
134
|
+
- Skills
|
|
135
|
+
- Plugins
|
|
136
|
+
- Agents
|
|
137
|
+
- Commands
|
|
138
|
+
- Subagents
|
|
139
|
+
- Settings
|
|
140
|
+
|
|
141
|
+
2. **Statistics Cards**
|
|
142
|
+
- **Agent Management**: Shows enabled/total agent count
|
|
143
|
+
- **Work Projects**: Shows total number of work projects
|
|
144
|
+
- **Slash Commands**: Shows number of custom commands
|
|
145
|
+
- **Active Sessions**: Shows currently active conversation sessions
|
|
146
|
+
|
|
147
|
+
3. **Active Sessions Panel**
|
|
148
|
+
- Shows currently ongoing conversations
|
|
149
|
+
- Refresh button to update session status
|
|
150
|
+
|
|
151
|
+
4. **Recent Activity**
|
|
152
|
+
- Shows recently accessed projects
|
|
153
|
+
- Shows recently used commands
|
|
154
|
+
- Click to quickly navigate
|
|
155
|
+
|
|
156
|
+
5. **Frequently Used Assistants**
|
|
157
|
+
- Basic Agent: Simple agent without Claude Code prompt
|
|
158
|
+
- Claude Code: System default assistant
|
|
159
|
+
- PPT Editor: Specialized for creating and editing HTML presentations
|
|
160
|
+
|
|
161
|
+
6. **Quick Actions**
|
|
162
|
+
- Create New Project
|
|
163
|
+
- Create New Assistant
|
|
164
|
+
- Add MCP Service
|
|
165
|
+
|
|
166
|
+
### Usage Guide
|
|
167
|
+
|
|
168
|
+
1. Click statistics cards to quickly navigate to the corresponding management page
|
|
169
|
+
2. In the "Frequently Used Assistants" area, click the lightning icon to enter a conversation directly
|
|
170
|
+
3. In the "Recent Activity" area, click a project to quickly switch
|
|
171
|
+
4. Use "Quick Actions" cards to quickly create new content
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## Project Management
|
|
176
|
+
|
|
177
|
+
The project management page is used to manage all work projects, where each project corresponds to a working directory.
|
|
178
|
+
|
|
179
|
+

|
|
180
|
+
|
|
181
|
+
### Page Features
|
|
182
|
+
|
|
183
|
+
1. **Search Box**: Quick search for project names
|
|
184
|
+
|
|
185
|
+
2. **Import Project**: Import an existing project directory
|
|
186
|
+
|
|
187
|
+
3. **Create New Project**: Create a new work project
|
|
188
|
+
|
|
189
|
+
4. **Project List Table**
|
|
190
|
+
- **Project Name**: Click to expand project details, with an "Open" button beside it
|
|
191
|
+
- **Assistant**: Default assistant assigned to the project, switchable via dropdown menu
|
|
192
|
+
- **Path**: Project file system path
|
|
193
|
+
- **Created**: Project creation date
|
|
194
|
+
- **Last Active**: Last access time
|
|
195
|
+
|
|
196
|
+
5. **Project Action Buttons**
|
|
197
|
+
- 📋 **Memory Management**: Manage project-level memory
|
|
198
|
+
- ⌘ **Command Management**: Manage project-specific custom commands
|
|
199
|
+
- 🤖 **Sub-Agent Management**: Manage project sub-agents
|
|
200
|
+
- 🔗 **A2A Protocol Management**: Configure Agent-to-Agent protocol
|
|
201
|
+
- 🗑️ **Delete**: Delete project (use with caution)
|
|
202
|
+
|
|
203
|
+
---
|
|
204
|
+
|
|
205
|
+
### Create Project
|
|
206
|
+
|
|
207
|
+
Click the **"Create New Project"** button in the top right to open the create project dialog:
|
|
208
|
+
|
|
209
|
+

|
|
210
|
+
|
|
211
|
+
#### Steps
|
|
212
|
+
|
|
213
|
+
1. **Enter Project Name**
|
|
214
|
+
- Enter the project's display name in the "Project Name" input field
|
|
215
|
+
- The name should be concise and easy to identify
|
|
216
|
+
|
|
217
|
+
2. **Select Project Path**
|
|
218
|
+
- Click "Browse Directory" button to open the file selector
|
|
219
|
+
- Select the project directory path
|
|
220
|
+
- Or directly enter the full path in the input field
|
|
221
|
+
|
|
222
|
+
3. **Select Default Assistant**
|
|
223
|
+
- Select the default AI assistant for this project from the dropdown menu
|
|
224
|
+
- Options include: Claude Code, Basic Agent, PPT Editor, etc.
|
|
225
|
+
|
|
226
|
+
4. **Click "Create" Button**
|
|
227
|
+
- After confirming the information is correct, click create
|
|
228
|
+
- The project will immediately appear in the project list
|
|
229
|
+
|
|
230
|
+
#### Notes
|
|
231
|
+
|
|
232
|
+
- Project path must be a valid file system directory
|
|
233
|
+
- Only one project can be created for the same path
|
|
234
|
+
- The default assistant can be changed at any time after creation
|
|
235
|
+
|
|
236
|
+
---
|
|
237
|
+
|
|
238
|
+
### Import Project
|
|
239
|
+
|
|
240
|
+
For existing project directories, you can quickly add them using the import feature:
|
|
241
|
+
|
|
242
|
+
#### Steps
|
|
243
|
+
|
|
244
|
+
1. **Click "Import Project" Button**
|
|
245
|
+
- Located in the top right corner, next to the search box
|
|
246
|
+
|
|
247
|
+
2. **Browse and Select Project Directory**
|
|
248
|
+
- In the popup dialog, click "Browse Directory"
|
|
249
|
+
- Select the project folder to import
|
|
250
|
+
- Or directly enter the full path
|
|
251
|
+
|
|
252
|
+
3. **Confirm Import**
|
|
253
|
+
- The system will automatically recognize project information
|
|
254
|
+
- Click "Import" button to complete the operation
|
|
255
|
+
|
|
256
|
+
4. **Select Default Assistant (Optional)**
|
|
257
|
+
- After import, you can assign a default assistant in the project list
|
|
258
|
+
|
|
259
|
+
---
|
|
260
|
+
|
|
261
|
+
### Project Memory Management
|
|
262
|
+
|
|
263
|
+
Each project can have independent memory settings to help AI assistants better understand the project context:
|
|
264
|
+
|
|
265
|
+
#### Features
|
|
266
|
+
|
|
267
|
+
- **Memory Content Source**: Reads from the `CLAUDE.md` file in the project directory
|
|
268
|
+
- **Auto Load**: Automatically loads project memory for AI during each conversation
|
|
269
|
+
- **Edit Feature**: Can directly edit memory content in the interface
|
|
270
|
+
- **Refresh Feature**: Reload the latest content from the file
|
|
271
|
+
|
|
272
|
+
#### Steps
|
|
273
|
+
|
|
274
|
+
1. **Open Memory Management**
|
|
275
|
+
- Click the 📋 (memory) icon on the project row in the project list
|
|
276
|
+
|
|
277
|
+
2. **View Current Memory**
|
|
278
|
+
- The dialog will display the current project's memory content
|
|
279
|
+
- Content is presented in Markdown format
|
|
280
|
+
|
|
281
|
+
3. **Edit Memory**
|
|
282
|
+
- Click "Edit" button to enter edit mode
|
|
283
|
+
- Save after modifying content
|
|
284
|
+
|
|
285
|
+
4. **Refresh Content**
|
|
286
|
+
- Click "Refresh" button to reload from file
|
|
287
|
+
|
|
288
|
+
#### Suggested Content
|
|
289
|
+
|
|
290
|
+
- Project introduction and goals
|
|
291
|
+
- Tech stack description
|
|
292
|
+
- Coding standards and preferences
|
|
293
|
+
- Common commands and scripts
|
|
294
|
+
- Project structure description
|
|
295
|
+
|
|
296
|
+
---
|
|
297
|
+
|
|
298
|
+
### Project Command Management
|
|
299
|
+
|
|
300
|
+
Configure project-specific custom commands:
|
|
301
|
+
|
|
302
|
+
#### Features
|
|
303
|
+
|
|
304
|
+
- **Project-Specific Commands**: Slash commands only available in this project
|
|
305
|
+
- **Command List**: Shows all configured commands
|
|
306
|
+
- **Create New Command**: Add new project commands
|
|
307
|
+
- **Edit/Delete**: Manage existing commands
|
|
308
|
+
|
|
309
|
+
#### Steps
|
|
310
|
+
|
|
311
|
+
1. **Open Command Management**
|
|
312
|
+
- Click the ⌘ (command) icon on the project row in the project list
|
|
313
|
+
|
|
314
|
+
2. **View Command List**
|
|
315
|
+
- The dialog shows all custom commands for this project
|
|
316
|
+
- Each command shows name and description
|
|
317
|
+
|
|
318
|
+
3. **Create New Command**
|
|
319
|
+
- Click "New Command" button
|
|
320
|
+
- Fill in command name (starting with /)
|
|
321
|
+
- Write command prompt
|
|
322
|
+
- Select available tools
|
|
323
|
+
- Save command
|
|
324
|
+
|
|
325
|
+
4. **Edit/Delete Command**
|
|
326
|
+
- Click the edit icon on the command row to modify
|
|
327
|
+
- Click the delete icon to remove the command
|
|
328
|
+
|
|
329
|
+
---
|
|
330
|
+
|
|
331
|
+
### Project Sub-Agent Management
|
|
332
|
+
|
|
333
|
+
Manage sub-agent configurations available in the project:
|
|
334
|
+
|
|
335
|
+
#### Features
|
|
336
|
+
|
|
337
|
+
- **Sub-Agent List**: Shows available sub-agents for the project
|
|
338
|
+
- **Configuration Sync**: Syncs with system Subagent management
|
|
339
|
+
- **Enable/Disable**: Control sub-agent availability in the project
|
|
340
|
+
|
|
341
|
+
#### Steps
|
|
342
|
+
|
|
343
|
+
1. **Open Sub-Agent Management**
|
|
344
|
+
- Click the 🤖 (sub-agent) icon on the project row in the project list
|
|
345
|
+
|
|
346
|
+
2. **View Sub-Agent List**
|
|
347
|
+
- The dialog shows all available sub-agents
|
|
348
|
+
- Each sub-agent shows name, type, and status
|
|
349
|
+
|
|
350
|
+
3. **Enable Sub-Agent**
|
|
351
|
+
- Check the sub-agents you want to use in the project
|
|
352
|
+
- Click save to apply changes
|
|
353
|
+
|
|
354
|
+
4. **Add New Sub-Agent**
|
|
355
|
+
- Click "Add Sub-Agent" button
|
|
356
|
+
- Configure sub-agent name and type
|
|
357
|
+
- Set sub-agent parameters
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
### A2A Protocol Management
|
|
362
|
+
|
|
363
|
+
A2A (Agent-to-Agent) protocol management is used to configure communication and collaboration between agents:
|
|
364
|
+
|
|
365
|
+
#### Feature Overview
|
|
366
|
+
|
|
367
|
+
A2A protocol allows interoperability between different agents, supporting:
|
|
368
|
+
- Publishing project agent services for external calls
|
|
369
|
+
- Configuring API keys for authentication
|
|
370
|
+
- Managing external agent connections
|
|
371
|
+
- Monitoring agent task execution status
|
|
372
|
+
|
|
373
|
+
#### Overview Tab
|
|
374
|
+
|
|
375
|
+
The overview page shows basic information about the project's A2A service:
|
|
376
|
+
- **Service Name**: Current project's service identifier
|
|
377
|
+
- **Service Description**: Service functionality description
|
|
378
|
+
- **Endpoint URL**: Service access address
|
|
379
|
+
- **Status Indicator**: Whether the service is running
|
|
380
|
+
|
|
381
|
+
#### API Key Management
|
|
382
|
+
|
|
383
|
+
The API Keys tab is used to manage service authentication:
|
|
384
|
+
|
|
385
|
+
1. **Create API Key**
|
|
386
|
+
- Click "Create Key" button
|
|
387
|
+
- Set key name and validity period
|
|
388
|
+
- Save the generated key (shown only once)
|
|
389
|
+
|
|
390
|
+
2. **Manage Keys**
|
|
391
|
+
- View list of created keys
|
|
392
|
+
- Disable or delete unused keys
|
|
393
|
+
|
|
394
|
+
3. **Security Recommendations**
|
|
395
|
+
- Rotate API keys regularly
|
|
396
|
+
- Use different keys for different clients
|
|
397
|
+
|
|
398
|
+
#### External Agent Management
|
|
399
|
+
|
|
400
|
+
The External Agents tab is used to configure connections to external agent services:
|
|
401
|
+
|
|
402
|
+
1. **Add External Agent**
|
|
403
|
+
- Click "Add External Agent" button
|
|
404
|
+
- Fill in the agent's endpoint URL
|
|
405
|
+
- Configure authentication information (API key)
|
|
406
|
+
|
|
407
|
+
2. **Test Connection**
|
|
408
|
+
- Verify external agent reachability
|
|
409
|
+
- Get external agent capability description
|
|
410
|
+
|
|
411
|
+
3. **Use External Agent**
|
|
412
|
+
- Call external agents through tool invocation in conversations
|
|
413
|
+
- Support cross-project agent collaboration
|
|
414
|
+
|
|
415
|
+
#### Task Monitoring
|
|
416
|
+
|
|
417
|
+
The Tasks tab is used to monitor A2A protocol task execution:
|
|
418
|
+
|
|
419
|
+
1. **Task List**
|
|
420
|
+
- Shows all tasks called through A2A
|
|
421
|
+
- Includes task ID, source, status, and time
|
|
422
|
+
|
|
423
|
+
2. **Task Status**
|
|
424
|
+
- pending: Waiting for execution
|
|
425
|
+
- running: Currently executing
|
|
426
|
+
- completed: Execution completed
|
|
427
|
+
- failed: Execution failed
|
|
428
|
+
|
|
429
|
+
3. **Task Details**
|
|
430
|
+
- Click task to view detailed information
|
|
431
|
+
- View input parameters and execution results
|
|
432
|
+
|
|
433
|
+
---
|
|
434
|
+
|
|
435
|
+
## Agent Management
|
|
436
|
+
|
|
437
|
+
The agent management page is used to manage and configure AI assistants.
|
|
438
|
+
|
|
439
|
+

|
|
440
|
+
|
|
441
|
+
### Page Features
|
|
442
|
+
|
|
443
|
+
1. **Search Box**: Search for assistant names
|
|
444
|
+
|
|
445
|
+
2. **Create Agent**: Create a new custom assistant
|
|
446
|
+
|
|
447
|
+
3. **Agent List**
|
|
448
|
+
- **Agent**: Agent name, icon, and description
|
|
449
|
+
- **Configuration**: Max rounds, permission settings
|
|
450
|
+
- **Tools**: Number and list of tools the agent can use
|
|
451
|
+
- **Actions**: Use, disable, edit, delete
|
|
452
|
+
|
|
453
|
+
### System Default Agent
|
|
454
|
+
|
|
455
|
+
The system has one built-in default agent **Claude Code**, which is the recommended primary work assistant:
|
|
456
|
+
|
|
457
|
+
| Agent Name | Description | Features |
|
|
458
|
+
|-----------|-------------|----------|
|
|
459
|
+
| 🔧 Claude Code | System default assistant, full-featured | 17 tools, unlimited rounds |
|
|
460
|
+
|
|
461
|
+
You can create your own custom agents as needed to meet different work scenario requirements.
|
|
462
|
+
|
|
463
|
+
---
|
|
464
|
+
|
|
465
|
+
### Create Agent
|
|
466
|
+
|
|
467
|
+
Click the **"Create Agent"** button to open the create dialog:
|
|
468
|
+
|
|
469
|
+
#### Dialog Field Descriptions
|
|
470
|
+
|
|
471
|
+
1. **Agent Name** (Required)
|
|
472
|
+
- Give the agent an easily identifiable name
|
|
473
|
+
- E.g.: "Code Review Assistant", "Documentation Writer"
|
|
474
|
+
|
|
475
|
+
2. **Agent Description**
|
|
476
|
+
- Brief description of the agent's function and purpose
|
|
477
|
+
- Helps users understand when to use this agent
|
|
478
|
+
|
|
479
|
+
3. **Icon Selection**
|
|
480
|
+
- Select an icon from presets to represent the agent
|
|
481
|
+
- Icons will be displayed in the agent list and chat interface
|
|
482
|
+
|
|
483
|
+
4. **Max Conversation Rounds**
|
|
484
|
+
- Set the maximum rounds limit for a single conversation
|
|
485
|
+
- Recommend setting appropriate value based on task complexity
|
|
486
|
+
- Set to 0 for unlimited
|
|
487
|
+
|
|
488
|
+
5. **Permission Mode**
|
|
489
|
+
- **Default Mode**: Standard permission settings
|
|
490
|
+
- **Read-Only Mode**: Only allow read operations
|
|
491
|
+
- **Full Access**: Allow all operations
|
|
492
|
+
|
|
493
|
+
6. **Enable/Disable Status**
|
|
494
|
+
- Control whether the agent is available in the list
|
|
495
|
+
|
|
496
|
+
7. **System Prompt**
|
|
497
|
+
- Define the agent's behavioral guidelines and professional capabilities
|
|
498
|
+
- Supports two modes: **Preset** and **Custom**
|
|
499
|
+
|
|
500
|
+
#### System Prompt Configuration
|
|
501
|
+
|
|
502
|
+
The system prompt determines the agent's behavior and capabilities. AgentStudio provides two configuration methods:
|
|
503
|
+
|
|
504
|
+
**Preset Mode**
|
|
505
|
+
|
|
506
|
+
- Select "Preset" option to use the system default Claude Code prompt
|
|
507
|
+
- Suitable for agents that need full Claude Code functionality
|
|
508
|
+
- Automatically inherits all Claude Code capabilities and behavioral norms
|
|
509
|
+
- Recommended for new users
|
|
510
|
+
|
|
511
|
+
**Custom Mode**
|
|
512
|
+
|
|
513
|
+
- Select "Custom" option to write personalized prompts
|
|
514
|
+
- Full control over agent behavior and response style
|
|
515
|
+
- Can be written in Markdown format
|
|
516
|
+
- Recommended to include:
|
|
517
|
+
- Role definition: Agent's identity and responsibilities
|
|
518
|
+
- Capability description: Types of tasks the agent excels at
|
|
519
|
+
- Response style: Output format and tone requirements
|
|
520
|
+
- Limitations: Clearly state what the agent should not do
|
|
521
|
+
|
|
522
|
+
---
|
|
523
|
+
|
|
524
|
+
### Tool Selection
|
|
525
|
+
|
|
526
|
+
When creating or editing an agent, you need to select available tools:
|
|
527
|
+
|
|
528
|
+
#### Available Tool Types
|
|
529
|
+
|
|
530
|
+
**Basic Tools**:
|
|
531
|
+
- `Read` - Read file content
|
|
532
|
+
- `Write` - Write file content
|
|
533
|
+
- `Edit` - Edit existing files
|
|
534
|
+
- `MultiEdit` - Batch edit multiple files
|
|
535
|
+
- `Bash` - Execute shell commands
|
|
536
|
+
- `Glob` - File pattern matching
|
|
537
|
+
- `Grep` - Text search
|
|
538
|
+
- `LS` - List directory contents
|
|
539
|
+
|
|
540
|
+
**Advanced Tools**:
|
|
541
|
+
- `WebSearch` - Web search
|
|
542
|
+
- `WebFetch` - Fetch web page content
|
|
543
|
+
- `Agent` - Call sub-agents
|
|
544
|
+
- `TodoRead` - Read to-do items
|
|
545
|
+
- `TodoWrite` - Create to-do items
|
|
546
|
+
- `Task` - Task management
|
|
547
|
+
|
|
548
|
+
**MCP Tools**:
|
|
549
|
+
- Extended tools from configured MCP services
|
|
550
|
+
- E.g.: playwright, supabase, etc.
|
|
551
|
+
|
|
552
|
+
#### Steps
|
|
553
|
+
|
|
554
|
+
1. **Open Tool Selection**
|
|
555
|
+
- Click "Select Tools" in the create/edit agent dialog
|
|
556
|
+
|
|
557
|
+
2. **Browse Available Tools**
|
|
558
|
+
- Tools are displayed grouped by category
|
|
559
|
+
- Each tool shows name and description
|
|
560
|
+
|
|
561
|
+
3. **Select Required Tools**
|
|
562
|
+
- Click the checkbox next to a tool to enable it
|
|
563
|
+
- Use the search box to quickly find tools
|
|
564
|
+
|
|
565
|
+
4. **Save Selection**
|
|
566
|
+
- Click "Confirm" button to save tool configuration
|
|
567
|
+
|
|
568
|
+
---
|
|
569
|
+
|
|
570
|
+
### Edit Agent
|
|
571
|
+
|
|
572
|
+
Click the edit button in the agent list to open the edit dialog:
|
|
573
|
+
|
|
574
|
+
#### Editable Content
|
|
575
|
+
|
|
576
|
+
- Agent name and description
|
|
577
|
+
- Icon selection
|
|
578
|
+
- Max conversation rounds
|
|
579
|
+
- Permission mode
|
|
580
|
+
- Available tools list
|
|
581
|
+
- System prompt
|
|
582
|
+
- Enable/disable status
|
|
583
|
+
|
|
584
|
+
#### Steps
|
|
585
|
+
|
|
586
|
+
1. **Find Target Agent**
|
|
587
|
+
- Locate the agent to edit in the agent list
|
|
588
|
+
|
|
589
|
+
2. **Click Edit Button**
|
|
590
|
+
- Click the edit icon at the end of the agent row
|
|
591
|
+
|
|
592
|
+
3. **Modify Configuration**
|
|
593
|
+
- Modify the fields that need to be changed in the dialog
|
|
594
|
+
|
|
595
|
+
4. **Save Changes**
|
|
596
|
+
- Click "Save" button to apply changes
|
|
597
|
+
|
|
598
|
+
---
|
|
599
|
+
|
|
600
|
+
## MCP Services
|
|
601
|
+
|
|
602
|
+
The MCP (Model Context Protocol) service management page is used to configure and manage external tool servers.
|
|
603
|
+
|
|
604
|
+

|
|
605
|
+
|
|
606
|
+
### Page Features
|
|
607
|
+
|
|
608
|
+
1. **Search Box**: Search configuration names, commands, or arguments
|
|
609
|
+
|
|
610
|
+
2. **Import from Claude Code**: Import MCP services already configured in Claude Code
|
|
611
|
+
|
|
612
|
+
3. **Add Service**: Manually add a new MCP service
|
|
613
|
+
|
|
614
|
+
4. **Service List**
|
|
615
|
+
- **Server**: Service name and type (Local/Remote)
|
|
616
|
+
- **Type**: Stdio or HTTP
|
|
617
|
+
- **Available Tools**: Number and list of tools provided by the service
|
|
618
|
+
- **Actions**: Re-validate, copy command, edit, delete
|
|
619
|
+
|
|
620
|
+
### MCP Service Types
|
|
621
|
+
|
|
622
|
+
| Type | Description | Use Case |
|
|
623
|
+
|------|-------------|----------|
|
|
624
|
+
| Stdio | Communication via standard input/output | Local command-line tools |
|
|
625
|
+
| HTTP | Communication via HTTP API | Remote services or Web APIs |
|
|
626
|
+
|
|
627
|
+
---
|
|
628
|
+
|
|
629
|
+
### Add MCP Service
|
|
630
|
+
|
|
631
|
+
Click the **"Add Service"** button to open the add dialog:
|
|
632
|
+
|
|
633
|
+

|
|
634
|
+
|
|
635
|
+
#### Dialog Field Descriptions
|
|
636
|
+
|
|
637
|
+
1. **Service Name** (Required)
|
|
638
|
+
- Unique identifier name for the service
|
|
639
|
+
- E.g.: "playwright", "supabase"
|
|
640
|
+
|
|
641
|
+
2. **MCP Type**
|
|
642
|
+
- **Stdio**: Local command-line tool
|
|
643
|
+
- **HTTP**: Remote HTTP service
|
|
644
|
+
|
|
645
|
+
3. **Configuration** (JSON format)
|
|
646
|
+
- Stdio type: Fill in startup command
|
|
647
|
+
- HTTP type: Fill in service URL
|
|
648
|
+
|
|
649
|
+
4. **Required Fields**
|
|
650
|
+
- `type`: String, MCP type ("stdio" or "http")
|
|
651
|
+
- `command`: String, execution command (e.g. "npx", "uvx")
|
|
652
|
+
- `args`: Array, command arguments
|
|
653
|
+
|
|
654
|
+
5. **Optional Fields**
|
|
655
|
+
- `timeout`: Number, timeout in milliseconds
|
|
656
|
+
- `autoApprove`: Array, auto-approve operations
|
|
657
|
+
|
|
658
|
+
#### Steps
|
|
659
|
+
|
|
660
|
+
1. **Click "Add Service"**
|
|
661
|
+
- Open the service configuration dialog
|
|
662
|
+
|
|
663
|
+
2. **Fill in Basic Information**
|
|
664
|
+
- Enter service name
|
|
665
|
+
- Select service type
|
|
666
|
+
|
|
667
|
+
3. **Configure Startup Parameters**
|
|
668
|
+
- Fill in command or URL based on service type
|
|
669
|
+
- Add necessary command-line arguments
|
|
670
|
+
|
|
671
|
+
4. **Set Environment Variables** (if needed)
|
|
672
|
+
- Add environment variables required for service operation
|
|
673
|
+
|
|
674
|
+
5. **Save and Validate**
|
|
675
|
+
- Click "Add Configuration" button
|
|
676
|
+
- The system will automatically validate the service connection
|
|
677
|
+
|
|
678
|
+
---
|
|
679
|
+
|
|
680
|
+
### Import from Claude Code
|
|
681
|
+
|
|
682
|
+
If you have already configured MCP services in Claude Code, you can automatically import them with one click:
|
|
683
|
+
|
|
684
|
+
#### Steps
|
|
685
|
+
|
|
686
|
+
1. **Click "Import from Claude Code" Button**
|
|
687
|
+
- The system will automatically read Claude Code's MCP configuration file
|
|
688
|
+
- Automatically find MCP Servers already configured in the system
|
|
689
|
+
|
|
690
|
+
2. **Auto Import Complete**
|
|
691
|
+
- The system automatically identifies and imports all configured services
|
|
692
|
+
- No manual selection needed, import completes directly
|
|
693
|
+
- A success notification will be displayed after import
|
|
694
|
+
|
|
695
|
+
3. **Verify Service Status**
|
|
696
|
+
- The system will automatically validate service connections after import
|
|
697
|
+
- Check the service list to confirm import results
|
|
698
|
+
|
|
699
|
+
#### Notes
|
|
700
|
+
|
|
701
|
+
- You need to configure MCP services in Claude Code first
|
|
702
|
+
- The system will automatically read the `~/.claude/claude_desktop_config.json` configuration file
|
|
703
|
+
- Some services may require path configuration adjustments
|
|
704
|
+
- Environment variables will be imported as well
|
|
705
|
+
|
|
706
|
+
---
|
|
707
|
+
|
|
708
|
+
## Skills Management
|
|
709
|
+
|
|
710
|
+
The skills management page is used to create and manage Claude assistant skills to extend AI capabilities.
|
|
711
|
+
|
|
712
|
+

|
|
713
|
+
|
|
714
|
+
### Page Features
|
|
715
|
+
|
|
716
|
+
1. **Search Box**: Search skill names or descriptions
|
|
717
|
+
|
|
718
|
+
2. **Create Skill**: Create a new custom skill
|
|
719
|
+
|
|
720
|
+
3. **Skill List**
|
|
721
|
+
- **Skill Name**: Skill name, source (User Skill/Plugin)
|
|
722
|
+
- **Tools**: Tools the skill can use
|
|
723
|
+
- **Updated**: Last update date
|
|
724
|
+
- **Actions**: View, browse files, edit, delete
|
|
725
|
+
|
|
726
|
+
### Skill Types
|
|
727
|
+
|
|
728
|
+
| Type Label | Description |
|
|
729
|
+
|-----------|-------------|
|
|
730
|
+
| User Skill | User-created custom skills |
|
|
731
|
+
| Plugin | Skills installed from plugin marketplaces |
|
|
732
|
+
| Local | Locally stored skill files |
|
|
733
|
+
|
|
734
|
+
---
|
|
735
|
+
|
|
736
|
+
### Create Skill
|
|
737
|
+
|
|
738
|
+
Click the **"Create Skill"** button to open the create dialog:
|
|
739
|
+
|
|
740
|
+
#### Dialog Field Descriptions
|
|
741
|
+
|
|
742
|
+
1. **Skill Name** (Required)
|
|
743
|
+
- Unique identifier name for the skill
|
|
744
|
+
- E.g.: "code-review", "doc-generator"
|
|
745
|
+
|
|
746
|
+
2. **Trigger Condition**
|
|
747
|
+
- Define when to automatically activate this skill
|
|
748
|
+
- Can use keywords or conditional expressions
|
|
749
|
+
|
|
750
|
+
3. **Skill Description**
|
|
751
|
+
- Brief description of the skill's function
|
|
752
|
+
- Helps AI understand when to use it
|
|
753
|
+
|
|
754
|
+
4. **Skill Instructions**
|
|
755
|
+
- Detailed skill execution instructions
|
|
756
|
+
- Written in Markdown format
|
|
757
|
+
- Can include examples and best practices
|
|
758
|
+
|
|
759
|
+
5. **Tool Restrictions** (Optional)
|
|
760
|
+
- Limit tools the skill can use
|
|
761
|
+
- If not set, uses agent's default tools
|
|
762
|
+
|
|
763
|
+
#### Steps
|
|
764
|
+
|
|
765
|
+
1. **Click "Create Skill" Button**
|
|
766
|
+
- Open the skill configuration dialog
|
|
767
|
+
|
|
768
|
+
2. **Fill in Basic Information**
|
|
769
|
+
- Enter skill name
|
|
770
|
+
- Write trigger condition
|
|
771
|
+
|
|
772
|
+
3. **Write Skill Instructions**
|
|
773
|
+
- Write detailed instructions in the instruction editor
|
|
774
|
+
- Include specific behavior definitions for the skill
|
|
775
|
+
|
|
776
|
+
4. **Configure Tool Restrictions** (Optional)
|
|
777
|
+
- Select tools the skill can use
|
|
778
|
+
|
|
779
|
+
5. **Save Skill**
|
|
780
|
+
- Click "Create" button to save
|
|
781
|
+
|
|
782
|
+
---
|
|
783
|
+
|
|
784
|
+
### View Skill Details
|
|
785
|
+
|
|
786
|
+
Click the "View" button in the skill list to view the complete skill content:
|
|
787
|
+
|
|
788
|
+
#### Detail Content
|
|
789
|
+
|
|
790
|
+
- **Skill Name and Description**
|
|
791
|
+
- **Trigger Condition**
|
|
792
|
+
- **Complete Skill Instructions**
|
|
793
|
+
- **Tool Restriction Configuration**
|
|
794
|
+
- **Creation/Update Time**
|
|
795
|
+
|
|
796
|
+
#### Action Options
|
|
797
|
+
|
|
798
|
+
- **Edit**: Modify skill configuration
|
|
799
|
+
- **Browse Files**: View skill-related files
|
|
800
|
+
- **Delete**: Delete this skill
|
|
801
|
+
|
|
802
|
+
---
|
|
803
|
+
|
|
804
|
+
### Browse Skill Files
|
|
805
|
+
|
|
806
|
+
Click the folder icon in the skill list to view the complete file structure of the skill:
|
|
807
|
+
|
|
808
|
+

|
|
809
|
+
|
|
810
|
+
#### Features
|
|
811
|
+
|
|
812
|
+
The skill file browser allows you to view the complete contents of the skill directory:
|
|
813
|
+
|
|
814
|
+
1. **File Directory Tree**
|
|
815
|
+
- Shows the complete structure of the skill folder
|
|
816
|
+
- Supports expand/collapse subdirectories
|
|
817
|
+
- Shows file type icons
|
|
818
|
+
|
|
819
|
+
2. **File List**
|
|
820
|
+
- Shows all files in the current directory
|
|
821
|
+
- Shows file size and modification time
|
|
822
|
+
|
|
823
|
+
3. **File Content Preview**
|
|
824
|
+
|
|
825
|
+

|
|
826
|
+
|
|
827
|
+
Click a specific file to preview its content:
|
|
828
|
+
- Supports code syntax highlighting
|
|
829
|
+
- Supports Markdown rendering
|
|
830
|
+
- Can view detailed content of skill instructions, configurations, etc.
|
|
831
|
+
|
|
832
|
+
#### Steps
|
|
833
|
+
|
|
834
|
+
1. **Open File Browser**
|
|
835
|
+
- Click the 📁 (folder) icon on the skill row in the skill list
|
|
836
|
+
|
|
837
|
+
2. **Browse Directory Structure**
|
|
838
|
+
- Expand the directory tree on the left to view file structure
|
|
839
|
+
- Click folder to enter subdirectory
|
|
840
|
+
|
|
841
|
+
3. **View File Content**
|
|
842
|
+
- Click filename to view file content
|
|
843
|
+
- Content will be displayed in the right preview area
|
|
844
|
+
|
|
845
|
+
4. **Close Browser**
|
|
846
|
+
- Click close button or outside the dialog to close
|
|
847
|
+
|
|
848
|
+
---
|
|
849
|
+
|
|
850
|
+
## Plugin Management
|
|
851
|
+
|
|
852
|
+
The plugin management page is used to manage plugin marketplaces and installed plugins.
|
|
853
|
+
|
|
854
|
+

|
|
855
|
+
|
|
856
|
+
### Page Features
|
|
857
|
+
|
|
858
|
+
1. **Tab Switching**
|
|
859
|
+
- **Marketplaces**: Manage plugin repository sources
|
|
860
|
+
- **Browse Plugins**: Browse and install plugins
|
|
861
|
+
|
|
862
|
+
2. **Search Box**: Search marketplace names
|
|
863
|
+
|
|
864
|
+
3. **Add Marketplace**: Add a new plugin marketplace source
|
|
865
|
+
|
|
866
|
+
4. **Marketplace List**
|
|
867
|
+
- Marketplace name and source type
|
|
868
|
+
- Git repository address
|
|
869
|
+
- Plugin count
|
|
870
|
+
- Sync and delete actions
|
|
871
|
+
|
|
872
|
+
---
|
|
873
|
+
|
|
874
|
+
### Add Marketplace
|
|
875
|
+
|
|
876
|
+
Click the **"Add Marketplace"** button to add a new plugin source:
|
|
877
|
+
|
|
878
|
+

|
|
879
|
+
|
|
880
|
+
#### Dialog Field Descriptions
|
|
881
|
+
|
|
882
|
+
1. **Marketplace Name** (Required)
|
|
883
|
+
- Display name for the plugin marketplace
|
|
884
|
+
- E.g.: "Official Plugin Library", "Community Plugins"
|
|
885
|
+
|
|
886
|
+
2. **Source Type** (Required)
|
|
887
|
+
|
|
888
|
+
The system supports three plugin marketplace source types:
|
|
889
|
+
|
|
890
|
+
| Type | Description | Use Case |
|
|
891
|
+
|------|-------------|----------|
|
|
892
|
+
| **GitHub** | Fetch directly from GitHub repository | Official plugin libraries, open source plugins |
|
|
893
|
+
| **Git Repository** | Fetch from any Git repository | GitLab, self-hosted Git servers |
|
|
894
|
+
| **Local Directory** | Load from local directory | Local development, offline environments |
|
|
895
|
+
|
|
896
|
+
3. **Repository Address/Directory Path** (Required)
|
|
897
|
+
- GitHub: Enter repository URL, e.g. `https://github.com/user/plugins`
|
|
898
|
+
- Git Repository: Enter complete Git repository URL
|
|
899
|
+
- Local Directory: Enter absolute path of local directory
|
|
900
|
+
|
|
901
|
+
#### Steps
|
|
902
|
+
|
|
903
|
+
1. **Click "Add Marketplace" Button**
|
|
904
|
+
- Open the add marketplace dialog
|
|
905
|
+
|
|
906
|
+
2. **Select Source Type**
|
|
907
|
+
- Select appropriate source type from dropdown menu
|
|
908
|
+
- Choose corresponding type based on your plugin source
|
|
909
|
+
|
|
910
|
+
3. **Fill in Marketplace Information**
|
|
911
|
+
- Enter marketplace name
|
|
912
|
+
- Enter corresponding address or path based on source type
|
|
913
|
+
|
|
914
|
+
4. **Add Marketplace**
|
|
915
|
+
- Click "Add" button
|
|
916
|
+
|
|
917
|
+
5. **Sync Plugin List**
|
|
918
|
+
- After adding, click "Sync" button to fetch plugins
|
|
919
|
+
|
|
920
|
+
---
|
|
921
|
+
|
|
922
|
+
### Browse and Install Plugins
|
|
923
|
+
|
|
924
|
+
Switch to the "Browse Plugins" tab to view and install available plugins:
|
|
925
|
+
|
|
926
|
+

|
|
927
|
+
|
|
928
|
+
#### Features
|
|
929
|
+
|
|
930
|
+
- **Plugin List**: Shows all available plugins
|
|
931
|
+
- **Plugin Details**: Name, description, version information
|
|
932
|
+
- **Installation Status**: Shows whether installed
|
|
933
|
+
- **Install/Update Button**: One-click install or update
|
|
934
|
+
|
|
935
|
+
#### Steps
|
|
936
|
+
|
|
937
|
+
1. **Switch to "Browse Plugins" Tab**
|
|
938
|
+
- View all available plugins
|
|
939
|
+
|
|
940
|
+
2. **Search Plugins**
|
|
941
|
+
- Use search box to find specific plugins
|
|
942
|
+
|
|
943
|
+
3. **View Plugin Details**
|
|
944
|
+
- Click plugin to view detailed information
|
|
945
|
+
|
|
946
|
+
4. **Install Plugin**
|
|
947
|
+
- Click "Install" button to install plugin
|
|
948
|
+
- After installation, plugin will be available as a skill
|
|
949
|
+
|
|
950
|
+
---
|
|
951
|
+
|
|
952
|
+
## Custom Commands
|
|
953
|
+
|
|
954
|
+
The custom commands page is used to manage Slash Commands.
|
|
955
|
+
|
|
956
|
+

|
|
957
|
+
|
|
958
|
+
### Page Features
|
|
959
|
+
|
|
960
|
+
1. **Search Box**: Search command names
|
|
961
|
+
|
|
962
|
+
2. **New Command**: Create a new custom command
|
|
963
|
+
|
|
964
|
+
3. **Command List**
|
|
965
|
+
- **Command**: Command name, scope (Local/Global), parameters
|
|
966
|
+
- **Model**: Model configuration used
|
|
967
|
+
- **Tools**: Tools the command can use
|
|
968
|
+
- **Created**: Command creation date
|
|
969
|
+
- **Actions**: Edit, delete
|
|
970
|
+
|
|
971
|
+
---
|
|
972
|
+
|
|
973
|
+
### Create Command
|
|
974
|
+
|
|
975
|
+
Click the **"New Command"** button to create a custom command:
|
|
976
|
+
|
|
977
|
+
#### Dialog Field Descriptions
|
|
978
|
+
|
|
979
|
+
1. **Command Name** (Required)
|
|
980
|
+
- Command name starting with `/`
|
|
981
|
+
- E.g.: `/commit`, `/review`
|
|
982
|
+
|
|
983
|
+
2. **Command Description**
|
|
984
|
+
- Brief description of command functionality
|
|
985
|
+
- Displayed in command selection menu
|
|
986
|
+
|
|
987
|
+
3. **Parameter Definition** (Optional)
|
|
988
|
+
- Define parameters the command accepts
|
|
989
|
+
- Supports required and optional parameters
|
|
990
|
+
|
|
991
|
+
4. **Command Prompt**
|
|
992
|
+
- Prompt template when command executes
|
|
993
|
+
- Can use `$ARGUMENTS` to reference parameters
|
|
994
|
+
|
|
995
|
+
5. **Available Tools**
|
|
996
|
+
- Select tools the command can use
|
|
997
|
+
- Limit command's capability scope
|
|
998
|
+
|
|
999
|
+
6. **Command Scope**
|
|
1000
|
+
- **Global**: Available in all projects
|
|
1001
|
+
- **Local**: Available only in current project
|
|
1002
|
+
|
|
1003
|
+
#### Steps
|
|
1004
|
+
|
|
1005
|
+
1. **Click "New Command" Button**
|
|
1006
|
+
- Open the command configuration dialog
|
|
1007
|
+
|
|
1008
|
+
2. **Fill in Basic Information**
|
|
1009
|
+
- Enter command name (starting with /)
|
|
1010
|
+
- Write command description
|
|
1011
|
+
|
|
1012
|
+
3. **Define Parameters** (if needed)
|
|
1013
|
+
- Add command parameters
|
|
1014
|
+
- Set parameter type and whether required
|
|
1015
|
+
|
|
1016
|
+
4. **Write Prompt**
|
|
1017
|
+
- Write command instructions in the prompt editor
|
|
1018
|
+
- Use variables to reference parameters
|
|
1019
|
+
|
|
1020
|
+
5. **Select Tools**
|
|
1021
|
+
- Select tools the command can use
|
|
1022
|
+
|
|
1023
|
+
6. **Save Command**
|
|
1024
|
+
- Click "Create" button to save
|
|
1025
|
+
|
|
1026
|
+
#### Using Commands
|
|
1027
|
+
|
|
1028
|
+
In the chat interface, type `/` to trigger the command menu and select the command to execute.
|
|
1029
|
+
|
|
1030
|
+
---
|
|
1031
|
+
|
|
1032
|
+
## Chat Interface
|
|
1033
|
+
|
|
1034
|
+
The chat interface is the main work area for conversations with AI assistants.
|
|
1035
|
+
|
|
1036
|
+

|
|
1037
|
+
|
|
1038
|
+
### Page Layout
|
|
1039
|
+
|
|
1040
|
+
1. **Top Information Bar**
|
|
1041
|
+
- Current assistant name and service information
|
|
1042
|
+
- Project name
|
|
1043
|
+
- New session button
|
|
1044
|
+
- Session history button
|
|
1045
|
+
- Refresh messages button
|
|
1046
|
+
|
|
1047
|
+
2. **Chat Area** (Left)
|
|
1048
|
+
- Assistant welcome message
|
|
1049
|
+
- Conversation history
|
|
1050
|
+
- Message input box
|
|
1051
|
+
|
|
1052
|
+
3. **File Browser** (Middle)
|
|
1053
|
+
- Project directory tree structure
|
|
1054
|
+
- Folder expand/collapse
|
|
1055
|
+
- File type icons
|
|
1056
|
+
- File size display
|
|
1057
|
+
|
|
1058
|
+
4. **File Preview Area** (Right)
|
|
1059
|
+
- Preview of selected file content
|
|
1060
|
+
- Supports code syntax highlighting
|
|
1061
|
+
|
|
1062
|
+
5. **Layout Controls**
|
|
1063
|
+
- Hide/show chat interface
|
|
1064
|
+
- Hide/show visualization interface
|
|
1065
|
+
|
|
1066
|
+
---
|
|
1067
|
+
|
|
1068
|
+
### Sending Messages
|
|
1069
|
+
|
|
1070
|
+
#### Input Box Features
|
|
1071
|
+
|
|
1072
|
+
- **Message Input**: Shift+Enter for new line, Enter to send
|
|
1073
|
+
- **Trigger Commands**: Type `/` to trigger command menu
|
|
1074
|
+
- **Tool Selection**: Click tool icon to select available tools
|
|
1075
|
+
- **Image Upload**: Click image icon to upload images
|
|
1076
|
+
- **Settings Button**: Click the bottom settings area (e.g., "GLM-4.7 | Bypass Permissions") to open detailed settings
|
|
1077
|
+
|
|
1078
|
+
#### Steps
|
|
1079
|
+
|
|
1080
|
+
1. **Enter Message**
|
|
1081
|
+
- Type your question or instruction in the input box
|
|
1082
|
+
|
|
1083
|
+
2. **Use Slash Commands**
|
|
1084
|
+
- Type `/` to see available commands
|
|
1085
|
+
- Select command and fill in parameters
|
|
1086
|
+
|
|
1087
|
+
3. **Send Message**
|
|
1088
|
+
- Press Enter or click send button
|
|
1089
|
+
|
|
1090
|
+
4. **Wait for Response**
|
|
1091
|
+
- AI will stream response in real-time
|
|
1092
|
+
- Can click stop button to interrupt at any time
|
|
1093
|
+
|
|
1094
|
+
---
|
|
1095
|
+
|
|
1096
|
+
### Tool Selection
|
|
1097
|
+
|
|
1098
|
+
Click the tool icon next to the input box to configure tools available for current conversation:
|
|
1099
|
+
|
|
1100
|
+
#### Features
|
|
1101
|
+
|
|
1102
|
+
- **Tool List**: Shows all available tools
|
|
1103
|
+
- **Tool Categories**: Displayed grouped by type
|
|
1104
|
+
- **Enable/Disable**: Control tool availability in current conversation
|
|
1105
|
+
- **Temporary Settings**: Settings only apply to current conversation
|
|
1106
|
+
|
|
1107
|
+
#### Steps
|
|
1108
|
+
|
|
1109
|
+
1. **Click Tool Icon**
|
|
1110
|
+
- Open tool selection panel
|
|
1111
|
+
|
|
1112
|
+
2. **Select Tools**
|
|
1113
|
+
- Check tools to enable
|
|
1114
|
+
- Uncheck tools not needed
|
|
1115
|
+
|
|
1116
|
+
3. **Apply Settings**
|
|
1117
|
+
- Click confirm to apply changes
|
|
1118
|
+
|
|
1119
|
+
---
|
|
1120
|
+
|
|
1121
|
+
### Session History
|
|
1122
|
+
|
|
1123
|
+
Click the "Session History" button to view and switch historical sessions:
|
|
1124
|
+
|
|
1125
|
+
#### Features
|
|
1126
|
+
|
|
1127
|
+
- **Session List**: Shows all historical sessions
|
|
1128
|
+
- **Session Info**: Time, message count, assistant type
|
|
1129
|
+
- **Switch Session**: Click to switch to historical session
|
|
1130
|
+
- **Delete Session**: Delete unwanted sessions
|
|
1131
|
+
|
|
1132
|
+
#### Steps
|
|
1133
|
+
|
|
1134
|
+
1. **Click "Session History" Button**
|
|
1135
|
+
- Open session history panel
|
|
1136
|
+
|
|
1137
|
+
2. **Browse Historical Sessions**
|
|
1138
|
+
- View session list
|
|
1139
|
+
- Each session shows time and summary
|
|
1140
|
+
|
|
1141
|
+
3. **Switch Session**
|
|
1142
|
+
- Click a session to load its content
|
|
1143
|
+
|
|
1144
|
+
4. **Manage Sessions**
|
|
1145
|
+
- Click delete button to remove session
|
|
1146
|
+
|
|
1147
|
+
---
|
|
1148
|
+
|
|
1149
|
+
### Chat Settings
|
|
1150
|
+
|
|
1151
|
+
Click the settings area at the bottom of the input box (showing current model and permission status, e.g., "GLM-4.7 | Bypass Permissions") to open the chat settings panel:
|
|
1152
|
+
|
|
1153
|
+

|
|
1154
|
+
|
|
1155
|
+
#### Setting Options
|
|
1156
|
+
|
|
1157
|
+
1. **Supplier Selection**
|
|
1158
|
+
|
|
1159
|
+

|
|
1160
|
+
|
|
1161
|
+
- Select configured supplier from dropdown menu
|
|
1162
|
+
- Each supplier corresponds to different API configuration
|
|
1163
|
+
- Switching supplier automatically updates available model list
|
|
1164
|
+
|
|
1165
|
+
2. **Model Selection**
|
|
1166
|
+
- Shows available models based on selected supplier
|
|
1167
|
+
- Different models have different capabilities and speed characteristics
|
|
1168
|
+
- Takes effect immediately after selection
|
|
1169
|
+
|
|
1170
|
+
3. **Permission Settings**
|
|
1171
|
+
- **Default**: Standard permission mode
|
|
1172
|
+
- **Bypass Permissions**: Skip certain permission checks, suitable for advanced users
|
|
1173
|
+
- **Read-Only Mode**: Only allow read operations
|
|
1174
|
+
|
|
1175
|
+
4. **Temporary Environment Variables**
|
|
1176
|
+
- Add temporary environment variables for current session
|
|
1177
|
+
- Does not affect system configuration
|
|
1178
|
+
- Automatically cleared after session ends
|
|
1179
|
+
- Format: Key-value pairs
|
|
1180
|
+
|
|
1181
|
+
#### Steps
|
|
1182
|
+
|
|
1183
|
+
1. **Open Settings Panel**
|
|
1184
|
+
- Click the settings button area below the input box
|
|
1185
|
+
|
|
1186
|
+
2. **Select Supplier**
|
|
1187
|
+
- Click supplier dropdown menu
|
|
1188
|
+
- Select target supplier
|
|
1189
|
+
|
|
1190
|
+
3. **Select Model**
|
|
1191
|
+
- Select model to use from model dropdown menu
|
|
1192
|
+
|
|
1193
|
+
4. **Configure Permissions**
|
|
1194
|
+
- Select permission mode as needed
|
|
1195
|
+
|
|
1196
|
+
5. **Add Environment Variables** (Optional)
|
|
1197
|
+
- Click "Add Variable"
|
|
1198
|
+
- Enter variable name and value
|
|
1199
|
+
- Can add multiple variables
|
|
1200
|
+
|
|
1201
|
+
6. **Apply Settings**
|
|
1202
|
+
- Close panel after settings complete
|
|
1203
|
+
- New settings will apply to subsequent conversations
|
|
1204
|
+
|
|
1205
|
+
---
|
|
1206
|
+
|
|
1207
|
+
## System Settings
|
|
1208
|
+
|
|
1209
|
+
### Look and Feel
|
|
1210
|
+
|
|
1211
|
+
The look and feel settings page is used to configure interface theme and language:
|
|
1212
|
+
|
|
1213
|
+

|
|
1214
|
+
|
|
1215
|
+
#### Theme Settings
|
|
1216
|
+
|
|
1217
|
+
- **Follow System**: Automatically match operating system theme
|
|
1218
|
+
- **Light Mode**: Bright interface theme
|
|
1219
|
+
- **Dark Mode**: Dark interface theme
|
|
1220
|
+
|
|
1221
|
+
#### Language Settings
|
|
1222
|
+
|
|
1223
|
+
- **🇨🇳 Chinese Simplified**
|
|
1224
|
+
- **🇺🇸 English**
|
|
1225
|
+
|
|
1226
|
+
#### Steps
|
|
1227
|
+
|
|
1228
|
+
1. **Go to Look and Feel**
|
|
1229
|
+
- Click "Settings" → "Look & Feel" in the left navigation bar
|
|
1230
|
+
|
|
1231
|
+
2. **Select Theme**
|
|
1232
|
+
- Click the corresponding theme option
|
|
1233
|
+
|
|
1234
|
+
3. **Select Language**
|
|
1235
|
+
- Click the corresponding language option
|
|
1236
|
+
|
|
1237
|
+
4. **Settings Take Effect Immediately**
|
|
1238
|
+
- No need to save, applies immediately after selection
|
|
1239
|
+
|
|
1240
|
+
---
|
|
1241
|
+
|
|
1242
|
+
### Supplier Management
|
|
1243
|
+
|
|
1244
|
+
The supplier management page is used to configure multiple AI model suppliers:
|
|
1245
|
+
|
|
1246
|
+

|
|
1247
|
+
|
|
1248
|
+
#### Page Features
|
|
1249
|
+
|
|
1250
|
+
1. **Supplier Quick Buttons**: Quickly add common suppliers
|
|
1251
|
+
- GLM (Zhipu AI)
|
|
1252
|
+
- DeepSeek
|
|
1253
|
+
- Kimi K2 (Moonshot AI)
|
|
1254
|
+
- MiniMax
|
|
1255
|
+
|
|
1256
|
+
2. **Supplier List**
|
|
1257
|
+
- Supplier name and alias
|
|
1258
|
+
- Path configuration
|
|
1259
|
+
- Environment variables
|
|
1260
|
+
- Supported model list
|
|
1261
|
+
|
|
1262
|
+
3. **Supplier Actions**
|
|
1263
|
+
- Copy command
|
|
1264
|
+
- Set as default
|
|
1265
|
+
- Edit configuration
|
|
1266
|
+
- Delete
|
|
1267
|
+
|
|
1268
|
+
---
|
|
1269
|
+
|
|
1270
|
+
#### Add Supplier
|
|
1271
|
+
|
|
1272
|
+
Click the **"Add Supplier"** button or quick button to add a new supplier:
|
|
1273
|
+
|
|
1274
|
+
##### Dialog Field Descriptions
|
|
1275
|
+
|
|
1276
|
+
1. **Supplier Quick Configuration Template**
|
|
1277
|
+
- Select preset template for quick configuration
|
|
1278
|
+
- Auto-fill common supplier configurations
|
|
1279
|
+
|
|
1280
|
+
2. **Supplier Name** (Required)
|
|
1281
|
+
- Display name for the supplier
|
|
1282
|
+
- E.g.: "Claude Code v1.2.3"
|
|
1283
|
+
|
|
1284
|
+
3. **Alias** (Required)
|
|
1285
|
+
- Unique identifier for the supplier
|
|
1286
|
+
- E.g.: "claude-1.2.3"
|
|
1287
|
+
|
|
1288
|
+
4. **Description**
|
|
1289
|
+
- Supplier functionality description
|
|
1290
|
+
|
|
1291
|
+
5. **Executable Path**
|
|
1292
|
+
- Path to Claude Code executable
|
|
1293
|
+
- Leave empty to use system default path
|
|
1294
|
+
|
|
1295
|
+
6. **Model Configuration**
|
|
1296
|
+
- Add models supported by this supplier
|
|
1297
|
+
- Includes: Model ID, Model Name, Is Vision Model
|
|
1298
|
+
|
|
1299
|
+
7. **Environment Variables**
|
|
1300
|
+
- Configure API address and authentication information
|
|
1301
|
+
- Common variables:
|
|
1302
|
+
- `ANTHROPIC_BASE_URL`: API base address
|
|
1303
|
+
- `ANTHROPIC_AUTH_TOKEN`: API authentication token
|
|
1304
|
+
|
|
1305
|
+
---
|
|
1306
|
+
|
|
1307
|
+
#### Edit Supplier
|
|
1308
|
+
|
|
1309
|
+
Click the edit button in the supplier list to modify supplier configuration:
|
|
1310
|
+
|
|
1311
|
+
##### Editable Content
|
|
1312
|
+
|
|
1313
|
+
- Supplier name and alias
|
|
1314
|
+
- Description information
|
|
1315
|
+
- Executable path
|
|
1316
|
+
- Model configuration (add, delete, modify models)
|
|
1317
|
+
- Environment variable configuration
|
|
1318
|
+
|
|
1319
|
+
##### Steps
|
|
1320
|
+
|
|
1321
|
+
1. **Find Target Supplier**
|
|
1322
|
+
- Locate in the supplier list
|
|
1323
|
+
|
|
1324
|
+
2. **Click Edit Button**
|
|
1325
|
+
- Open edit dialog
|
|
1326
|
+
|
|
1327
|
+
3. **Modify Configuration**
|
|
1328
|
+
- Update fields that need modification
|
|
1329
|
+
|
|
1330
|
+
4. **Save Changes**
|
|
1331
|
+
- Click "Update" button to apply changes
|
|
1332
|
+
|
|
1333
|
+
---
|
|
1334
|
+
|
|
1335
|
+
### Global Memory
|
|
1336
|
+
|
|
1337
|
+
The global memory page is used to manage cross-project shared memory content:
|
|
1338
|
+
|
|
1339
|
+

|
|
1340
|
+
|
|
1341
|
+
#### Features
|
|
1342
|
+
|
|
1343
|
+
- **Memory Content Source**: `~/.claude/CLAUDE.md` file
|
|
1344
|
+
- **Auto Load**: Automatically loads during each conversation
|
|
1345
|
+
- **Edit Feature**: Edit directly in the interface
|
|
1346
|
+
- **Refresh Feature**: Reload from file
|
|
1347
|
+
|
|
1348
|
+
#### Suggested Content
|
|
1349
|
+
|
|
1350
|
+
- Personal information and preferences
|
|
1351
|
+
- Commonly used tech stacks
|
|
1352
|
+
- Coding standards
|
|
1353
|
+
- Common configurations
|
|
1354
|
+
|
|
1355
|
+
#### Steps
|
|
1356
|
+
|
|
1357
|
+
1. **Go to Global Memory Settings**
|
|
1358
|
+
- Click "Settings" → "Memory" in the left navigation bar
|
|
1359
|
+
|
|
1360
|
+
2. **View Current Memory**
|
|
1361
|
+
- Page displays current global memory content
|
|
1362
|
+
|
|
1363
|
+
3. **Edit Memory**
|
|
1364
|
+
- Click "Edit" button to enter edit mode
|
|
1365
|
+
- Save after modifying content
|
|
1366
|
+
|
|
1367
|
+
4. **Refresh Content**
|
|
1368
|
+
- Click "Refresh" button to reload from file
|
|
1369
|
+
|
|
1370
|
+
---
|
|
1371
|
+
|
|
1372
|
+
## Keyboard Shortcuts Reference
|
|
1373
|
+
|
|
1374
|
+
| Shortcut | Function |
|
|
1375
|
+
|----------|----------|
|
|
1376
|
+
| Enter | Send message |
|
|
1377
|
+
| Shift + Enter | New line in message |
|
|
1378
|
+
| / | Trigger command menu |
|
|
1379
|
+
| F8 | Open notification panel |
|
|
1380
|
+
|
|
1381
|
+
---
|
|
1382
|
+
|
|
1383
|
+
## FAQ
|
|
1384
|
+
|
|
1385
|
+
### Q: How do I switch between different AI models?
|
|
1386
|
+
A: At the bottom of the chat interface, click the model name (e.g., "GLM-4.7") to switch to other configured models.
|
|
1387
|
+
|
|
1388
|
+
### Q: How do I add a new project directory?
|
|
1389
|
+
A: Go to the "Projects" page and click "Create New Project" or "Import Project" button.
|
|
1390
|
+
|
|
1391
|
+
### Q: What if MCP service connection fails?
|
|
1392
|
+
A: Check if the service configuration is correct, click "Re-validate" button to test connection, and check console logs for error information.
|
|
1393
|
+
|
|
1394
|
+
### Q: How do I backup my configuration?
|
|
1395
|
+
A: All configurations are stored in the `~/.agent-studio` directory. Backup this directory.
|
|
1396
|
+
|
|
1397
|
+
---
|
|
1398
|
+
|
|
1399
|
+
## Technical Support
|
|
1400
|
+
|
|
1401
|
+
- **GitHub Issues**: [Submit Issues](https://github.com/okguitar/agentstudio/issues)
|
|
1402
|
+
- **GitHub Discussions**: [Community Discussions](https://github.com/okguitar/agentstudio/discussions)
|
|
1403
|
+
- **Documentation**: [Wiki Documentation](https://github.com/okguitar/agentstudio/wiki)
|
|
1404
|
+
|
|
1405
|
+
---
|
|
1406
|
+
|
|
1407
|
+
*© 2024 AgentStudio. MIT License.*
|
|
1408
|
+
|