@clawpump/claw-agent 0.1.4 → 0.1.6
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/agent/.dockerignore +67 -0
- package/agent/.envrc +1 -1
- package/agent/.gitattributes +8 -0
- package/agent/AGENTS.md +216 -4
- package/agent/CONTRIBUTING.md +46 -8
- package/agent/Dockerfile +78 -35
- package/agent/MANIFEST.in +2 -0
- package/agent/README.md +12 -5
- package/agent/README.ur-pk.md +261 -0
- package/agent/README.zh-CN.md +11 -8
- package/agent/SECURITY.md +5 -4
- package/agent/acp_adapter/provenance.py +127 -0
- package/agent/acp_adapter/server.py +112 -5
- package/agent/acp_adapter/session.py +1 -6
- package/agent/acp_registry/agent.json +2 -2
- package/agent/agent/account_usage.py +313 -1
- package/agent/agent/agent_init.py +140 -37
- package/agent/agent/agent_runtime_helpers.py +342 -83
- package/agent/agent/anthropic_adapter.py +320 -33
- package/agent/agent/auxiliary_client.py +525 -105
- package/agent/agent/background_review.py +157 -19
- package/agent/agent/bedrock_adapter.py +71 -6
- package/agent/agent/billing_view.py +295 -0
- package/agent/agent/chat_completion_helpers.py +229 -4
- package/agent/agent/codex_responses_adapter.py +86 -10
- package/agent/agent/codex_runtime.py +153 -1
- package/agent/agent/coding_context.py +738 -0
- package/agent/agent/context_compressor.py +392 -44
- package/agent/agent/context_references.py +34 -1
- package/agent/agent/conversation_compression.py +159 -22
- package/agent/agent/conversation_loop.py +643 -908
- package/agent/agent/copilot_acp_client.py +4 -11
- package/agent/agent/credential_pool.py +5 -3
- package/agent/agent/credits_tracker.py +794 -0
- package/agent/agent/curator.py +91 -18
- package/agent/agent/curator_backup.py +26 -10
- package/agent/agent/display.py +42 -1
- package/agent/agent/error_classifier.py +52 -3
- package/agent/agent/errors.py +3 -0
- package/agent/agent/file_safety.py +0 -17
- package/agent/agent/gemini_native_adapter.py +31 -1
- package/agent/agent/i18n.py +48 -4
- package/agent/agent/image_gen_provider.py +74 -5
- package/agent/agent/image_routing.py +29 -0
- package/agent/agent/insights.py +8 -17
- package/agent/agent/lsp/install.py +3 -0
- package/agent/agent/memory_manager.py +326 -31
- package/agent/agent/message_content.py +50 -0
- package/agent/agent/model_metadata.py +214 -3
- package/agent/agent/moonshot_schema.py +8 -1
- package/agent/agent/onboarding.py +60 -0
- package/agent/agent/prompt_builder.py +327 -37
- package/agent/agent/redact.py +1 -0
- package/agent/agent/runtime_cwd.py +34 -5
- package/agent/agent/secret_scope.py +205 -0
- package/agent/agent/secret_sources/bitwarden.py +34 -2
- package/agent/agent/skill_commands.py +90 -1
- package/agent/agent/skill_preprocessing.py +1 -0
- package/agent/agent/skill_utils.py +209 -36
- package/agent/agent/ssl_guard.py +94 -0
- package/agent/agent/system_prompt.py +133 -5
- package/agent/agent/tool_executor.py +496 -70
- package/agent/agent/transports/anthropic.py +83 -21
- package/agent/agent/transports/chat_completions.py +94 -5
- package/agent/agent/transports/codex.py +67 -2
- package/agent/agent/transports/codex_app_server.py +1 -0
- package/agent/agent/transports/codex_app_server_session.py +30 -0
- package/agent/agent/transports/types.py +12 -0
- package/agent/agent/turn_context.py +408 -0
- package/agent/agent/turn_finalizer.py +428 -0
- package/agent/agent/turn_retry_state.py +68 -0
- package/agent/agent/usage_pricing.py +3 -0
- package/agent/apps/bootstrap-installer/package.json +6 -5
- package/agent/apps/bootstrap-installer/src/routes/failure.tsx +12 -5
- package/agent/apps/bootstrap-installer/src/routes/progress.tsx +1 -3
- package/agent/apps/bootstrap-installer/src/store.ts +3 -2
- package/agent/apps/bootstrap-installer/src-tauri/src/bootstrap.rs +172 -7
- package/agent/apps/bootstrap-installer/src-tauri/src/events.rs +14 -1
- package/agent/apps/bootstrap-installer/src-tauri/src/paths.rs +29 -0
- package/agent/apps/bootstrap-installer/src-tauri/src/powershell.rs +93 -3
- package/agent/apps/bootstrap-installer/src-tauri/src/update.rs +695 -39
- package/agent/apps/bootstrap-installer/tsconfig.json +3 -4
- package/agent/apps/desktop/DESIGN.md +167 -0
- package/agent/apps/desktop/README.md +20 -16
- package/agent/apps/desktop/assets/icon.icns +0 -0
- package/agent/apps/desktop/assets/icon.ico +0 -0
- package/agent/apps/desktop/assets/icon.png +0 -0
- package/agent/apps/desktop/electron/backend-env.cjs +112 -0
- package/agent/apps/desktop/electron/backend-env.test.cjs +111 -0
- package/agent/apps/desktop/electron/backend-probes.test.cjs +3 -1
- package/agent/apps/desktop/electron/backend-ready.cjs +66 -0
- package/agent/apps/desktop/electron/bootstrap-platform.cjs +52 -0
- package/agent/apps/desktop/electron/bootstrap-platform.test.cjs +59 -1
- package/agent/apps/desktop/electron/bootstrap-runner.cjs +176 -38
- package/agent/apps/desktop/electron/bootstrap-runner.test.cjs +112 -1
- package/agent/apps/desktop/electron/connection-config.cjs +288 -0
- package/agent/apps/desktop/electron/connection-config.test.cjs +396 -0
- package/agent/apps/desktop/electron/dashboard-token.cjs +99 -0
- package/agent/apps/desktop/electron/dashboard-token.test.cjs +142 -0
- package/agent/apps/desktop/electron/desktop-uninstall.cjs +232 -0
- package/agent/apps/desktop/electron/desktop-uninstall.test.cjs +246 -0
- package/agent/apps/desktop/electron/entitlements.mac.inherit.plist +2 -0
- package/agent/apps/desktop/electron/fs-read-dir.cjs +109 -0
- package/agent/apps/desktop/electron/fs-read-dir.test.cjs +364 -0
- package/agent/apps/desktop/electron/gateway-ws-probe.cjs +188 -0
- package/agent/apps/desktop/electron/gateway-ws-probe.test.cjs +122 -0
- package/agent/apps/desktop/electron/git-root.cjs +54 -0
- package/agent/apps/desktop/electron/git-root.test.cjs +40 -0
- package/agent/apps/desktop/electron/git-worktrees.cjs +174 -0
- package/agent/apps/desktop/electron/hardening.cjs +123 -28
- package/agent/apps/desktop/electron/hardening.test.cjs +163 -0
- package/agent/apps/desktop/electron/main.cjs +3121 -331
- package/agent/apps/desktop/electron/oauth-net-request.cjs +20 -0
- package/agent/apps/desktop/electron/oauth-net-request.test.cjs +34 -0
- package/agent/apps/desktop/electron/preload.cjs +52 -2
- package/agent/apps/desktop/electron/session-windows.cjs +124 -0
- package/agent/apps/desktop/electron/session-windows.test.cjs +199 -0
- package/agent/apps/desktop/electron/update-rebuild.cjs +29 -0
- package/agent/apps/desktop/electron/update-rebuild.test.cjs +55 -0
- package/agent/apps/desktop/electron/update-remote.cjs +56 -0
- package/agent/apps/desktop/electron/update-remote.test.cjs +78 -0
- package/agent/apps/desktop/electron/vscode-marketplace.cjs +331 -0
- package/agent/apps/desktop/electron/vscode-marketplace.test.cjs +113 -0
- package/agent/apps/desktop/electron/windows-child-process.test.cjs +57 -0
- package/agent/apps/desktop/electron/windows-user-env.cjs +76 -0
- package/agent/apps/desktop/electron/windows-user-env.test.cjs +90 -0
- package/agent/apps/desktop/electron/workspace-cwd.cjs +38 -0
- package/agent/apps/desktop/electron/workspace-cwd.test.cjs +45 -0
- package/agent/apps/desktop/eslint.config.mjs +0 -3
- package/agent/apps/desktop/index.html +27 -2
- package/agent/apps/desktop/package.json +31 -11
- package/agent/apps/desktop/pr-assets/session-source-folders.png +0 -0
- package/agent/apps/desktop/public/apple-touch-icon.png +0 -0
- package/agent/apps/desktop/public/nous-girl.jpg +0 -0
- package/agent/apps/desktop/scripts/assert-dist-built.cjs +70 -0
- package/agent/apps/desktop/scripts/assert-dist-built.test.cjs +84 -0
- package/agent/apps/desktop/scripts/before-pack.cjs +78 -0
- package/agent/apps/desktop/scripts/before-pack.test.cjs +53 -0
- package/agent/apps/desktop/scripts/diag-scroll-reset.mjs +229 -0
- package/agent/apps/desktop/scripts/patch-electron-builder-mac-binary.cjs +64 -0
- package/agent/apps/desktop/scripts/run-electron-builder.cjs +57 -0
- package/agent/apps/desktop/src/app/agents/index.tsx +53 -45
- package/agent/apps/desktop/src/app/artifacts/index.tsx +102 -83
- package/agent/apps/desktop/src/app/chat/chat-drop-overlay.tsx +29 -8
- package/agent/apps/desktop/src/app/chat/chat-swap-overlay.tsx +47 -0
- package/agent/apps/desktop/src/app/chat/composer/attachments.tsx +81 -45
- package/agent/apps/desktop/src/app/chat/composer/completion-drawer.tsx +13 -24
- package/agent/apps/desktop/src/app/chat/composer/context-menu.tsx +138 -88
- package/agent/apps/desktop/src/app/chat/composer/controls.tsx +138 -90
- package/agent/apps/desktop/src/app/chat/composer/enter-submit-dom-race.test.tsx +218 -0
- package/agent/apps/desktop/src/app/chat/composer/focus.ts +32 -0
- package/agent/apps/desktop/src/app/chat/composer/help-hint.tsx +38 -25
- package/agent/apps/desktop/src/app/chat/composer/hooks/use-live-completion-adapter.ts +7 -0
- package/agent/apps/desktop/src/app/chat/composer/hooks/use-mic-recorder.ts +22 -12
- package/agent/apps/desktop/src/app/chat/composer/hooks/use-slash-completions.ts +142 -14
- package/agent/apps/desktop/src/app/chat/composer/hooks/use-voice-conversation.ts +14 -11
- package/agent/apps/desktop/src/app/chat/composer/hooks/use-voice-recorder.ts +9 -6
- package/agent/apps/desktop/src/app/chat/composer/ime-composition-dom-repro.test.tsx +108 -0
- package/agent/apps/desktop/src/app/chat/composer/index.tsx +930 -180
- package/agent/apps/desktop/src/app/chat/composer/inline-refs.ts +136 -32
- package/agent/apps/desktop/src/app/chat/composer/model-pill.tsx +86 -0
- package/agent/apps/desktop/src/app/chat/composer/queue-panel.tsx +54 -75
- package/agent/apps/desktop/src/app/chat/composer/rich-editor.test.ts +117 -1
- package/agent/apps/desktop/src/app/chat/composer/rich-editor.ts +117 -6
- package/agent/apps/desktop/src/app/chat/composer/slash-nav-dom-repro.test.tsx +186 -0
- package/agent/apps/desktop/src/app/chat/composer/status-stack/index.tsx +202 -0
- package/agent/apps/desktop/src/app/chat/composer/status-stack/status-row.tsx +155 -0
- package/agent/apps/desktop/src/app/chat/composer/text-utils.test.ts +104 -0
- package/agent/apps/desktop/src/app/chat/composer/text-utils.ts +37 -9
- package/agent/apps/desktop/src/app/chat/composer/trigger-popover.test.tsx +50 -0
- package/agent/apps/desktop/src/app/chat/composer/trigger-popover.tsx +105 -40
- package/agent/apps/desktop/src/app/chat/composer/types.ts +5 -0
- package/agent/apps/desktop/src/app/chat/composer/url-dialog.tsx +11 -15
- package/agent/apps/desktop/src/app/chat/composer/voice-activity.tsx +8 -4
- package/agent/apps/desktop/src/app/chat/hooks/use-composer-actions.test.ts +57 -0
- package/agent/apps/desktop/src/app/chat/hooks/use-composer-actions.ts +70 -16
- package/agent/apps/desktop/src/app/chat/hooks/use-file-drop-zone.ts +52 -16
- package/agent/apps/desktop/src/app/chat/index.tsx +234 -81
- package/agent/apps/desktop/src/app/chat/perf-probe.tsx +69 -21
- package/agent/apps/desktop/src/app/chat/right-rail/preview-console.tsx +44 -40
- package/agent/apps/desktop/src/app/chat/right-rail/preview-file.tsx +71 -25
- package/agent/apps/desktop/src/app/chat/right-rail/preview-pane.test.tsx +40 -1
- package/agent/apps/desktop/src/app/chat/right-rail/preview-pane.tsx +55 -53
- package/agent/apps/desktop/src/app/chat/right-rail/preview.tsx +35 -17
- package/agent/apps/desktop/src/app/chat/scroll-to-bottom-button.test.tsx +67 -0
- package/agent/apps/desktop/src/app/chat/scroll-to-bottom-button.tsx +74 -0
- package/agent/apps/desktop/src/app/chat/sidebar/cron-jobs-section.tsx +356 -0
- package/agent/apps/desktop/src/app/chat/sidebar/index.tsx +1189 -364
- package/agent/apps/desktop/src/app/chat/sidebar/load-more-row.tsx +30 -0
- package/agent/apps/desktop/src/app/chat/sidebar/order.test.ts +21 -0
- package/agent/apps/desktop/src/app/chat/sidebar/order.ts +17 -0
- package/agent/apps/desktop/src/app/chat/sidebar/profile-switcher.tsx +524 -0
- package/agent/apps/desktop/src/app/chat/sidebar/session-actions-menu.tsx +80 -45
- package/agent/apps/desktop/src/app/chat/sidebar/session-row.tsx +120 -25
- package/agent/apps/desktop/src/app/chat/sidebar/virtual-session-list.tsx +7 -13
- package/agent/apps/desktop/src/app/chat/sidebar/workspace-groups.test.ts +149 -0
- package/agent/apps/desktop/src/app/chat/sidebar/workspace-groups.ts +326 -0
- package/agent/apps/desktop/src/app/chat/thread-loading.ts +7 -2
- package/agent/apps/desktop/src/app/command-center/index.tsx +320 -581
- package/agent/apps/desktop/src/app/command-palette/index.tsx +681 -0
- package/agent/apps/desktop/src/app/command-palette/marketplace-theme-page.tsx +157 -0
- package/agent/apps/desktop/src/app/cron/index.tsx +392 -324
- package/agent/apps/desktop/src/app/cron/job-state.ts +29 -0
- package/agent/apps/desktop/src/app/desktop-controller.tsx +618 -123
- package/agent/apps/desktop/src/app/floating-hud.ts +22 -0
- package/agent/apps/desktop/src/app/gateway/hooks/use-gateway-boot.test.tsx +265 -0
- package/agent/apps/desktop/src/app/gateway/hooks/use-gateway-boot.ts +260 -14
- package/agent/apps/desktop/src/app/gateway/hooks/use-gateway-request.ts +48 -4
- package/agent/apps/desktop/src/app/hooks/use-keybinds.ts +270 -0
- package/agent/apps/desktop/src/app/hooks/use-refresh-hotkey.ts +45 -0
- package/agent/apps/desktop/src/app/layout-constants.ts +19 -0
- package/agent/apps/desktop/src/app/messaging/index.tsx +136 -241
- package/agent/apps/desktop/src/app/messaging/platform-icon.tsx +95 -0
- package/agent/apps/desktop/src/app/model-visibility-overlay.tsx +31 -0
- package/agent/apps/desktop/src/app/overlays/overlay-search-input.tsx +18 -62
- package/agent/apps/desktop/src/app/overlays/overlay-split-layout.tsx +59 -7
- package/agent/apps/desktop/src/app/overlays/overlay-view.tsx +9 -5
- package/agent/apps/desktop/src/app/page-search-shell.tsx +42 -20
- package/agent/apps/desktop/src/app/profiles/create-profile-dialog.tsx +165 -0
- package/agent/apps/desktop/src/app/profiles/delete-profile-dialog.tsx +65 -0
- package/agent/apps/desktop/src/app/profiles/index.tsx +174 -199
- package/agent/apps/desktop/src/app/profiles/rename-profile-dialog.tsx +125 -0
- package/agent/apps/desktop/src/app/right-sidebar/files/dnd-manager.ts +27 -0
- package/agent/apps/desktop/src/app/right-sidebar/files/ipc.test.ts +100 -0
- package/agent/apps/desktop/src/app/right-sidebar/files/ipc.ts +12 -18
- package/agent/apps/desktop/src/app/right-sidebar/files/remote-picker.tsx +177 -0
- package/agent/apps/desktop/src/app/right-sidebar/files/tree.tsx +35 -21
- package/agent/apps/desktop/src/app/right-sidebar/files/use-project-tree.test.ts +75 -3
- package/agent/apps/desktop/src/app/right-sidebar/files/use-project-tree.ts +152 -5
- package/agent/apps/desktop/src/app/right-sidebar/index.test.tsx +75 -0
- package/agent/apps/desktop/src/app/right-sidebar/index.tsx +166 -129
- package/agent/apps/desktop/src/app/right-sidebar/store.ts +19 -4
- package/agent/apps/desktop/src/app/right-sidebar/terminal/buffer.ts +65 -0
- package/agent/apps/desktop/src/app/right-sidebar/terminal/index.tsx +29 -34
- package/agent/apps/desktop/src/app/right-sidebar/terminal/persistent.tsx +18 -6
- package/agent/apps/desktop/src/app/right-sidebar/terminal/selection.ts +93 -32
- package/agent/apps/desktop/src/app/right-sidebar/terminal/use-terminal-session.ts +381 -119
- package/agent/apps/desktop/src/app/routes.ts +9 -0
- package/agent/apps/desktop/src/app/session/hooks/use-cwd-actions.ts +17 -7
- package/agent/apps/desktop/src/app/session/hooks/use-message-stream.ts +365 -47
- package/agent/apps/desktop/src/app/session/hooks/use-model-controls.test.tsx +198 -0
- package/agent/apps/desktop/src/app/session/hooks/use-model-controls.ts +70 -34
- package/agent/apps/desktop/src/app/session/hooks/use-prompt-actions.test.tsx +1061 -0
- package/agent/apps/desktop/src/app/session/hooks/use-prompt-actions.ts +1143 -165
- package/agent/apps/desktop/src/app/session/hooks/use-route-resume.test.tsx +341 -2
- package/agent/apps/desktop/src/app/session/hooks/use-route-resume.ts +176 -5
- package/agent/apps/desktop/src/app/session/hooks/use-session-actions.test.tsx +259 -0
- package/agent/apps/desktop/src/app/session/hooks/use-session-actions.ts +452 -149
- package/agent/apps/desktop/src/app/session/hooks/use-session-state-cache.test.tsx +327 -0
- package/agent/apps/desktop/src/app/session/hooks/use-session-state-cache.ts +133 -4
- package/agent/apps/desktop/src/app/session-picker-overlay.tsx +32 -0
- package/agent/apps/desktop/src/app/session-switcher.tsx +107 -0
- package/agent/apps/desktop/src/app/settings/about-settings.tsx +45 -36
- package/agent/apps/desktop/src/app/settings/appearance-settings.tsx +243 -162
- package/agent/apps/desktop/src/app/settings/config-settings.tsx +86 -66
- package/agent/apps/desktop/src/app/settings/constants.ts +459 -122
- package/agent/apps/desktop/src/app/settings/credential-key-ui.tsx +373 -0
- package/agent/apps/desktop/src/app/settings/env-credentials.tsx +198 -0
- package/agent/apps/desktop/src/app/settings/env-var-actions-menu.tsx +136 -0
- package/agent/apps/desktop/src/app/settings/field-copy.ts +56 -0
- package/agent/apps/desktop/src/app/settings/gateway-settings.tsx +385 -72
- package/agent/apps/desktop/src/app/settings/helpers.test.ts +156 -1
- package/agent/apps/desktop/src/app/settings/helpers.ts +30 -2
- package/agent/apps/desktop/src/app/settings/index.tsx +118 -84
- package/agent/apps/desktop/src/app/settings/keys-settings.tsx +62 -419
- package/agent/apps/desktop/src/app/settings/mcp-settings.tsx +65 -60
- package/agent/apps/desktop/src/app/settings/model-settings.test.tsx +129 -5
- package/agent/apps/desktop/src/app/settings/model-settings.tsx +370 -65
- package/agent/apps/desktop/src/app/settings/notifications-settings.tsx +150 -0
- package/agent/apps/desktop/src/app/settings/primitives.tsx +5 -11
- package/agent/apps/desktop/src/app/settings/provider-config-panel.test.tsx +142 -0
- package/agent/apps/desktop/src/app/settings/provider-config-panel.tsx +182 -0
- package/agent/apps/desktop/src/app/settings/providers-settings.test.tsx +171 -0
- package/agent/apps/desktop/src/app/settings/providers-settings.tsx +471 -0
- package/agent/apps/desktop/src/app/settings/sessions-settings.tsx +183 -71
- package/agent/apps/desktop/src/app/settings/toolset-config-panel.test.tsx +135 -1
- package/agent/apps/desktop/src/app/settings/toolset-config-panel.tsx +180 -57
- package/agent/apps/desktop/src/app/settings/types.ts +9 -6
- package/agent/apps/desktop/src/app/settings/uninstall-section.tsx +185 -0
- package/agent/apps/desktop/src/app/settings/use-deep-link-highlight.ts +60 -0
- package/agent/apps/desktop/src/app/shell/app-shell.tsx +59 -13
- package/agent/apps/desktop/src/app/shell/gateway-menu-panel.tsx +37 -32
- package/agent/apps/desktop/src/app/shell/hooks/use-overlay-routing.ts +6 -3
- package/agent/apps/desktop/src/app/shell/hooks/use-statusbar-items.tsx +212 -53
- package/agent/apps/desktop/src/app/shell/keybind-panel.tsx +215 -0
- package/agent/apps/desktop/src/app/shell/model-edit-submenu.test.tsx +84 -0
- package/agent/apps/desktop/src/app/shell/model-edit-submenu.tsx +244 -0
- package/agent/apps/desktop/src/app/shell/model-menu-panel.tsx +392 -0
- package/agent/apps/desktop/src/app/shell/statusbar-controls.tsx +23 -33
- package/agent/apps/desktop/src/app/shell/titlebar-controls.tsx +79 -95
- package/agent/apps/desktop/src/app/shell/titlebar.ts +8 -2
- package/agent/apps/desktop/src/app/skills/index.test.tsx +11 -0
- package/agent/apps/desktop/src/app/skills/index.tsx +79 -64
- package/agent/apps/desktop/src/app/types.ts +85 -0
- package/agent/apps/desktop/src/app/updates-overlay.tsx +110 -105
- package/agent/apps/desktop/src/components/assistant-ui/ansi-text.tsx +34 -0
- package/agent/apps/desktop/src/components/assistant-ui/block-direction.test.tsx +129 -0
- package/agent/apps/desktop/src/components/assistant-ui/clarify-tool.tsx +102 -81
- package/agent/apps/desktop/src/components/assistant-ui/directive-text.tsx +92 -15
- package/agent/apps/desktop/src/components/assistant-ui/markdown-text.test.ts +38 -0
- package/agent/apps/desktop/src/components/assistant-ui/markdown-text.tsx +304 -45
- package/agent/apps/desktop/src/components/assistant-ui/message-render-boundary.test.tsx +80 -0
- package/agent/apps/desktop/src/components/assistant-ui/message-render-boundary.tsx +48 -0
- package/agent/apps/desktop/src/components/assistant-ui/streaming.test.tsx +142 -90
- package/agent/apps/desktop/src/components/assistant-ui/thread-list.tsx +337 -0
- package/agent/apps/desktop/src/components/assistant-ui/thread.tsx +667 -190
- package/agent/apps/desktop/src/components/assistant-ui/tool-approval-group.test.tsx +299 -0
- package/agent/apps/desktop/src/components/assistant-ui/tool-approval.test.tsx +133 -0
- package/agent/apps/desktop/src/components/assistant-ui/tool-approval.tsx +239 -0
- package/agent/apps/desktop/src/components/assistant-ui/tool-fallback-model.test.ts +31 -0
- package/agent/apps/desktop/src/components/assistant-ui/tool-fallback-model.ts +152 -134
- package/agent/apps/desktop/src/components/assistant-ui/tool-fallback.tsx +142 -150
- package/agent/apps/desktop/src/components/assistant-ui/tooltip-icon-button.tsx +14 -12
- package/agent/apps/desktop/src/components/assistant-ui/user-message-edit.test.tsx +141 -0
- package/agent/apps/desktop/src/components/assistant-ui/user-message-text.tsx +152 -0
- package/agent/apps/desktop/src/components/boot-failure-overlay.tsx +150 -33
- package/agent/apps/desktop/src/components/boot-failure-reauth.test.ts +100 -0
- package/agent/apps/desktop/src/components/boot-failure-reauth.ts +81 -0
- package/agent/apps/desktop/src/components/brand-mark.tsx +19 -0
- package/agent/apps/desktop/src/components/chat/code-card.tsx +1 -1
- package/agent/apps/desktop/src/components/chat/composer-dock.ts +31 -0
- package/agent/apps/desktop/src/components/chat/diff-lines.tsx +1 -1
- package/agent/apps/desktop/src/components/chat/disclosure-row.tsx +13 -3
- package/agent/apps/desktop/src/components/chat/expandable-block.tsx +52 -0
- package/agent/apps/desktop/src/components/chat/generated-image-result.tsx +174 -0
- package/agent/apps/desktop/src/components/chat/image-generation-placeholder.tsx +70 -37
- package/agent/apps/desktop/src/components/chat/intro.tsx +8 -7
- package/agent/apps/desktop/src/components/chat/preview-attachment.tsx +4 -2
- package/agent/apps/desktop/src/components/chat/shiki-highlighter.test.ts +37 -0
- package/agent/apps/desktop/src/components/chat/shiki-highlighter.tsx +96 -22
- package/agent/apps/desktop/src/components/chat/status-row.tsx +70 -0
- package/agent/apps/desktop/src/components/chat/status-section.tsx +42 -0
- package/agent/apps/desktop/src/components/chat/terminal-output.tsx +54 -0
- package/agent/apps/desktop/src/components/chat/zoomable-image.tsx +70 -109
- package/agent/apps/desktop/src/components/desktop-install-overlay.tsx +154 -84
- package/agent/apps/desktop/src/components/desktop-onboarding-overlay.test.tsx +38 -8
- package/agent/apps/desktop/src/components/desktop-onboarding-overlay.tsx +789 -233
- package/agent/apps/desktop/src/components/error-boundary.tsx +77 -0
- package/agent/apps/desktop/src/components/gateway-connecting-overlay.test.tsx +144 -0
- package/agent/apps/desktop/src/components/gateway-connecting-overlay.tsx +7 -1
- package/agent/apps/desktop/src/components/haptics-provider.tsx +24 -0
- package/agent/apps/desktop/src/components/language-switcher.test.tsx +53 -0
- package/agent/apps/desktop/src/components/language-switcher.tsx +175 -0
- package/agent/apps/desktop/src/components/model-picker.tsx +42 -40
- package/agent/apps/desktop/src/components/model-visibility-dialog.tsx +166 -0
- package/agent/apps/desktop/src/components/notifications.tsx +48 -27
- package/agent/apps/desktop/src/components/pane-shell/index.ts +1 -1
- package/agent/apps/desktop/src/components/pane-shell/pane-shell.tsx +146 -9
- package/agent/apps/desktop/src/components/prompt-overlays.tsx +234 -0
- package/agent/apps/desktop/src/components/session-picker.tsx +108 -0
- package/agent/apps/desktop/src/components/ui/action-status.tsx +25 -0
- package/agent/apps/desktop/src/components/ui/badge.tsx +35 -0
- package/agent/apps/desktop/src/components/ui/button.tsx +37 -13
- package/agent/apps/desktop/src/components/ui/confirm-dialog.tsx +109 -0
- package/agent/apps/desktop/src/components/ui/control.ts +25 -0
- package/agent/apps/desktop/src/components/ui/copy-button.test.tsx +36 -0
- package/agent/apps/desktop/src/components/ui/copy-button.tsx +38 -27
- package/agent/apps/desktop/src/components/ui/dialog.tsx +39 -11
- package/agent/apps/desktop/src/components/ui/dropdown-menu.tsx +98 -24
- package/agent/apps/desktop/src/components/ui/error-state.tsx +50 -0
- package/agent/apps/desktop/src/components/ui/fade-text.tsx +9 -2
- package/agent/apps/desktop/src/components/ui/{braille-spinner.tsx → glyph-spinner.tsx} +15 -13
- package/agent/apps/desktop/src/components/ui/input.tsx +5 -2
- package/agent/apps/desktop/src/components/ui/kbd.tsx +83 -12
- package/agent/apps/desktop/src/components/ui/log-view.tsx +19 -0
- package/agent/apps/desktop/src/components/ui/pagination.tsx +12 -5
- package/agent/apps/desktop/src/components/ui/popover.tsx +44 -0
- package/agent/apps/desktop/src/components/ui/search-field.tsx +80 -0
- package/agent/apps/desktop/src/components/ui/segmented-control.tsx +51 -0
- package/agent/apps/desktop/src/components/ui/select.tsx +10 -3
- package/agent/apps/desktop/src/components/ui/sheet.tsx +8 -2
- package/agent/apps/desktop/src/components/ui/sidebar.tsx +18 -25
- package/agent/apps/desktop/src/components/ui/switch.tsx +38 -15
- package/agent/apps/desktop/src/components/ui/textarea.tsx +4 -11
- package/agent/apps/desktop/src/components/ui/tool-icon.tsx +65 -0
- package/agent/apps/desktop/src/components/ui/tooltip.tsx +31 -4
- package/agent/apps/desktop/src/fonts/JetBrainsMono-Bold.woff2 +0 -0
- package/agent/apps/desktop/src/fonts/JetBrainsMono-Italic.woff2 +0 -0
- package/agent/apps/desktop/src/fonts/JetBrainsMono-Regular.woff2 +0 -0
- package/agent/apps/desktop/src/global.d.ts +181 -4
- package/agent/apps/desktop/src/hermes.test.ts +60 -0
- package/agent/apps/desktop/src/hermes.ts +190 -13
- package/agent/apps/desktop/src/hooks/use-image-download.ts +85 -0
- package/agent/apps/desktop/src/hooks/use-resize-observer.ts +13 -4
- package/agent/apps/desktop/src/hooks/use-worktree-info.ts +68 -0
- package/agent/apps/desktop/src/i18n/catalog.ts +12 -0
- package/agent/apps/desktop/src/i18n/context.test.tsx +232 -0
- package/agent/apps/desktop/src/i18n/context.tsx +183 -0
- package/agent/apps/desktop/src/i18n/define-locale.ts +41 -0
- package/agent/apps/desktop/src/i18n/en.ts +1921 -0
- package/agent/apps/desktop/src/i18n/index.ts +20 -0
- package/agent/apps/desktop/src/i18n/ja.ts +2053 -0
- package/agent/apps/desktop/src/i18n/languages.test.ts +43 -0
- package/agent/apps/desktop/src/i18n/languages.ts +86 -0
- package/agent/apps/desktop/src/i18n/runtime.test.ts +75 -0
- package/agent/apps/desktop/src/i18n/runtime.ts +53 -0
- package/agent/apps/desktop/src/i18n/types.ts +1559 -0
- package/agent/apps/desktop/src/i18n/zh-hant.ts +1992 -0
- package/agent/apps/desktop/src/i18n/zh.ts +2099 -0
- package/agent/apps/desktop/src/lib/ansi.test.ts +123 -0
- package/agent/apps/desktop/src/lib/ansi.ts +186 -0
- package/agent/apps/desktop/src/lib/chat-messages.test.ts +79 -0
- package/agent/apps/desktop/src/lib/chat-messages.ts +68 -29
- package/agent/apps/desktop/src/lib/chat-runtime.test.ts +65 -1
- package/agent/apps/desktop/src/lib/chat-runtime.ts +39 -3
- package/agent/apps/desktop/src/lib/completion-sound.ts +519 -0
- package/agent/apps/desktop/src/lib/desktop-fs.test.ts +116 -0
- package/agent/apps/desktop/src/lib/desktop-fs.ts +113 -0
- package/agent/apps/desktop/src/lib/desktop-slash-commands.test.ts +89 -6
- package/agent/apps/desktop/src/lib/desktop-slash-commands.ts +270 -131
- package/agent/apps/desktop/src/lib/external-link.test.tsx +27 -0
- package/agent/apps/desktop/src/lib/external-link.tsx +9 -2
- package/agent/apps/desktop/src/lib/gateway-events.test.ts +27 -0
- package/agent/apps/desktop/src/lib/gateway-events.ts +16 -0
- package/agent/apps/desktop/src/lib/gateway-ws-url.test.ts +78 -0
- package/agent/apps/desktop/src/lib/gateway-ws-url.ts +91 -0
- package/agent/apps/desktop/src/lib/generated-images.test.ts +97 -0
- package/agent/apps/desktop/src/lib/generated-images.ts +116 -0
- package/agent/apps/desktop/src/lib/haptics.ts +17 -0
- package/agent/apps/desktop/src/lib/icons.ts +10 -2
- package/agent/apps/desktop/src/lib/keybinds/actions.ts +137 -0
- package/agent/apps/desktop/src/lib/keybinds/combo.test.ts +86 -0
- package/agent/apps/desktop/src/lib/keybinds/combo.ts +195 -0
- package/agent/apps/desktop/src/lib/local-preview.ts +23 -2
- package/agent/apps/desktop/src/lib/markdown-preprocess.ts +20 -7
- package/agent/apps/desktop/src/lib/media.remote.test.ts +90 -0
- package/agent/apps/desktop/src/lib/media.ts +40 -1
- package/agent/apps/desktop/src/lib/model-status-label.test.ts +59 -0
- package/agent/apps/desktop/src/lib/model-status-label.ts +122 -0
- package/agent/apps/desktop/src/lib/mutable-ref.ts +6 -0
- package/agent/apps/desktop/src/lib/profile-color.ts +58 -0
- package/agent/apps/desktop/src/lib/query-client.ts +13 -0
- package/agent/apps/desktop/src/lib/remend-tail.test.ts +105 -0
- package/agent/apps/desktop/src/lib/remend-tail.ts +108 -0
- package/agent/apps/desktop/src/lib/session-export.ts +6 -3
- package/agent/apps/desktop/src/lib/session-ids.test.ts +44 -0
- package/agent/apps/desktop/src/lib/session-ids.ts +26 -0
- package/agent/apps/desktop/src/lib/session-search.test.ts +66 -0
- package/agent/apps/desktop/src/lib/session-search.ts +21 -0
- package/agent/apps/desktop/src/lib/session-source.ts +126 -0
- package/agent/apps/desktop/src/lib/storage.test.ts +25 -0
- package/agent/apps/desktop/src/lib/storage.ts +35 -1
- package/agent/apps/desktop/src/lib/todos.test.ts +46 -1
- package/agent/apps/desktop/src/lib/todos.ts +37 -0
- package/agent/apps/desktop/src/lib/tool-result-summary.ts +5 -1
- package/agent/apps/desktop/src/lib/update-copy.test.ts +38 -0
- package/agent/apps/desktop/src/lib/update-copy.ts +44 -0
- package/agent/apps/desktop/src/lib/use-enter-animation.ts +2 -2
- package/agent/apps/desktop/src/lib/yolo-session.ts +50 -0
- package/agent/apps/desktop/src/main.tsx +19 -19
- package/agent/apps/desktop/src/store/boot.ts +4 -3
- package/agent/apps/desktop/src/store/clarify.test.ts +81 -0
- package/agent/apps/desktop/src/store/clarify.ts +50 -13
- package/agent/apps/desktop/src/store/command-palette.ts +20 -0
- package/agent/apps/desktop/src/store/compaction.test.ts +53 -0
- package/agent/apps/desktop/src/store/compaction.ts +38 -0
- package/agent/apps/desktop/src/store/completion-sound.ts +32 -0
- package/agent/apps/desktop/src/store/composer-input-history.test.ts +147 -0
- package/agent/apps/desktop/src/store/composer-input-history.ts +158 -0
- package/agent/apps/desktop/src/store/composer-queue.test.ts +68 -0
- package/agent/apps/desktop/src/store/composer-queue.ts +76 -0
- package/agent/apps/desktop/src/store/composer-status.test.ts +99 -0
- package/agent/apps/desktop/src/store/composer-status.ts +277 -0
- package/agent/apps/desktop/src/store/composer.test.ts +106 -0
- package/agent/apps/desktop/src/store/composer.ts +116 -0
- package/agent/apps/desktop/src/store/cron.ts +19 -0
- package/agent/apps/desktop/src/store/gateway.ts +280 -6
- package/agent/apps/desktop/src/store/keybinds.ts +143 -0
- package/agent/apps/desktop/src/store/layout.ts +107 -9
- package/agent/apps/desktop/src/store/model-presets.test.ts +51 -0
- package/agent/apps/desktop/src/store/model-presets.ts +86 -0
- package/agent/apps/desktop/src/store/model-visibility.test.ts +99 -0
- package/agent/apps/desktop/src/store/model-visibility.ts +161 -0
- package/agent/apps/desktop/src/store/native-notifications.test.ts +192 -0
- package/agent/apps/desktop/src/store/native-notifications.ts +203 -0
- package/agent/apps/desktop/src/store/notifications.ts +10 -7
- package/agent/apps/desktop/src/store/onboarding.test.ts +271 -1
- package/agent/apps/desktop/src/store/onboarding.ts +268 -38
- package/agent/apps/desktop/src/store/preview.ts +10 -1
- package/agent/apps/desktop/src/store/profile.test.ts +89 -0
- package/agent/apps/desktop/src/store/profile.ts +395 -0
- package/agent/apps/desktop/src/store/prompts.test.ts +127 -0
- package/agent/apps/desktop/src/store/prompts.ts +117 -0
- package/agent/apps/desktop/src/store/session-switcher.test.ts +115 -0
- package/agent/apps/desktop/src/store/session-switcher.ts +128 -0
- package/agent/apps/desktop/src/store/session-sync.ts +25 -0
- package/agent/apps/desktop/src/store/session.test.ts +268 -2
- package/agent/apps/desktop/src/store/session.ts +392 -18
- package/agent/apps/desktop/src/store/subagents.ts +3 -0
- package/agent/apps/desktop/src/store/system-actions.ts +48 -0
- package/agent/apps/desktop/src/store/thread-scroll.ts +58 -5
- package/agent/apps/desktop/src/store/todos.test.ts +47 -0
- package/agent/apps/desktop/src/store/todos.ts +64 -0
- package/agent/apps/desktop/src/store/tool-dismiss.ts +45 -0
- package/agent/apps/desktop/src/store/translucency.ts +38 -0
- package/agent/apps/desktop/src/store/updates.test.ts +187 -2
- package/agent/apps/desktop/src/store/updates.ts +268 -18
- package/agent/apps/desktop/src/store/windows.test.ts +143 -0
- package/agent/apps/desktop/src/store/windows.ts +115 -0
- package/agent/apps/desktop/src/styles.css +510 -119
- package/agent/apps/desktop/src/themes/color.ts +142 -0
- package/agent/apps/desktop/src/themes/context.tsx +128 -75
- package/agent/apps/desktop/src/themes/install.test.ts +119 -0
- package/agent/apps/desktop/src/themes/install.ts +95 -0
- package/agent/apps/desktop/src/themes/presets.test.ts +33 -0
- package/agent/apps/desktop/src/themes/presets.ts +13 -4
- package/agent/apps/desktop/src/themes/profile-theme.test.ts +41 -0
- package/agent/apps/desktop/src/themes/types.ts +35 -0
- package/agent/apps/desktop/src/themes/user-themes.test.ts +63 -0
- package/agent/apps/desktop/src/themes/user-themes.ts +122 -0
- package/agent/apps/desktop/src/themes/vscode.test.ts +171 -0
- package/agent/apps/desktop/src/themes/vscode.ts +343 -0
- package/agent/apps/desktop/src/types/hermes.ts +138 -1
- package/agent/apps/desktop/tsconfig.json +2 -2
- package/agent/apps/desktop/vite.config.ts +18 -0
- package/agent/apps/shared/package.json +1 -1
- package/agent/apps/shared/src/json-rpc-gateway.ts +63 -2
- package/agent/apps/shared/tsconfig.json +2 -2
- package/agent/cli-config.yaml.example +78 -1
- package/agent/cli.py +2294 -3146
- package/agent/cron/blueprint_catalog.py +713 -0
- package/agent/cron/jobs.py +226 -110
- package/agent/cron/scheduler.py +468 -193
- package/agent/cron/scheduler_provider.py +177 -0
- package/agent/cron/scripts/__init__.py +1 -0
- package/agent/cron/scripts/classify_items.py +226 -0
- package/agent/cron/suggestion_catalog.py +154 -0
- package/agent/cron/suggestions.py +257 -0
- package/agent/docs/chronos-managed-cron-contract.md +196 -0
- package/agent/docs/design/profile-builder.md +146 -0
- package/agent/docs/middleware/README.md +260 -0
- package/agent/docs/observability/README.md +316 -0
- package/agent/docs/plans/2026-06-09-003-fix-telegram-stream-overflow-continuations-plan.md +240 -0
- package/agent/docs/rca-ssl-cacert-post-git-pull.md +54 -0
- package/agent/docs/relay-connector-contract.md +285 -0
- package/agent/gateway/authz_mixin.py +536 -0
- package/agent/gateway/channel_directory.py +65 -3
- package/agent/gateway/config.py +222 -12
- package/agent/gateway/display_config.py +10 -0
- package/agent/gateway/hooks.py +17 -0
- package/agent/gateway/kanban_watchers.py +1146 -0
- package/agent/gateway/message_timestamps.py +166 -0
- package/agent/gateway/platforms/ADDING_A_PLATFORM.md +29 -0
- package/agent/gateway/platforms/api_server.py +216 -38
- package/agent/gateway/platforms/base.py +210 -58
- package/agent/gateway/platforms/email.py +122 -12
- package/agent/gateway/platforms/feishu.py +80 -11
- package/agent/gateway/platforms/feishu_meeting_invite.py +212 -0
- package/agent/gateway/platforms/matrix.py +1498 -297
- package/agent/gateway/platforms/qqbot/adapter.py +6 -0
- package/agent/gateway/platforms/signal.py +8 -0
- package/agent/gateway/platforms/slack.py +308 -12
- package/agent/gateway/platforms/telegram.py +831 -24
- package/agent/gateway/platforms/webhook.py +109 -21
- package/agent/gateway/platforms/weixin.py +113 -2
- package/agent/gateway/platforms/whatsapp.py +94 -288
- package/agent/gateway/platforms/whatsapp_cloud.py +1956 -0
- package/agent/gateway/platforms/whatsapp_common.py +367 -0
- package/agent/gateway/platforms/yuanbao.py +608 -191
- package/agent/gateway/platforms/yuanbao_proto.py +232 -23
- package/agent/gateway/relay/__init__.py +375 -0
- package/agent/gateway/relay/adapter.py +222 -0
- package/agent/gateway/relay/auth.py +168 -0
- package/agent/gateway/relay/descriptor.py +118 -0
- package/agent/gateway/relay/transport.py +101 -0
- package/agent/gateway/relay/ws_transport.py +327 -0
- package/agent/gateway/response_filters.py +53 -0
- package/agent/gateway/rich_sent_store.py +80 -0
- package/agent/gateway/run.py +2940 -5001
- package/agent/gateway/session.py +109 -8
- package/agent/gateway/session_context.py +22 -4
- package/agent/gateway/slash_commands.py +3854 -0
- package/agent/gateway/status.py +141 -21
- package/agent/gateway/stream_consumer.py +288 -31
- package/agent/hermes-already-has-routines.md +1 -1
- package/agent/hermes_cli/__init__.py +62 -17
- package/agent/hermes_cli/_parser.py +30 -0
- package/agent/hermes_cli/_subprocess_compat.py +61 -0
- package/agent/hermes_cli/active_sessions.py +320 -0
- package/agent/hermes_cli/auth.py +707 -59
- package/agent/hermes_cli/auth_commands.py +39 -22
- package/agent/hermes_cli/backup.py +109 -7
- package/agent/hermes_cli/banner.py +88 -0
- package/agent/hermes_cli/blueprint_cmd.py +318 -0
- package/agent/hermes_cli/clawpump_cli.py +3 -3
- package/agent/hermes_cli/cli_agent_setup_mixin.py +684 -0
- package/agent/hermes_cli/cli_commands_mixin.py +2293 -0
- package/agent/hermes_cli/commands.py +216 -91
- package/agent/hermes_cli/config.py +967 -130
- package/agent/hermes_cli/container_boot.py +76 -11
- package/agent/hermes_cli/cron.py +5 -11
- package/agent/hermes_cli/curator.py +21 -0
- package/agent/hermes_cli/dashboard_auth/__init__.py +2 -0
- package/agent/hermes_cli/dashboard_auth/base.py +62 -0
- package/agent/hermes_cli/dashboard_auth/cookies.py +32 -19
- package/agent/hermes_cli/dashboard_auth/login_page.py +156 -6
- package/agent/hermes_cli/dashboard_auth/middleware.py +28 -4
- package/agent/hermes_cli/dashboard_auth/prefix.py +46 -2
- package/agent/hermes_cli/dashboard_auth/public_paths.py +6 -0
- package/agent/hermes_cli/dashboard_auth/routes.py +158 -2
- package/agent/hermes_cli/dashboard_auth/ws_tickets.py +85 -11
- package/agent/hermes_cli/dashboard_register.py +427 -0
- package/agent/hermes_cli/debug.py +155 -50
- package/agent/hermes_cli/distribution.py +227 -0
- package/agent/hermes_cli/doctor.py +255 -14
- package/agent/hermes_cli/dump.py +60 -6
- package/agent/hermes_cli/env_loader.py +33 -0
- package/agent/hermes_cli/gateway.py +755 -103
- package/agent/hermes_cli/gateway_enroll.py +250 -0
- package/agent/hermes_cli/gateway_windows.py +254 -11
- package/agent/hermes_cli/gui_uninstall.py +285 -0
- package/agent/hermes_cli/inventory.py +105 -4
- package/agent/hermes_cli/kanban.py +58 -71
- package/agent/hermes_cli/kanban_db.py +391 -14
- package/agent/hermes_cli/kanban_decompose.py +2 -2
- package/agent/hermes_cli/kanban_specify.py +3 -1
- package/agent/hermes_cli/logs.py +2 -0
- package/agent/hermes_cli/main.py +2889 -5287
- package/agent/hermes_cli/managed_scope.py +214 -0
- package/agent/hermes_cli/managed_uv.py +254 -0
- package/agent/hermes_cli/mcp_catalog.py +6 -3
- package/agent/hermes_cli/mcp_config.py +145 -21
- package/agent/hermes_cli/mcp_security.py +96 -0
- package/agent/hermes_cli/mcp_startup.py +32 -3
- package/agent/hermes_cli/memory_providers.py +149 -0
- package/agent/hermes_cli/memory_setup.py +97 -42
- package/agent/hermes_cli/middleware.py +313 -0
- package/agent/hermes_cli/model_catalog.py +31 -0
- package/agent/hermes_cli/model_cost_guard.py +134 -0
- package/agent/hermes_cli/model_normalize.py +2 -1
- package/agent/hermes_cli/model_setup_flows.py +2759 -0
- package/agent/hermes_cli/model_switch.py +242 -27
- package/agent/hermes_cli/models.py +284 -44
- package/agent/hermes_cli/nous_account.py +33 -6
- package/agent/hermes_cli/nous_billing.py +406 -0
- package/agent/hermes_cli/nous_subscription.py +202 -5
- package/agent/hermes_cli/platforms.py +1 -0
- package/agent/hermes_cli/plugins.py +218 -18
- package/agent/hermes_cli/plugins_cmd.py +249 -105
- package/agent/hermes_cli/portal_cli.py +56 -16
- package/agent/hermes_cli/profile_distribution.py +6 -1
- package/agent/hermes_cli/profiles.py +283 -32
- package/agent/hermes_cli/provider_catalog.py +170 -0
- package/agent/hermes_cli/providers.py +4 -1
- package/agent/hermes_cli/pty_bridge.py +53 -4
- package/agent/hermes_cli/runtime_provider.py +216 -34
- package/agent/hermes_cli/secret_prompt.py +4 -4
- package/agent/hermes_cli/secrets_cli.py +24 -0
- package/agent/hermes_cli/send_cmd.py +28 -2
- package/agent/hermes_cli/service_manager.py +166 -19
- package/agent/hermes_cli/session_listing.py +97 -0
- package/agent/hermes_cli/setup.py +158 -94
- package/agent/hermes_cli/setup_whatsapp_cloud.py +541 -0
- package/agent/hermes_cli/skills_config.py +8 -2
- package/agent/hermes_cli/skills_hub.py +149 -7
- package/agent/hermes_cli/status.py +2 -2
- package/agent/hermes_cli/subcommands/__init__.py +18 -0
- package/agent/hermes_cli/subcommands/_shared.py +29 -0
- package/agent/hermes_cli/subcommands/acp.py +52 -0
- package/agent/hermes_cli/subcommands/auth.py +109 -0
- package/agent/hermes_cli/subcommands/backup.py +38 -0
- package/agent/hermes_cli/subcommands/claw.py +92 -0
- package/agent/hermes_cli/subcommands/config.py +49 -0
- package/agent/hermes_cli/subcommands/cron.py +163 -0
- package/agent/hermes_cli/subcommands/dashboard.py +143 -0
- package/agent/hermes_cli/subcommands/debug.py +77 -0
- package/agent/hermes_cli/subcommands/doctor.py +35 -0
- package/agent/hermes_cli/subcommands/dump.py +28 -0
- package/agent/hermes_cli/subcommands/gateway.py +332 -0
- package/agent/hermes_cli/subcommands/gui.py +63 -0
- package/agent/hermes_cli/subcommands/hooks.py +77 -0
- package/agent/hermes_cli/subcommands/import_cmd.py +31 -0
- package/agent/hermes_cli/subcommands/insights.py +25 -0
- package/agent/hermes_cli/subcommands/login.py +78 -0
- package/agent/hermes_cli/subcommands/logout.py +28 -0
- package/agent/hermes_cli/subcommands/logs.py +78 -0
- package/agent/hermes_cli/subcommands/mcp.py +108 -0
- package/agent/hermes_cli/subcommands/memory.py +53 -0
- package/agent/hermes_cli/subcommands/model.py +72 -0
- package/agent/hermes_cli/subcommands/pairing.py +36 -0
- package/agent/hermes_cli/subcommands/plugins.py +94 -0
- package/agent/hermes_cli/subcommands/postinstall.py +23 -0
- package/agent/hermes_cli/subcommands/profile.py +203 -0
- package/agent/hermes_cli/subcommands/prompt_size.py +36 -0
- package/agent/hermes_cli/subcommands/security.py +62 -0
- package/agent/hermes_cli/subcommands/setup.py +58 -0
- package/agent/hermes_cli/subcommands/skills.py +298 -0
- package/agent/hermes_cli/subcommands/slack.py +60 -0
- package/agent/hermes_cli/subcommands/status.py +28 -0
- package/agent/hermes_cli/subcommands/tools.py +95 -0
- package/agent/hermes_cli/subcommands/uninstall.py +41 -0
- package/agent/hermes_cli/subcommands/update.py +70 -0
- package/agent/hermes_cli/subcommands/version.py +18 -0
- package/agent/hermes_cli/subcommands/webhook.py +76 -0
- package/agent/hermes_cli/subcommands/whatsapp.py +22 -0
- package/agent/hermes_cli/suggestions_cmd.py +153 -0
- package/agent/hermes_cli/telegram_managed_bot.py +358 -0
- package/agent/hermes_cli/tips.py +3 -4
- package/agent/hermes_cli/tools_config.py +155 -28
- package/agent/hermes_cli/uninstall.py +231 -35
- package/agent/hermes_cli/web_server.py +6188 -975
- package/agent/hermes_cli/win_pty_bridge.py +179 -0
- package/agent/hermes_cli/write_approval_commands.py +209 -0
- package/agent/hermes_constants.py +164 -33
- package/agent/hermes_logging.py +74 -2
- package/agent/hermes_state.py +919 -106
- package/agent/hermes_time.py +20 -0
- package/agent/locales/af.yaml +23 -0
- package/agent/locales/de.yaml +23 -0
- package/agent/locales/en.yaml +20 -0
- package/agent/locales/es.yaml +23 -0
- package/agent/locales/fr.yaml +23 -0
- package/agent/locales/ga.yaml +23 -0
- package/agent/locales/hu.yaml +23 -0
- package/agent/locales/it.yaml +23 -0
- package/agent/locales/ja.yaml +23 -0
- package/agent/locales/ko.yaml +23 -0
- package/agent/locales/pt.yaml +23 -0
- package/agent/locales/ru.yaml +23 -0
- package/agent/locales/tr.yaml +23 -0
- package/agent/locales/uk.yaml +23 -0
- package/agent/locales/zh-hant.yaml +23 -0
- package/agent/locales/zh.yaml +23 -0
- package/agent/model_tools.py +204 -40
- package/agent/optional-mcps/clawpump/manifest.yaml +15 -5
- package/agent/optional-mcps/clawpump-stdio/manifest.yaml +14 -4
- package/agent/optional-mcps/unreal-engine/manifest.yaml +54 -0
- package/agent/optional-skills/blockchain/hyperliquid/SKILL.md +2 -2
- package/agent/optional-skills/blockchain/hyperliquid/scripts/hyperliquid_client.py +1 -1
- package/agent/optional-skills/creative/kanban-video-orchestrator/SKILL.md +1 -1
- package/agent/optional-skills/creative/kanban-video-orchestrator/assets/setup.sh.tmpl +4 -3
- package/agent/optional-skills/creative/kanban-video-orchestrator/references/kanban-setup.md +6 -4
- package/agent/optional-skills/creative/kanban-video-orchestrator/references/tool-matrix.md +2 -2
- package/agent/{skills/software-development → optional-skills/devops}/hermes-s6-container-supervision/SKILL.md +2 -0
- package/agent/optional-skills/devops/watchers/SKILL.md +1 -1
- package/agent/optional-skills/devops/watchers/scripts/watch_github.py +2 -1
- package/agent/optional-skills/payments/mpp-agent/SKILL.md +124 -0
- package/agent/optional-skills/payments/stripe-link-cli/SKILL.md +184 -0
- package/agent/optional-skills/payments/stripe-projects/SKILL.md +120 -0
- package/agent/optional-skills/productivity/canvas/SKILL.md +1 -1
- package/agent/optional-skills/productivity/canvas/scripts/canvas_api.py +4 -1
- package/agent/optional-skills/productivity/shop/SKILL.md +224 -0
- package/agent/optional-skills/productivity/shop/references/catalog-mcp.md +236 -0
- package/agent/optional-skills/productivity/shop/references/direct-api.md +278 -0
- package/agent/optional-skills/productivity/shop/references/legal.md +3 -0
- package/agent/optional-skills/productivity/shop/references/safety.md +36 -0
- package/agent/optional-skills/productivity/shopify/SKILL.md +1 -1
- package/agent/optional-skills/productivity/siyuan/SKILL.md +1 -1
- package/agent/optional-skills/productivity/telephony/SKILL.md +4 -4
- package/agent/optional-skills/productivity/telephony/scripts/telephony.py +15 -15
- package/agent/optional-skills/security/1password/SKILL.md +1 -1
- package/agent/{skills/red-teaming → optional-skills/security}/godmode/SKILL.md +3 -4
- package/agent/{skills/red-teaming → optional-skills/security}/godmode/scripts/auto_jailbreak.py +3 -1
- package/agent/optional-skills/software-development/rest-graphql-debug/SKILL.md +1 -1
- package/agent/{skills → optional-skills}/software-development/subagent-driven-development/SKILL.md +5 -5
- package/agent/package-lock.json +4082 -7907
- package/agent/package.json +18 -3
- package/agent/plugins/browser/firecrawl/provider.py +4 -1
- package/agent/plugins/cron/__init__.py +344 -0
- package/agent/plugins/cron/chronos/__init__.py +241 -0
- package/agent/plugins/cron/chronos/_nas_client.py +123 -0
- package/agent/plugins/cron/chronos/plugin.yaml +9 -0
- package/agent/plugins/cron/chronos/verify.py +103 -0
- package/agent/plugins/dashboard_auth/basic/__init__.py +491 -0
- package/agent/plugins/dashboard_auth/basic/plugin.yaml +7 -0
- package/agent/plugins/dashboard_auth/nous/__init__.py +12 -14
- package/agent/plugins/dashboard_auth/self_hosted/__init__.py +736 -0
- package/agent/plugins/dashboard_auth/self_hosted/plugin.yaml +8 -0
- package/agent/plugins/disk-cleanup/disk_cleanup.py +100 -20
- package/agent/plugins/google_meet/audio_bridge.py +4 -0
- package/agent/plugins/google_meet/meet_bot.py +7 -1
- package/agent/plugins/hermes-achievements/dashboard/dist/index.js +9 -15
- package/agent/plugins/image_gen/fal/__init__.py +35 -6
- package/agent/plugins/image_gen/krea/__init__.py +56 -13
- package/agent/plugins/image_gen/openai/__init__.py +122 -24
- package/agent/plugins/image_gen/openai-codex/__init__.py +28 -2
- package/agent/plugins/image_gen/xai/__init__.py +92 -12
- package/agent/plugins/kanban/dashboard/dist/index.js +63 -48
- package/agent/plugins/kanban/dashboard/plugin_api.py +39 -35
- package/agent/plugins/memory/__init__.py +48 -5
- package/agent/plugins/memory/byterover/__init__.py +1 -0
- package/agent/plugins/memory/hindsight/README.md +1 -1
- package/agent/plugins/memory/hindsight/__init__.py +138 -24
- package/agent/plugins/memory/hindsight/plugin.yaml +1 -1
- package/agent/plugins/memory/honcho/README.md +13 -10
- package/agent/plugins/memory/honcho/cli.py +247 -122
- package/agent/plugins/memory/honcho/client.py +112 -102
- package/agent/plugins/memory/openviking/README.md +12 -1
- package/agent/plugins/memory/openviking/__init__.py +2281 -107
- package/agent/plugins/memory/openviking/plugin.yaml +1 -2
- package/agent/plugins/memory/supermemory/README.md +22 -10
- package/agent/plugins/memory/supermemory/__init__.py +142 -37
- package/agent/plugins/memory/supermemory/plugin.yaml +1 -1
- package/agent/plugins/model-providers/anthropic/__init__.py +1 -0
- package/agent/plugins/model-providers/bedrock/__init__.py +1 -0
- package/agent/plugins/model-providers/copilot-acp/__init__.py +1 -0
- package/agent/plugins/model-providers/custom/__init__.py +8 -2
- package/agent/plugins/model-providers/kimi-coding/__init__.py +16 -7
- package/agent/plugins/model-providers/minimax/__init__.py +60 -8
- package/agent/plugins/model-providers/opencode-zen/__init__.py +12 -3
- package/agent/plugins/model-providers/openrouter/__init__.py +75 -4
- package/agent/plugins/model-providers/xiaomi/__init__.py +2 -0
- package/agent/plugins/model-providers/zai/__init__.py +1 -0
- package/agent/plugins/observability/langfuse/__init__.py +147 -14
- package/agent/plugins/observability/nemo_relay/README.md +559 -0
- package/agent/plugins/observability/nemo_relay/__init__.py +962 -0
- package/agent/plugins/observability/nemo_relay/plugin.yaml +20 -0
- package/agent/plugins/platforms/discord/adapter.py +932 -61
- package/agent/plugins/platforms/discord/voice_mixer.py +379 -0
- package/agent/plugins/platforms/google_chat/adapter.py +9 -3
- package/agent/plugins/platforms/google_chat/oauth.py +1 -1
- package/agent/plugins/platforms/homeassistant/__init__.py +3 -0
- package/agent/{gateway/platforms/homeassistant.py → plugins/platforms/homeassistant/adapter.py} +128 -0
- package/agent/plugins/platforms/homeassistant/plugin.yaml +22 -0
- package/agent/plugins/platforms/irc/adapter.py +4 -1
- package/agent/plugins/platforms/line/adapter.py +16 -1
- package/agent/plugins/platforms/mattermost/adapter.py +100 -24
- package/agent/plugins/platforms/photon/README.md +179 -0
- package/agent/plugins/platforms/photon/__init__.py +4 -0
- package/agent/plugins/platforms/photon/adapter.py +1586 -0
- package/agent/plugins/platforms/photon/auth.py +1046 -0
- package/agent/plugins/platforms/photon/cli.py +439 -0
- package/agent/plugins/platforms/photon/plugin.yaml +88 -0
- package/agent/plugins/platforms/photon/sidecar/README.md +52 -0
- package/agent/plugins/platforms/photon/sidecar/index.mjs +720 -0
- package/agent/plugins/platforms/photon/sidecar/package-lock.json +1730 -0
- package/agent/plugins/platforms/photon/sidecar/package.json +25 -0
- package/agent/plugins/platforms/photon/sidecar/patch-spectrum-mixed-attachments.mjs +155 -0
- package/agent/plugins/platforms/raft/__init__.py +3 -0
- package/agent/plugins/platforms/raft/adapter.py +774 -0
- package/agent/plugins/platforms/raft/plugin.yaml +19 -0
- package/agent/plugins/platforms/simplex/adapter.py +777 -220
- package/agent/plugins/platforms/simplex/plugin.yaml +21 -2
- package/agent/plugins/platforms/teams/adapter.py +175 -5
- package/agent/plugins/plugin_utils.py +135 -0
- package/agent/plugins/video_gen/fal/__init__.py +10 -3
- package/agent/plugins/web/searxng/provider.py +15 -2
- package/agent/plugins/web/xai/provider.py +2 -2
- package/agent/providers/base.py +22 -3
- package/agent/pyproject.toml +115 -21
- package/agent/run_agent.py +733 -39
- package/agent/scripts/build_skills_index.py +51 -19
- package/agent/scripts/check_subprocess_stdin.py +177 -0
- package/agent/scripts/contributor_audit.py +2 -0
- package/agent/scripts/docker_config_migrate.py +67 -0
- package/agent/scripts/install.cmd +3 -3
- package/agent/scripts/install.ps1 +580 -154
- package/agent/scripts/install.sh +402 -185
- package/agent/scripts/lib/node-bootstrap.sh +39 -4
- package/agent/scripts/release.py +183 -0
- package/agent/scripts/run_tests.sh +1 -0
- package/agent/scripts/run_tests_parallel.py +18 -23
- package/agent/scripts/whatsapp-bridge/bridge.js +25 -4
- package/agent/setup.py +59 -0
- package/agent/skills/autonomous-ai-agents/codex/SKILL.md +19 -0
- package/agent/skills/autonomous-ai-agents/hermes-agent/SKILL.md +10 -3
- package/agent/skills/{mcp/native-mcp/SKILL.md → autonomous-ai-agents/hermes-agent/references/native-mcp.md} +0 -13
- package/agent/skills/{devops/webhook-subscriptions/SKILL.md → autonomous-ai-agents/hermes-agent/references/webhooks.md} +1 -11
- package/agent/skills/clawpump/SKILL.md +53 -5
- package/agent/skills/devops/kanban-orchestrator/SKILL.md +1 -0
- package/agent/skills/devops/kanban-worker/SKILL.md +1 -0
- package/agent/skills/github/github-auth/SKILL.md +2 -2
- package/agent/skills/github/github-auth/scripts/gh-env.sh +2 -2
- package/agent/skills/github/github-code-review/SKILL.md +2 -2
- package/agent/skills/github/github-issues/SKILL.md +2 -2
- package/agent/skills/github/github-pr-workflow/SKILL.md +2 -2
- package/agent/skills/github/github-repo-management/SKILL.md +2 -2
- package/agent/skills/media/gif-search/SKILL.md +1 -1
- package/agent/skills/media/youtube-content/SKILL.md +10 -7
- package/agent/skills/media/youtube-content/scripts/fetch_transcript.py +3 -3
- package/agent/skills/note-taking/obsidian/SKILL.md +1 -1
- package/agent/skills/productivity/airtable/SKILL.md +2 -2
- package/agent/skills/productivity/google-workspace/scripts/setup.py +33 -7
- package/agent/skills/productivity/notion/SKILL.md +2 -2
- package/agent/skills/productivity/teams-meeting-pipeline/SKILL.md +1 -1
- package/agent/skills/research/llm-wiki/SKILL.md +1 -1
- package/agent/skills/social-media/xurl/SKILL.md +9 -0
- package/agent/skills/software-development/hermes-agent-skill-authoring/SKILL.md +1 -1
- package/agent/skills/software-development/plan/SKILL.md +285 -5
- package/agent/skills/software-development/requesting-code-review/SKILL.md +2 -2
- package/agent/skills/software-development/simplify-code/SKILL.md +212 -0
- package/agent/skills/software-development/spike/SKILL.md +2 -2
- package/agent/skills/software-development/systematic-debugging/SKILL.md +1 -1
- package/agent/skills/software-development/test-driven-development/SKILL.md +1 -1
- package/agent/tools/approval.py +302 -4
- package/agent/tools/async_delegation.py +386 -0
- package/agent/tools/blueprints.py +325 -0
- package/agent/tools/browser_cdp_tool.py +3 -3
- package/agent/tools/browser_tool.py +34 -6
- package/agent/tools/checkpoint_manager.py +31 -1
- package/agent/tools/clarify_tool.py +55 -5
- package/agent/tools/code_execution_tool.py +31 -14
- package/agent/tools/computer_use/cua_backend.py +81 -3
- package/agent/tools/computer_use/tool.py +79 -5
- package/agent/tools/computer_use/vision_routing.py +55 -3
- package/agent/tools/credential_files.py +31 -12
- package/agent/tools/cronjob_tools.py +30 -20
- package/agent/tools/delegate_tool.py +356 -31
- package/agent/tools/env_probe.py +1 -0
- package/agent/tools/environments/docker.py +163 -8
- package/agent/tools/environments/file_sync.py +2 -1
- package/agent/tools/environments/local.py +74 -23
- package/agent/tools/environments/singularity.py +4 -1
- package/agent/tools/environments/ssh.py +78 -11
- package/agent/tools/file_operations.py +277 -41
- package/agent/tools/file_tools.py +166 -28
- package/agent/tools/image_generation_tool.py +515 -29
- package/agent/tools/kanban_tools.py +99 -0
- package/agent/tools/lazy_deps.py +33 -2
- package/agent/tools/mcp_oauth.py +5 -5
- package/agent/tools/mcp_oauth_manager.py +7 -5
- package/agent/tools/mcp_tool.py +840 -33
- package/agent/tools/memory_tool.py +335 -38
- package/agent/tools/osv_check.py +15 -1
- package/agent/tools/process_registry.py +155 -11
- package/agent/tools/read_extract.py +248 -0
- package/agent/tools/read_terminal_tool.py +93 -0
- package/agent/tools/schema_sanitizer.py +38 -0
- package/agent/tools/send_message_tool.py +163 -49
- package/agent/tools/session_search_tool.py +189 -7
- package/agent/tools/skill_manager_tool.py +202 -3
- package/agent/tools/skill_usage.py +52 -4
- package/agent/tools/skills_hub.py +184 -44
- package/agent/tools/skills_sync.py +232 -5
- package/agent/tools/skills_tool.py +125 -11
- package/agent/tools/terminal_tool.py +148 -26
- package/agent/tools/tirith_security.py +2 -0
- package/agent/tools/todo_tool.py +32 -1
- package/agent/tools/transcription_tools.py +13 -5
- package/agent/tools/tts_tool.py +332 -38
- package/agent/tools/url_safety.py +52 -1
- package/agent/tools/vision_tools.py +124 -39
- package/agent/tools/voice_mode.py +4 -3
- package/agent/tools/web_tools.py +45 -15
- package/agent/tools/write_approval.py +493 -0
- package/agent/toolsets.py +34 -10
- package/agent/trajectory_compressor.py +81 -10
- package/agent/tui_gateway/entry.py +43 -6
- package/agent/tui_gateway/server.py +3335 -330
- package/agent/tui_gateway/slash_worker.py +61 -0
- package/agent/tui_gateway/ws.py +67 -9
- package/agent/ui-tui/eslint.config.mjs +0 -4
- package/agent/ui-tui/package.json +6 -6
- package/agent/ui-tui/packages/hermes-ink/package.json +1 -1
- package/agent/ui-tui/packages/hermes-ink/src/ink/app-mouse.test.ts +34 -1
- package/agent/ui-tui/packages/hermes-ink/src/ink/app-rawmode-mouse.test.ts +91 -0
- package/agent/ui-tui/packages/hermes-ink/src/ink/components/App.tsx +35 -2
- package/agent/ui-tui/packages/hermes-ink/src/ink/events/input-event.ts +4 -11
- package/agent/ui-tui/packages/hermes-ink/src/ink/parse-keypress.test.ts +23 -57
- package/agent/ui-tui/packages/hermes-ink/src/ink/parse-keypress.ts +11 -135
- package/agent/ui-tui/packages/hermes-ink/src/ink/termio/tokenize.test.ts +185 -0
- package/agent/ui-tui/packages/hermes-ink/src/ink/termio/tokenize.ts +37 -3
- package/agent/ui-tui/packages/hermes-ink/src/utils/execFileNoThrow.ts +5 -5
- package/agent/ui-tui/src/__tests__/appChromeStatusRule.test.tsx +217 -0
- package/agent/ui-tui/src/__tests__/appChromeStatusRuleDevCredits.test.tsx +73 -0
- package/agent/ui-tui/src/__tests__/approvalAction.test.ts +11 -0
- package/agent/ui-tui/src/__tests__/billingCommand.test.ts +301 -0
- package/agent/ui-tui/src/__tests__/blockLayout.test.ts +122 -0
- package/agent/ui-tui/src/__tests__/brandingMcpCount.test.ts +111 -0
- package/agent/ui-tui/src/__tests__/completionApply.test.ts +51 -0
- package/agent/ui-tui/src/__tests__/createGatewayEventHandler.test.ts +487 -2
- package/agent/ui-tui/src/__tests__/createSlashHandler.test.ts +54 -0
- package/agent/ui-tui/src/__tests__/creditsCommand.test.ts +144 -0
- package/agent/ui-tui/src/__tests__/gatewayClient.test.ts +120 -99
- package/agent/ui-tui/src/__tests__/gracefulExit.test.ts +11 -0
- package/agent/ui-tui/src/__tests__/memoryMonitor.test.ts +102 -0
- package/agent/ui-tui/src/__tests__/paths.test.ts +41 -1
- package/agent/ui-tui/src/__tests__/terminalModes.test.ts +22 -0
- package/agent/ui-tui/src/__tests__/text.test.ts +23 -0
- package/agent/ui-tui/src/__tests__/textInputFastEcho.test.ts +37 -0
- package/agent/ui-tui/src/__tests__/turnControllerNotice.test.ts +43 -0
- package/agent/ui-tui/src/__tests__/useInputHandlers.test.ts +38 -1
- package/agent/ui-tui/src/__tests__/virtualHeights.test.ts +8 -0
- package/agent/ui-tui/src/app/createGatewayEventHandler.ts +102 -7
- package/agent/ui-tui/src/app/interfaces.ts +64 -1
- package/agent/ui-tui/src/app/overlayStore.ts +18 -2
- package/agent/ui-tui/src/app/slash/commands/billing.ts +332 -0
- package/agent/ui-tui/src/app/slash/commands/core.ts +31 -2
- package/agent/ui-tui/src/app/slash/commands/credits.ts +57 -0
- package/agent/ui-tui/src/app/slash/commands/ops.ts +28 -0
- package/agent/ui-tui/src/app/slash/commands/session.ts +32 -4
- package/agent/ui-tui/src/app/slash/registry.ts +4 -0
- package/agent/ui-tui/src/app/turnController.ts +145 -2
- package/agent/ui-tui/src/app/uiStore.ts +2 -0
- package/agent/ui-tui/src/app/useInputHandlers.ts +42 -4
- package/agent/ui-tui/src/app/useMainApp.ts +54 -8
- package/agent/ui-tui/src/app/useSessionLifecycle.ts +40 -31
- package/agent/ui-tui/src/app/useSubmission.ts +23 -31
- package/agent/ui-tui/src/components/appChrome.tsx +112 -5
- package/agent/ui-tui/src/components/appLayout.tsx +9 -0
- package/agent/ui-tui/src/components/appOverlays.tsx +25 -1
- package/agent/ui-tui/src/components/billingOverlay.tsx +684 -0
- package/agent/ui-tui/src/components/branding.tsx +15 -3
- package/agent/ui-tui/src/components/messageLine.tsx +25 -3
- package/agent/ui-tui/src/components/pluginsHub.tsx +238 -0
- package/agent/ui-tui/src/components/prompts.tsx +31 -17
- package/agent/ui-tui/src/components/streamingAssistant.tsx +63 -55
- package/agent/ui-tui/src/components/textInput.tsx +16 -0
- package/agent/ui-tui/src/config/env.ts +12 -0
- package/agent/ui-tui/src/config/limits.ts +13 -0
- package/agent/ui-tui/src/domain/blockLayout.ts +146 -0
- package/agent/ui-tui/src/domain/paths.ts +24 -0
- package/agent/ui-tui/src/domain/slash.ts +40 -0
- package/agent/ui-tui/src/entry.tsx +35 -4
- package/agent/ui-tui/src/gatewayClient.ts +22 -10
- package/agent/ui-tui/src/gatewayTypes.ts +130 -1
- package/agent/ui-tui/src/lib/gracefulExit.ts +24 -4
- package/agent/ui-tui/src/lib/memory.test.ts +162 -0
- package/agent/ui-tui/src/lib/memory.ts +60 -1
- package/agent/ui-tui/src/lib/memoryMonitor.ts +79 -4
- package/agent/ui-tui/src/lib/osc52.ts +1 -1
- package/agent/ui-tui/src/lib/text.test.ts +32 -1
- package/agent/ui-tui/src/lib/text.ts +29 -2
- package/agent/ui-tui/src/lib/virtualHeights.ts +13 -0
- package/agent/ui-tui/src/types.ts +5 -0
- package/agent/ui-tui/tsconfig.build.json +0 -1
- package/agent/ui-tui/tsconfig.json +2 -1
- package/agent/utils.py +66 -2
- package/agent/uv.lock +308 -696
- package/agent/web/index.html +2 -2
- package/agent/web/package.json +11 -6
- package/agent/web/public/claw-bg.webp +0 -0
- package/agent/web/public/claw-logo.webp +0 -0
- package/agent/web/src/App.tsx +138 -48
- package/agent/web/src/components/AutomationBlueprints.tsx +225 -0
- package/agent/web/src/components/Backdrop.tsx +15 -0
- package/agent/web/src/components/ChatSessionList.tsx +260 -0
- package/agent/web/src/components/ChatSidebar.tsx +262 -78
- package/agent/web/src/components/ConfirmDialog.tsx +122 -0
- package/agent/web/src/components/ModelPickerDialog.tsx +111 -16
- package/agent/web/src/components/ModelReloadConfirm.tsx +40 -0
- package/agent/web/src/components/ProfileScopeBanner.tsx +30 -0
- package/agent/web/src/components/ProfileSwitcher.tsx +67 -0
- package/agent/web/src/components/ReasoningPicker.tsx +167 -0
- package/agent/web/src/components/SkillEditorDialog.tsx +215 -0
- package/agent/web/src/components/ThemeSwitcher.tsx +119 -4
- package/agent/web/src/components/ToolsetConfigDrawer.tsx +457 -0
- package/agent/web/src/contexts/PageHeaderProvider.tsx +7 -4
- package/agent/web/src/contexts/ProfileProvider.tsx +137 -0
- package/agent/web/src/contexts/SystemActions.tsx +6 -8
- package/agent/web/src/contexts/profile-context.ts +19 -0
- package/agent/web/src/contexts/useProfileScope.ts +6 -0
- package/agent/web/src/i18n/af.ts +5 -4
- package/agent/web/src/i18n/de.ts +5 -4
- package/agent/web/src/i18n/en.ts +58 -4
- package/agent/web/src/i18n/es.ts +5 -3
- package/agent/web/src/i18n/fr.ts +5 -3
- package/agent/web/src/i18n/ga.ts +5 -4
- package/agent/web/src/i18n/hu.ts +5 -4
- package/agent/web/src/i18n/it.ts +5 -4
- package/agent/web/src/i18n/ja.ts +5 -4
- package/agent/web/src/i18n/ko.ts +5 -4
- package/agent/web/src/i18n/pt.ts +5 -3
- package/agent/web/src/i18n/ru.ts +5 -4
- package/agent/web/src/i18n/tr.ts +5 -4
- package/agent/web/src/i18n/types.ts +59 -1
- package/agent/web/src/i18n/uk.ts +5 -3
- package/agent/web/src/i18n/zh-hant.ts +5 -4
- package/agent/web/src/i18n/zh.ts +5 -4
- package/agent/web/src/index.css +2 -2
- package/agent/web/src/lib/api.ts +819 -52
- package/agent/web/src/lib/dashboard-flags.ts +16 -7
- package/agent/web/src/lib/reasoning-effort.test.ts +48 -0
- package/agent/web/src/lib/reasoning-effort.ts +36 -0
- package/agent/web/src/lib/session-refresh.test.ts +21 -0
- package/agent/web/src/lib/session-refresh.ts +26 -0
- package/agent/web/src/pages/ChannelsPage.tsx +529 -68
- package/agent/web/src/pages/ChatPage.tsx +249 -56
- package/agent/web/src/pages/ConfigPage.tsx +11 -1
- package/agent/web/src/pages/CronPage.tsx +219 -31
- package/agent/web/src/pages/EnvPage.tsx +25 -6
- package/agent/web/src/pages/FilesPage.tsx +525 -0
- package/agent/web/src/pages/McpPage.tsx +80 -3
- package/agent/web/src/pages/ModelsPage.tsx +97 -12
- package/agent/web/src/pages/PluginsPage.tsx +1 -1
- package/agent/web/src/pages/ProfileBuilderPage.tsx +611 -0
- package/agent/web/src/pages/ProfilesPage.tsx +1038 -172
- package/agent/web/src/pages/SessionsPage.tsx +144 -13
- package/agent/web/src/pages/SkillsPage.tsx +851 -70
- package/agent/web/src/pages/SystemPage.tsx +340 -4
- package/agent/web/src/pages/WalletPage.tsx +401 -0
- package/agent/web/src/pages/WebhooksPage.tsx +145 -15
- package/agent/web/src/pages/X402Page.tsx +207 -0
- package/agent/web/src/plugins/registry.ts +28 -11
- package/agent/web/src/plugins/sdk.d.ts +160 -0
- package/agent/web/src/themes/context.tsx +112 -5
- package/agent/web/src/themes/fonts.ts +167 -0
- package/agent/web/src/themes/index.ts +7 -0
- package/agent/web/tsconfig.app.json +0 -1
- package/agent/web/vite.config.ts +1 -8
- package/agent/web/vitest.config.ts +16 -0
- package/package.json +1 -1
- package/agent/apps/desktop/package-lock.json +0 -18363
- package/agent/apps/desktop/src/app/chat/composer/skin-slash-popover.tsx +0 -56
- package/agent/apps/desktop/src/components/assistant-ui/thread-virtualizer.tsx +0 -382
- package/agent/apps/desktop/src/components/assistant-ui/todo-tool.tsx +0 -109
- package/agent/apps/desktop/src/components/chat/generated-image-context.tsx +0 -19
- package/agent/optional-skills/productivity/shop-app/SKILL.md +0 -340
- package/agent/skills/autonomous-ai-agents/kanban-codex-lane/SKILL.md +0 -277
- package/agent/skills/autonomous-ai-agents/kanban-codex-lane/templates/pmb-codex-lane-prompt.md +0 -57
- package/agent/skills/diagramming/DESCRIPTION.md +0 -3
- package/agent/skills/domain/DESCRIPTION.md +0 -24
- package/agent/skills/gifs/DESCRIPTION.md +0 -3
- package/agent/skills/inference-sh/DESCRIPTION.md +0 -19
- package/agent/skills/mcp/DESCRIPTION.md +0 -3
- package/agent/skills/media/spotify/SKILL.md +0 -135
- package/agent/skills/mlops/training/DESCRIPTION.md +0 -3
- package/agent/skills/mlops/vector-databases/DESCRIPTION.md +0 -3
- package/agent/skills/productivity/linear/SKILL.md +0 -380
- package/agent/skills/productivity/linear/scripts/linear_api.py +0 -445
- package/agent/skills/software-development/debugging-hermes-tui-commands/SKILL.md +0 -152
- package/agent/skills/software-development/writing-plans/SKILL.md +0 -297
- package/agent/ui-tui/package-lock.json +0 -7449
- package/agent/ui-tui/packages/hermes-ink/package-lock.json +0 -1289
- package/agent/web/package-lock.json +0 -8887
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/PORT_NOTES.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/SKILL.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/prompts/system.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/palettes/macaron.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/palettes/mono-ink.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/palettes/neon.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/palettes/warm.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/prompt-construction.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/style-presets.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/blueprint.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/chalkboard.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/editorial.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/elegant.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/fantasy-animation.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/flat-doodle.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/flat.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/ink-notes.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/intuition-machine.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/minimal.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/nature.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/notion.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/pixel-art.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/playful.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/retro.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/scientific.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/screen-print.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/sketch-notes.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/sketch.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/vector-illustration.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/vintage.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/warm.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles/watercolor.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/styles.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/usage.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-article-illustrator/references/workflow.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/PORT_NOTES.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/SKILL.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/analysis-framework.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/art-styles/chalk.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/art-styles/ink-brush.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/art-styles/ligne-claire.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/art-styles/manga.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/art-styles/minimalist.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/art-styles/realistic.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/auto-selection.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/base-prompt.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/character-template.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/cinematic.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/dense.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/four-panel.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/mixed.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/splash.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/standard.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/layouts/webtoon.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/ohmsha-guide.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/partial-workflows.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/presets/concept-story.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/presets/four-panel.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/presets/ohmsha.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/presets/shoujo.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/presets/wuxia.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/storyboard-template.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/action.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/dramatic.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/energetic.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/neutral.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/romantic.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/vintage.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/tones/warm.md +0 -0
- /package/agent/{skills → optional-skills}/creative/baoyu-comic/references/workflow.md +0 -0
- /package/agent/{skills → optional-skills}/creative/creative-ideation/SKILL.md +0 -0
- /package/agent/{skills → optional-skills}/creative/creative-ideation/references/full-prompt-library.md +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/ATTRIBUTION.md +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/SKILL.md +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/references/palettes.md +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/scripts/__init__.py +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/scripts/palettes.py +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/scripts/pixel_art.py +0 -0
- /package/agent/{skills → optional-skills}/creative/pixel-art/scripts/pixel_art_video.py +0 -0
- /package/agent/{skills/mlops/inference → optional-skills/mlops}/obliteratus/SKILL.md +0 -0
- /package/agent/{skills/mlops/inference → optional-skills/mlops}/obliteratus/references/analysis-modules.md +0 -0
- /package/agent/{skills/mlops/inference → optional-skills/mlops}/obliteratus/references/methods-guide.md +0 -0
- /package/agent/{skills/mlops/inference → optional-skills/mlops}/obliteratus/templates/abliteration-config.yaml +0 -0
- /package/agent/{skills/mlops/inference → optional-skills/mlops}/obliteratus/templates/analysis-study.yaml +0 -0
- /package/agent/{skills/mlops/inference → optional-skills/mlops}/obliteratus/templates/batch-abliteration.yaml +0 -0
- /package/agent/{skills → optional-skills}/mlops/research/DESCRIPTION.md +0 -0
- /package/agent/{skills → optional-skills}/mlops/research/dspy/SKILL.md +0 -0
- /package/agent/{skills → optional-skills}/mlops/research/dspy/references/examples.md +0 -0
- /package/agent/{skills → optional-skills}/mlops/research/dspy/references/modules.md +0 -0
- /package/agent/{skills → optional-skills}/mlops/research/dspy/references/optimizers.md +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/references/jailbreak-templates.md +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/references/refusal-detection.md +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/scripts/godmode_race.py +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/scripts/load_godmode.py +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/scripts/parseltongue.py +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/templates/prefill-subtle.json +0 -0
- /package/agent/{skills/red-teaming → optional-skills/security}/godmode/templates/prefill.json +0 -0
- /package/agent/{skills → optional-skills}/software-development/subagent-driven-development/references/context-budget-discipline.md +0 -0
- /package/agent/{skills → optional-skills}/software-development/subagent-driven-development/references/gates-taxonomy.md +0 -0
|
@@ -0,0 +1,1559 @@
|
|
|
1
|
+
// Desktop i18n type contract.
|
|
2
|
+
//
|
|
3
|
+
// `Translations` is the single source of truth for every translatable string
|
|
4
|
+
// surface. Fully translated locale files may satisfy this interface directly;
|
|
5
|
+
// partial locales should use `defineLocale()` so missing desktop-only strings
|
|
6
|
+
// fall back to English while new keys remain type-checked.
|
|
7
|
+
|
|
8
|
+
export type Locale = 'en' | 'zh' | 'zh-hant' | 'ja'
|
|
9
|
+
|
|
10
|
+
interface ModeOptionCopy {
|
|
11
|
+
label: string
|
|
12
|
+
description: string
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
interface AuxTaskCopy {
|
|
16
|
+
label: string
|
|
17
|
+
hint: string
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
export interface Translations {
|
|
21
|
+
common: {
|
|
22
|
+
apply: string
|
|
23
|
+
back: string
|
|
24
|
+
save: string
|
|
25
|
+
saving: string
|
|
26
|
+
cancel: string
|
|
27
|
+
change: string
|
|
28
|
+
choose: string
|
|
29
|
+
clear: string
|
|
30
|
+
close: string
|
|
31
|
+
collapse: string
|
|
32
|
+
confirm: string
|
|
33
|
+
connect: string
|
|
34
|
+
connecting: string
|
|
35
|
+
continue: string
|
|
36
|
+
copied: string
|
|
37
|
+
copy: string
|
|
38
|
+
copyFailed: string
|
|
39
|
+
delete: string
|
|
40
|
+
docs: string
|
|
41
|
+
done: string
|
|
42
|
+
error: string
|
|
43
|
+
failed: string
|
|
44
|
+
free: string
|
|
45
|
+
loading: string
|
|
46
|
+
notSet: string
|
|
47
|
+
refresh: string
|
|
48
|
+
remove: string
|
|
49
|
+
replace: string
|
|
50
|
+
retry: string
|
|
51
|
+
run: string
|
|
52
|
+
send: string
|
|
53
|
+
set: string
|
|
54
|
+
skip: string
|
|
55
|
+
update: string
|
|
56
|
+
on: string
|
|
57
|
+
off: string
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
boot: {
|
|
61
|
+
ready: string
|
|
62
|
+
desktopBootFailedWithMessage: (message: string) => string
|
|
63
|
+
steps: {
|
|
64
|
+
connectingGateway: string
|
|
65
|
+
loadingSettings: string
|
|
66
|
+
loadingSessions: string
|
|
67
|
+
startingDesktopConnection: string
|
|
68
|
+
startingHermesDesktop: string
|
|
69
|
+
}
|
|
70
|
+
errors: {
|
|
71
|
+
backgroundExited: string
|
|
72
|
+
backgroundExitedDuringStartup: string
|
|
73
|
+
backendStopped: string
|
|
74
|
+
desktopBootFailed: string
|
|
75
|
+
gatewaySignInRequired: string
|
|
76
|
+
ipcBridgeUnavailable: string
|
|
77
|
+
}
|
|
78
|
+
failure: {
|
|
79
|
+
title: string
|
|
80
|
+
description: string
|
|
81
|
+
remoteTitle: string
|
|
82
|
+
remoteDescription: string
|
|
83
|
+
retry: string
|
|
84
|
+
repairInstall: string
|
|
85
|
+
useLocalGateway: string
|
|
86
|
+
openLogs: string
|
|
87
|
+
repairHint: string
|
|
88
|
+
remoteSignInHint: string
|
|
89
|
+
hideRecentLogs: string
|
|
90
|
+
showRecentLogs: string
|
|
91
|
+
signedInTitle: string
|
|
92
|
+
signedInMessage: string
|
|
93
|
+
signInIncompleteTitle: string
|
|
94
|
+
signInIncompleteMessage: string
|
|
95
|
+
signInFailed: string
|
|
96
|
+
signInToRemoteGateway: string
|
|
97
|
+
signInWithProvider: (provider: string) => string
|
|
98
|
+
identityProvider: string
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
notifications: {
|
|
103
|
+
region: string
|
|
104
|
+
hide: string
|
|
105
|
+
show: string
|
|
106
|
+
more: (count: number) => string
|
|
107
|
+
clearAll: string
|
|
108
|
+
dismiss: string
|
|
109
|
+
details: string
|
|
110
|
+
copyDetail: string
|
|
111
|
+
copyDetailFailed: string
|
|
112
|
+
backendOutOfDateTitle: string
|
|
113
|
+
backendOutOfDateMessage: string
|
|
114
|
+
updateHermes: string
|
|
115
|
+
updateReadyTitle: string
|
|
116
|
+
updateReadyMessage: (count: number) => string
|
|
117
|
+
seeWhatsNew: string
|
|
118
|
+
errors: {
|
|
119
|
+
elevenLabsNeedsKey: string
|
|
120
|
+
elevenLabsRejectedKey: string
|
|
121
|
+
methodNotAllowed: string
|
|
122
|
+
microphonePermission: string
|
|
123
|
+
openaiRejectedApiKey: string
|
|
124
|
+
openaiRejectedApiKeyWithStatus: (status: string) => string
|
|
125
|
+
openaiTtsNeedsKey: string
|
|
126
|
+
}
|
|
127
|
+
voice: {
|
|
128
|
+
configureSpeechToText: string
|
|
129
|
+
couldNotStartSession: string
|
|
130
|
+
microphoneAccessDenied: string
|
|
131
|
+
microphoneConstraintsUnsupported: string
|
|
132
|
+
microphoneFailed: string
|
|
133
|
+
microphoneInUse: string
|
|
134
|
+
microphonePermissionDenied: string
|
|
135
|
+
microphoneStartFailed: string
|
|
136
|
+
microphoneUnsupported: string
|
|
137
|
+
noMicrophone: string
|
|
138
|
+
noSpeechDetected: string
|
|
139
|
+
playbackFailed: string
|
|
140
|
+
recordingFailed: string
|
|
141
|
+
transcriptionFailed: string
|
|
142
|
+
transcriptionUnavailable: string
|
|
143
|
+
tryRecordingAgain: string
|
|
144
|
+
unavailable: string
|
|
145
|
+
}
|
|
146
|
+
// Native OS notification copy (titles + generic fallback bodies). Dynamic
|
|
147
|
+
// bodies (the agent's reply, a command, an error) are passed through raw.
|
|
148
|
+
native: {
|
|
149
|
+
approvalTitle: string
|
|
150
|
+
approveAction: string
|
|
151
|
+
rejectAction: string
|
|
152
|
+
inputTitle: string
|
|
153
|
+
inputBody: string
|
|
154
|
+
turnDoneTitle: string
|
|
155
|
+
turnDoneBody: string
|
|
156
|
+
turnErrorTitle: string
|
|
157
|
+
backgroundDoneTitle: string
|
|
158
|
+
backgroundFailedTitle: string
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
titlebar: {
|
|
163
|
+
hideSidebar: string
|
|
164
|
+
showSidebar: string
|
|
165
|
+
search: string
|
|
166
|
+
searchTitle: string
|
|
167
|
+
swapSidebarSides: string
|
|
168
|
+
swapSidebarSidesTitle: string
|
|
169
|
+
hideRightSidebar: string
|
|
170
|
+
showRightSidebar: string
|
|
171
|
+
muteHaptics: string
|
|
172
|
+
unmuteHaptics: string
|
|
173
|
+
openSettings: string
|
|
174
|
+
openKeybinds: string
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
keybinds: {
|
|
178
|
+
title: string
|
|
179
|
+
subtitle: (open: string) => string
|
|
180
|
+
rebind: string
|
|
181
|
+
reset: string
|
|
182
|
+
resetAll: string
|
|
183
|
+
pressKey: string
|
|
184
|
+
set: string
|
|
185
|
+
conflictWith: (label: string) => string
|
|
186
|
+
categories: Record<string, string>
|
|
187
|
+
actions: Record<string, string>
|
|
188
|
+
}
|
|
189
|
+
|
|
190
|
+
language: {
|
|
191
|
+
label: string
|
|
192
|
+
description: string
|
|
193
|
+
saving: string
|
|
194
|
+
saveError: string
|
|
195
|
+
switchTo: string
|
|
196
|
+
searchPlaceholder: string
|
|
197
|
+
noResults: string
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
settings: {
|
|
201
|
+
closeSettings: string
|
|
202
|
+
exportConfig: string
|
|
203
|
+
importConfig: string
|
|
204
|
+
resetToDefaults: string
|
|
205
|
+
resetConfirm: string
|
|
206
|
+
exportFailed: string
|
|
207
|
+
resetFailed: string
|
|
208
|
+
nav: {
|
|
209
|
+
providers: string
|
|
210
|
+
providerAccounts: string
|
|
211
|
+
providerApiKeys: string
|
|
212
|
+
gateway: string
|
|
213
|
+
apiKeys: string
|
|
214
|
+
keysTools: string
|
|
215
|
+
keysSettings: string
|
|
216
|
+
mcp: string
|
|
217
|
+
archivedChats: string
|
|
218
|
+
about: string
|
|
219
|
+
notifications: string
|
|
220
|
+
}
|
|
221
|
+
notifications: {
|
|
222
|
+
title: string
|
|
223
|
+
intro: string
|
|
224
|
+
enableAll: string
|
|
225
|
+
enableAllDesc: string
|
|
226
|
+
focusedHint: string
|
|
227
|
+
kinds: Record<
|
|
228
|
+
'approval' | 'backgroundDone' | 'input' | 'turnDone' | 'turnError',
|
|
229
|
+
{ label: string; description: string }
|
|
230
|
+
>
|
|
231
|
+
test: string
|
|
232
|
+
testTitle: string
|
|
233
|
+
testBody: string
|
|
234
|
+
testSent: string
|
|
235
|
+
testUnsupported: string
|
|
236
|
+
completionSoundTitle: string
|
|
237
|
+
completionSoundDesc: string
|
|
238
|
+
completionSoundPreview: string
|
|
239
|
+
}
|
|
240
|
+
sections: Record<string, string>
|
|
241
|
+
searchPlaceholder: Record<'about' | 'config' | 'gateway' | 'keys' | 'mcp' | 'sessions', string>
|
|
242
|
+
modeOptions: Record<'light' | 'dark' | 'system', ModeOptionCopy>
|
|
243
|
+
appearance: {
|
|
244
|
+
title: string
|
|
245
|
+
intro: string
|
|
246
|
+
colorMode: string
|
|
247
|
+
colorModeDesc: string
|
|
248
|
+
toolViewTitle: string
|
|
249
|
+
toolViewDesc: string
|
|
250
|
+
translucencyTitle: string
|
|
251
|
+
translucencyDesc: string
|
|
252
|
+
product: string
|
|
253
|
+
productDesc: string
|
|
254
|
+
technical: string
|
|
255
|
+
technicalDesc: string
|
|
256
|
+
themeTitle: string
|
|
257
|
+
themeDesc: string
|
|
258
|
+
themeProfileNote: (profile: string) => string
|
|
259
|
+
installTitle: string
|
|
260
|
+
installDesc: string
|
|
261
|
+
installPlaceholder: string
|
|
262
|
+
installButton: string
|
|
263
|
+
installing: string
|
|
264
|
+
installError: string
|
|
265
|
+
installed: (name: string) => string
|
|
266
|
+
removeTheme: string
|
|
267
|
+
importedBadge: string
|
|
268
|
+
}
|
|
269
|
+
fieldLabels: Record<string, string>
|
|
270
|
+
fieldDescriptions: Record<string, string>
|
|
271
|
+
about: {
|
|
272
|
+
heading: string
|
|
273
|
+
version: (value: string) => string
|
|
274
|
+
versionUnavailable: string
|
|
275
|
+
updates: string
|
|
276
|
+
checkNow: string
|
|
277
|
+
checking: string
|
|
278
|
+
seeWhatsNew: string
|
|
279
|
+
releaseNotes: string
|
|
280
|
+
onLatest: string
|
|
281
|
+
installing: string
|
|
282
|
+
cantUpdate: string
|
|
283
|
+
cantReach: string
|
|
284
|
+
tapCheck: string
|
|
285
|
+
updateReady: (count: number) => string
|
|
286
|
+
lastChecked: (age: string) => string
|
|
287
|
+
justNowSuffix: string
|
|
288
|
+
automaticUpdates: string
|
|
289
|
+
automaticUpdatesDesc: string
|
|
290
|
+
branchCommit: (branch: string, commit: string) => string
|
|
291
|
+
never: string
|
|
292
|
+
justNow: string
|
|
293
|
+
minAgo: (count: number) => string
|
|
294
|
+
hoursAgo: (count: number) => string
|
|
295
|
+
daysAgo: (count: number) => string
|
|
296
|
+
}
|
|
297
|
+
config: {
|
|
298
|
+
none: string
|
|
299
|
+
noneParen: string
|
|
300
|
+
notSet: string
|
|
301
|
+
commaSeparated: string
|
|
302
|
+
loading: string
|
|
303
|
+
emptyTitle: string
|
|
304
|
+
emptyDesc: string
|
|
305
|
+
failedLoad: string
|
|
306
|
+
autosaveFailed: string
|
|
307
|
+
imported: string
|
|
308
|
+
invalidJson: string
|
|
309
|
+
}
|
|
310
|
+
credentials: {
|
|
311
|
+
pasteKey: string
|
|
312
|
+
pasteLabelKey: (label: string) => string
|
|
313
|
+
optional: string
|
|
314
|
+
enterValueFirst: string
|
|
315
|
+
couldNotSave: string
|
|
316
|
+
remove: string
|
|
317
|
+
or: string
|
|
318
|
+
escToCancel: string
|
|
319
|
+
getKey: string
|
|
320
|
+
saving: string
|
|
321
|
+
}
|
|
322
|
+
envActions: {
|
|
323
|
+
actionsFor: (label: string) => string
|
|
324
|
+
credentialActions: string
|
|
325
|
+
docs: string
|
|
326
|
+
hideValue: string
|
|
327
|
+
revealValue: string
|
|
328
|
+
replace: string
|
|
329
|
+
set: string
|
|
330
|
+
clear: string
|
|
331
|
+
}
|
|
332
|
+
gateway: {
|
|
333
|
+
loading: string
|
|
334
|
+
unavailableTitle: string
|
|
335
|
+
unavailableDesc: string
|
|
336
|
+
title: string
|
|
337
|
+
envOverride: string
|
|
338
|
+
intro: string
|
|
339
|
+
appliesTo: string
|
|
340
|
+
allProfiles: string
|
|
341
|
+
defaultConnection: string
|
|
342
|
+
profileConnection: (profile: string) => string
|
|
343
|
+
envOverrideTitle: string
|
|
344
|
+
envOverrideDesc: string
|
|
345
|
+
localTitle: string
|
|
346
|
+
localDesc: string
|
|
347
|
+
remoteTitle: string
|
|
348
|
+
remoteDesc: string
|
|
349
|
+
remoteUrlTitle: string
|
|
350
|
+
remoteUrlDesc: string
|
|
351
|
+
probing: string
|
|
352
|
+
probeError: string
|
|
353
|
+
signedIn: string
|
|
354
|
+
signIn: string
|
|
355
|
+
signOut: string
|
|
356
|
+
signInWith: (provider: string) => string
|
|
357
|
+
authTitle: string
|
|
358
|
+
authSignedInPassword: string
|
|
359
|
+
authSignedInOauth: string
|
|
360
|
+
authNeedsPassword: string
|
|
361
|
+
authNeedsOauth: (provider: string) => string
|
|
362
|
+
tokenTitle: string
|
|
363
|
+
tokenDesc: string
|
|
364
|
+
existingToken: (value: string) => string
|
|
365
|
+
savedToken: string
|
|
366
|
+
pasteSessionToken: string
|
|
367
|
+
testRemote: string
|
|
368
|
+
saveForRestart: string
|
|
369
|
+
saveAndReconnect: string
|
|
370
|
+
diagnostics: string
|
|
371
|
+
diagnosticsDesc: string
|
|
372
|
+
openLogs: string
|
|
373
|
+
incompleteTitle: string
|
|
374
|
+
incompleteSignIn: string
|
|
375
|
+
incompleteToken: string
|
|
376
|
+
incompleteSignInTest: string
|
|
377
|
+
incompleteTokenTest: string
|
|
378
|
+
enterUrlFirst: string
|
|
379
|
+
restartingTitle: string
|
|
380
|
+
savedTitle: string
|
|
381
|
+
restartingMessage: string
|
|
382
|
+
savedMessage: string
|
|
383
|
+
connectedTo: (baseUrl: string, version?: string) => string
|
|
384
|
+
reachableTitle: string
|
|
385
|
+
signedOutTitle: string
|
|
386
|
+
signedOutMessage: string
|
|
387
|
+
failedLoad: string
|
|
388
|
+
signInFailed: string
|
|
389
|
+
signOutFailed: string
|
|
390
|
+
testFailed: string
|
|
391
|
+
applyFailed: string
|
|
392
|
+
saveFailed: string
|
|
393
|
+
}
|
|
394
|
+
keys: {
|
|
395
|
+
loading: string
|
|
396
|
+
failedLoad: string
|
|
397
|
+
empty: string
|
|
398
|
+
}
|
|
399
|
+
mcp: {
|
|
400
|
+
loading: string
|
|
401
|
+
failedLoad: string
|
|
402
|
+
nameRequiredTitle: string
|
|
403
|
+
nameRequiredMessage: string
|
|
404
|
+
objectRequired: string
|
|
405
|
+
invalidJson: string
|
|
406
|
+
saveFailed: string
|
|
407
|
+
removeFailed: string
|
|
408
|
+
gatewayUnavailableTitle: string
|
|
409
|
+
gatewayUnavailableMessage: string
|
|
410
|
+
reloadedTitle: string
|
|
411
|
+
reloadedMessage: string
|
|
412
|
+
reloadFailed: string
|
|
413
|
+
savedTitle: string
|
|
414
|
+
savedMessage: (name: string) => string
|
|
415
|
+
newServer: string
|
|
416
|
+
reload: string
|
|
417
|
+
reloading: string
|
|
418
|
+
emptyTitle: string
|
|
419
|
+
emptyDesc: string
|
|
420
|
+
disabled: string
|
|
421
|
+
editServer: string
|
|
422
|
+
name: string
|
|
423
|
+
serverJson: string
|
|
424
|
+
remove: string
|
|
425
|
+
saveServer: string
|
|
426
|
+
}
|
|
427
|
+
model: {
|
|
428
|
+
loading: string
|
|
429
|
+
appliesDesc: string
|
|
430
|
+
provider: string
|
|
431
|
+
model: string
|
|
432
|
+
applying: string
|
|
433
|
+
defaultsLabel: string
|
|
434
|
+
reasoning: string
|
|
435
|
+
reasoningOff: string
|
|
436
|
+
defaultsFailed: string
|
|
437
|
+
auxiliaryTitle: string
|
|
438
|
+
resetAllToMain: string
|
|
439
|
+
auxiliaryDesc: string
|
|
440
|
+
setToMain: string
|
|
441
|
+
change: string
|
|
442
|
+
autoUseMain: string
|
|
443
|
+
providerDefault: string
|
|
444
|
+
tasks: Record<string, AuxTaskCopy>
|
|
445
|
+
}
|
|
446
|
+
providers: {
|
|
447
|
+
connectAccount: string
|
|
448
|
+
haveApiKey: string
|
|
449
|
+
intro: string
|
|
450
|
+
connected: string
|
|
451
|
+
collapse: string
|
|
452
|
+
connectAnother: string
|
|
453
|
+
otherProviders: string
|
|
454
|
+
disconnect: string
|
|
455
|
+
disconnectInTerminal: string
|
|
456
|
+
removeConfirm: (provider: string) => string
|
|
457
|
+
removeExternalGeneric: (provider: string) => string
|
|
458
|
+
removeKeyManaged: (provider: string) => string
|
|
459
|
+
removeTerminalConfirm: (provider: string, command: string) => string
|
|
460
|
+
removeTerminalRunning: (provider: string) => string
|
|
461
|
+
removedTitle: string
|
|
462
|
+
removedMessage: (provider: string) => string
|
|
463
|
+
failedRemove: (provider: string) => string
|
|
464
|
+
noProviderKeys: string
|
|
465
|
+
searchKeys: string
|
|
466
|
+
noKeysMatch: string
|
|
467
|
+
loading: string
|
|
468
|
+
}
|
|
469
|
+
sessions: {
|
|
470
|
+
loading: string
|
|
471
|
+
archivedTitle: string
|
|
472
|
+
archivedIntro: string
|
|
473
|
+
emptyArchivedTitle: string
|
|
474
|
+
emptyArchivedDesc: string
|
|
475
|
+
unarchive: string
|
|
476
|
+
deletePermanently: string
|
|
477
|
+
messages: (count: number) => string
|
|
478
|
+
restored: string
|
|
479
|
+
deleteConfirm: (title: string) => string
|
|
480
|
+
defaultDirTitle: string
|
|
481
|
+
defaultDirDesc: string
|
|
482
|
+
defaultDirUpdated: string
|
|
483
|
+
defaultsTo: (label: string) => string
|
|
484
|
+
change: string
|
|
485
|
+
choose: string
|
|
486
|
+
clear: string
|
|
487
|
+
notSet: string
|
|
488
|
+
failedLoad: string
|
|
489
|
+
unarchiveFailed: string
|
|
490
|
+
deleteFailed: string
|
|
491
|
+
updateDirFailed: string
|
|
492
|
+
clearDirFailed: string
|
|
493
|
+
}
|
|
494
|
+
toolsets: {
|
|
495
|
+
loadingConfig: string
|
|
496
|
+
savedTitle: string
|
|
497
|
+
savedMessage: (key: string) => string
|
|
498
|
+
removedTitle: string
|
|
499
|
+
removedMessage: (key: string) => string
|
|
500
|
+
failedSave: (key: string) => string
|
|
501
|
+
failedRemove: (key: string) => string
|
|
502
|
+
failedReveal: (key: string) => string
|
|
503
|
+
removeConfirm: (key: string) => string
|
|
504
|
+
set: string
|
|
505
|
+
notSet: string
|
|
506
|
+
selectedTitle: string
|
|
507
|
+
selectedMessage: (provider: string) => string
|
|
508
|
+
failedSelect: (provider: string) => string
|
|
509
|
+
failedLoad: string
|
|
510
|
+
noProviderOptions: string
|
|
511
|
+
noProviders: string
|
|
512
|
+
ready: string
|
|
513
|
+
nousIncluded: string
|
|
514
|
+
noApiKeyRequired: string
|
|
515
|
+
postSetupHint: (step: string) => string
|
|
516
|
+
postSetupRun: string
|
|
517
|
+
postSetupRunning: string
|
|
518
|
+
postSetupStarting: string
|
|
519
|
+
postSetupCompleteTitle: string
|
|
520
|
+
postSetupCompleteMessage: (step: string) => string
|
|
521
|
+
postSetupErrorTitle: string
|
|
522
|
+
postSetupErrorMessage: (step: string) => string
|
|
523
|
+
postSetupFailed: (step: string) => string
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
skills: {
|
|
528
|
+
tabSkills: string
|
|
529
|
+
tabToolsets: string
|
|
530
|
+
all: string
|
|
531
|
+
searchSkills: string
|
|
532
|
+
searchToolsets: string
|
|
533
|
+
refresh: string
|
|
534
|
+
refreshing: string
|
|
535
|
+
loading: string
|
|
536
|
+
noSkillsTitle: string
|
|
537
|
+
noSkillsDesc: string
|
|
538
|
+
noToolsetsTitle: string
|
|
539
|
+
noToolsetsDesc: string
|
|
540
|
+
noDescription: string
|
|
541
|
+
configured: string
|
|
542
|
+
needsKeys: string
|
|
543
|
+
toolsetsEnabled: (enabled: number, total: number) => string
|
|
544
|
+
configureToolset: (label: string) => string
|
|
545
|
+
toggleToolset: (label: string) => string
|
|
546
|
+
skillsLoadFailed: string
|
|
547
|
+
toolsetsRefreshFailed: string
|
|
548
|
+
skillEnabled: string
|
|
549
|
+
skillDisabled: string
|
|
550
|
+
toolsetEnabled: string
|
|
551
|
+
toolsetDisabled: string
|
|
552
|
+
appliesToNewSessions: (name: string) => string
|
|
553
|
+
failedToUpdate: (name: string) => string
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
agents: {
|
|
557
|
+
close: string
|
|
558
|
+
title: string
|
|
559
|
+
subtitle: string
|
|
560
|
+
emptyTitle: string
|
|
561
|
+
emptyDesc: string
|
|
562
|
+
running: string
|
|
563
|
+
failed: string
|
|
564
|
+
done: string
|
|
565
|
+
streaming: string
|
|
566
|
+
files: string
|
|
567
|
+
moreFiles: (count: number) => string
|
|
568
|
+
delegation: (index: number) => string
|
|
569
|
+
workers: (count: number) => string
|
|
570
|
+
workersActive: (count: number) => string
|
|
571
|
+
agentsCount: (count: number) => string
|
|
572
|
+
activeCount: (count: number) => string
|
|
573
|
+
failedCount: (count: number) => string
|
|
574
|
+
toolsCount: (count: number) => string
|
|
575
|
+
filesCount: (count: number) => string
|
|
576
|
+
updatedAgo: (age: string) => string
|
|
577
|
+
ageNow: string
|
|
578
|
+
ageSeconds: (seconds: number) => string
|
|
579
|
+
ageMinutes: (minutes: number) => string
|
|
580
|
+
ageHours: (hours: number) => string
|
|
581
|
+
durationSeconds: (seconds: string) => string
|
|
582
|
+
durationMinutes: (minutes: number, seconds: number) => string
|
|
583
|
+
tokensK: (k: string) => string
|
|
584
|
+
tokens: (value: number) => string
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
commandCenter: {
|
|
588
|
+
close: string
|
|
589
|
+
paletteTitle: string
|
|
590
|
+
back: string
|
|
591
|
+
searchPlaceholder: string
|
|
592
|
+
goTo: string
|
|
593
|
+
goToSession: string
|
|
594
|
+
commandCenter: string
|
|
595
|
+
appearance: string
|
|
596
|
+
settings: string
|
|
597
|
+
changeTheme: string
|
|
598
|
+
changeColorMode: string
|
|
599
|
+
installTheme: {
|
|
600
|
+
title: string
|
|
601
|
+
placeholder: string
|
|
602
|
+
loading: string
|
|
603
|
+
error: string
|
|
604
|
+
empty: string
|
|
605
|
+
install: string
|
|
606
|
+
installing: string
|
|
607
|
+
installed: string
|
|
608
|
+
installs: (count: string) => string
|
|
609
|
+
}
|
|
610
|
+
settingsFields: string
|
|
611
|
+
mcpServers: string
|
|
612
|
+
archivedChats: string
|
|
613
|
+
sections: Record<'sessions' | 'system' | 'usage', string>
|
|
614
|
+
sectionDescriptions: Record<'sessions' | 'system' | 'usage', string>
|
|
615
|
+
nav: Record<'newChat' | 'settings' | 'skills' | 'messaging' | 'artifacts', { title: string; detail: string }>
|
|
616
|
+
sectionEntries: Record<'sessions' | 'system' | 'usage', { title: string; detail: string }>
|
|
617
|
+
providerNavigate: string
|
|
618
|
+
providerSessions: string
|
|
619
|
+
refresh: string
|
|
620
|
+
refreshing: string
|
|
621
|
+
noResults: string
|
|
622
|
+
pinSession: string
|
|
623
|
+
unpinSession: string
|
|
624
|
+
exportSession: string
|
|
625
|
+
deleteSession: string
|
|
626
|
+
noSessions: string
|
|
627
|
+
gatewayRunning: string
|
|
628
|
+
gatewayStopped: string
|
|
629
|
+
hermesActiveSessions: (version: string, count: number) => string
|
|
630
|
+
restartGateway: string
|
|
631
|
+
gatewayRestartFailed: string
|
|
632
|
+
updateHermes: string
|
|
633
|
+
actionRunning: string
|
|
634
|
+
actionDone: string
|
|
635
|
+
actionFailed: string
|
|
636
|
+
actionStartedWaiting: string
|
|
637
|
+
loadingStatus: string
|
|
638
|
+
recentLogs: string
|
|
639
|
+
noLogs: string
|
|
640
|
+
days: (count: number) => string
|
|
641
|
+
statSessions: string
|
|
642
|
+
statApiCalls: string
|
|
643
|
+
statTokens: string
|
|
644
|
+
statCost: string
|
|
645
|
+
actualCost: (cost: string) => string
|
|
646
|
+
loadingUsage: string
|
|
647
|
+
noUsage: (period: number) => string
|
|
648
|
+
retry: string
|
|
649
|
+
dailyTokens: string
|
|
650
|
+
input: string
|
|
651
|
+
output: string
|
|
652
|
+
noDailyActivity: string
|
|
653
|
+
topModels: string
|
|
654
|
+
noModelUsage: string
|
|
655
|
+
topSkills: string
|
|
656
|
+
noSkillActivity: string
|
|
657
|
+
actions: (count: string) => string
|
|
658
|
+
}
|
|
659
|
+
|
|
660
|
+
messaging: {
|
|
661
|
+
search: string
|
|
662
|
+
loading: string
|
|
663
|
+
loadFailed: string
|
|
664
|
+
states: Record<string, string>
|
|
665
|
+
unknown: string
|
|
666
|
+
hintPendingRestart: string
|
|
667
|
+
hintGatewayStopped: string
|
|
668
|
+
credentialsSet: string
|
|
669
|
+
needsSetup: string
|
|
670
|
+
gatewayStopped: string
|
|
671
|
+
getCredentials: string
|
|
672
|
+
openSetupGuide: string
|
|
673
|
+
required: string
|
|
674
|
+
recommended: string
|
|
675
|
+
advanced: (count: number) => string
|
|
676
|
+
noTokenNeeded: string
|
|
677
|
+
enabled: string
|
|
678
|
+
disabled: string
|
|
679
|
+
unsavedChanges: string
|
|
680
|
+
saving: string
|
|
681
|
+
saveChanges: string
|
|
682
|
+
saved: string
|
|
683
|
+
replaceValue: string
|
|
684
|
+
openDocs: string
|
|
685
|
+
clearField: (key: string) => string
|
|
686
|
+
enableAria: (name: string) => string
|
|
687
|
+
disableAria: (name: string) => string
|
|
688
|
+
platformEnabled: (name: string) => string
|
|
689
|
+
platformDisabled: (name: string) => string
|
|
690
|
+
restartToApply: string
|
|
691
|
+
setupSaved: (name: string) => string
|
|
692
|
+
restartToReconnect: string
|
|
693
|
+
keyCleared: (key: string) => string
|
|
694
|
+
setupUpdated: (name: string) => string
|
|
695
|
+
failedUpdate: (name: string) => string
|
|
696
|
+
failedSave: (name: string) => string
|
|
697
|
+
failedClear: (key: string) => string
|
|
698
|
+
fieldCopy: Record<string, { label?: string; help?: string; placeholder?: string }>
|
|
699
|
+
platformIntro: Record<string, string>
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
profiles: {
|
|
703
|
+
close: string
|
|
704
|
+
nameHint: string
|
|
705
|
+
title: string
|
|
706
|
+
count: (count: number) => string
|
|
707
|
+
loading: string
|
|
708
|
+
newProfile: string
|
|
709
|
+
allProfiles: string
|
|
710
|
+
showAllProfiles: string
|
|
711
|
+
switchToProfile: (name: string) => string
|
|
712
|
+
manageProfiles: string
|
|
713
|
+
actionsFor: (name: string) => string
|
|
714
|
+
color: string
|
|
715
|
+
colorFor: (name: string) => string
|
|
716
|
+
setColor: (color: string) => string
|
|
717
|
+
autoColor: string
|
|
718
|
+
noProfiles: string
|
|
719
|
+
selectPrompt: string
|
|
720
|
+
refresh: string
|
|
721
|
+
refreshing: string
|
|
722
|
+
default: string
|
|
723
|
+
skills: (count: number) => string
|
|
724
|
+
env: string
|
|
725
|
+
defaultBadge: string
|
|
726
|
+
rename: string
|
|
727
|
+
copySetup: string
|
|
728
|
+
copying: string
|
|
729
|
+
modelLabel: string
|
|
730
|
+
skillsLabel: string
|
|
731
|
+
notSet: string
|
|
732
|
+
soulDesc: string
|
|
733
|
+
soulOptional: string
|
|
734
|
+
soulPlaceholder: (mode: string) => string
|
|
735
|
+
soulPlaceholderCloned: string
|
|
736
|
+
soulPlaceholderEmpty: string
|
|
737
|
+
unsavedChanges: string
|
|
738
|
+
loadingSoul: string
|
|
739
|
+
emptySoul: string
|
|
740
|
+
saving: string
|
|
741
|
+
saveSoul: string
|
|
742
|
+
deleteTitle: string
|
|
743
|
+
deleteDescPrefix: string
|
|
744
|
+
deleteDescMid: string
|
|
745
|
+
deleteDescSuffix: string
|
|
746
|
+
deleting: string
|
|
747
|
+
createDesc: string
|
|
748
|
+
nameLabel: string
|
|
749
|
+
cloneFrom: string
|
|
750
|
+
cloneFromNone: string
|
|
751
|
+
cloneFromDesc: string
|
|
752
|
+
cloneFromDefault: string
|
|
753
|
+
cloneFromDefaultDesc: string
|
|
754
|
+
invalidName: (hint: string) => string
|
|
755
|
+
nameRequired: string
|
|
756
|
+
creating: string
|
|
757
|
+
createAction: string
|
|
758
|
+
renameTitle: string
|
|
759
|
+
renameDescPrefix: string
|
|
760
|
+
renameDescSuffix: string
|
|
761
|
+
newNameLabel: string
|
|
762
|
+
renaming: string
|
|
763
|
+
created: string
|
|
764
|
+
renamed: string
|
|
765
|
+
deleted: string
|
|
766
|
+
setupCopied: string
|
|
767
|
+
soulSaved: string
|
|
768
|
+
failedLoad: string
|
|
769
|
+
failedDelete: string
|
|
770
|
+
failedCopy: string
|
|
771
|
+
failedLoadSoul: string
|
|
772
|
+
failedSaveSoul: string
|
|
773
|
+
failedCreate: string
|
|
774
|
+
failedRename: string
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
cron: {
|
|
778
|
+
close: string
|
|
779
|
+
search: string
|
|
780
|
+
loading: string
|
|
781
|
+
states: Record<string, string>
|
|
782
|
+
deliveryLabels: Record<string, string>
|
|
783
|
+
scheduleLabels: Record<string, string>
|
|
784
|
+
scheduleHints: Record<string, string>
|
|
785
|
+
days: Record<string, string>
|
|
786
|
+
dayFallback: (value: string) => string
|
|
787
|
+
everyDayAt: (time: string) => string
|
|
788
|
+
weekdaysAt: (time: string) => string
|
|
789
|
+
everyDayOfWeekAt: (day: string, time: string) => string
|
|
790
|
+
monthlyOnDayAt: (dayOfMonth: string, time: string) => string
|
|
791
|
+
topOfHour: string
|
|
792
|
+
everyHourAt: (minute: string) => string
|
|
793
|
+
newCron: string
|
|
794
|
+
emptyDescNew: string
|
|
795
|
+
emptyDescSearch: string
|
|
796
|
+
emptyTitleNew: string
|
|
797
|
+
emptyTitleSearch: string
|
|
798
|
+
last: string
|
|
799
|
+
next: string
|
|
800
|
+
noRuns: string
|
|
801
|
+
manage: string
|
|
802
|
+
showRuns: string
|
|
803
|
+
hideRuns: string
|
|
804
|
+
runHistory: string
|
|
805
|
+
actionsFor: (title: string) => string
|
|
806
|
+
actionsTitle: string
|
|
807
|
+
resume: string
|
|
808
|
+
pause: string
|
|
809
|
+
resumeTitle: string
|
|
810
|
+
pauseTitle: string
|
|
811
|
+
triggerNow: string
|
|
812
|
+
edit: string
|
|
813
|
+
deleteTitle: string
|
|
814
|
+
deleteDescPrefix: string
|
|
815
|
+
deleteDescSuffix: string
|
|
816
|
+
deleting: string
|
|
817
|
+
resumed: string
|
|
818
|
+
paused: string
|
|
819
|
+
triggered: string
|
|
820
|
+
deleted: string
|
|
821
|
+
created: string
|
|
822
|
+
updated: string
|
|
823
|
+
failedLoad: string
|
|
824
|
+
failedUpdate: string
|
|
825
|
+
failedTrigger: string
|
|
826
|
+
failedDelete: string
|
|
827
|
+
failedSave: string
|
|
828
|
+
editTitle: string
|
|
829
|
+
createTitle: string
|
|
830
|
+
editDesc: string
|
|
831
|
+
createDesc: string
|
|
832
|
+
nameLabel: string
|
|
833
|
+
namePlaceholder: string
|
|
834
|
+
promptLabel: string
|
|
835
|
+
promptPlaceholder: string
|
|
836
|
+
frequencyLabel: string
|
|
837
|
+
deliverLabel: string
|
|
838
|
+
customScheduleLabel: string
|
|
839
|
+
customPlaceholder: string
|
|
840
|
+
customHint: string
|
|
841
|
+
optional: string
|
|
842
|
+
promptScheduleRequired: string
|
|
843
|
+
saveChanges: string
|
|
844
|
+
createAction: string
|
|
845
|
+
}
|
|
846
|
+
|
|
847
|
+
artifacts: {
|
|
848
|
+
search: string
|
|
849
|
+
refresh: string
|
|
850
|
+
refreshing: string
|
|
851
|
+
indexing: string
|
|
852
|
+
tabAll: string
|
|
853
|
+
tabImages: string
|
|
854
|
+
tabFiles: string
|
|
855
|
+
tabLinks: string
|
|
856
|
+
noArtifactsTitle: string
|
|
857
|
+
noArtifactsDesc: string
|
|
858
|
+
failedLoad: string
|
|
859
|
+
openFailed: string
|
|
860
|
+
itemsImage: string
|
|
861
|
+
itemsLink: string
|
|
862
|
+
itemsFile: string
|
|
863
|
+
itemsGeneric: string
|
|
864
|
+
zero: string
|
|
865
|
+
rangeOf: (start: number, end: number, total: number) => string
|
|
866
|
+
goToPage: (itemLabel: string, page: number) => string
|
|
867
|
+
colTitleLink: string
|
|
868
|
+
colTitleFile: string
|
|
869
|
+
colTitleDefault: string
|
|
870
|
+
colLocationLink: string
|
|
871
|
+
colLocationFile: string
|
|
872
|
+
colLocationDefault: string
|
|
873
|
+
colSession: string
|
|
874
|
+
kindImage: string
|
|
875
|
+
kindFile: string
|
|
876
|
+
kindLink: string
|
|
877
|
+
chat: string
|
|
878
|
+
copyUrl: string
|
|
879
|
+
copyPath: string
|
|
880
|
+
}
|
|
881
|
+
|
|
882
|
+
sidebar: {
|
|
883
|
+
nav: Record<string, string>
|
|
884
|
+
searchAria: string
|
|
885
|
+
searchPlaceholder: string
|
|
886
|
+
clearSearch: string
|
|
887
|
+
noMatch: (query: string) => string
|
|
888
|
+
results: string
|
|
889
|
+
pinned: string
|
|
890
|
+
sessions: string
|
|
891
|
+
cronJobs: string
|
|
892
|
+
groupAriaGrouped: string
|
|
893
|
+
groupAriaUngrouped: string
|
|
894
|
+
groupTitleGrouped: string
|
|
895
|
+
groupTitleUngrouped: string
|
|
896
|
+
allPinned: string
|
|
897
|
+
shiftClickHint: string
|
|
898
|
+
noWorkspace: string
|
|
899
|
+
newSessionIn: (label: string) => string
|
|
900
|
+
reorderWorkspace: (label: string) => string
|
|
901
|
+
showMoreIn: (count: number, label: string) => string
|
|
902
|
+
loading: string
|
|
903
|
+
loadMore: string
|
|
904
|
+
loadCount: (step: number) => string
|
|
905
|
+
row: {
|
|
906
|
+
pin: string
|
|
907
|
+
unpin: string
|
|
908
|
+
copyId: string
|
|
909
|
+
export: string
|
|
910
|
+
rename: string
|
|
911
|
+
archive: string
|
|
912
|
+
newWindow: string
|
|
913
|
+
copyIdFailed: string
|
|
914
|
+
actionsFor: (title: string) => string
|
|
915
|
+
sessionActions: string
|
|
916
|
+
sessionRunning: string
|
|
917
|
+
needsInput: string
|
|
918
|
+
waitingForAnswer: string
|
|
919
|
+
handoffOrigin: (platform: string) => string
|
|
920
|
+
renamed: string
|
|
921
|
+
renameFailed: string
|
|
922
|
+
renameTitle: string
|
|
923
|
+
renameDesc: string
|
|
924
|
+
untitledPlaceholder: string
|
|
925
|
+
ageNow: string
|
|
926
|
+
ageDay: string
|
|
927
|
+
ageHour: string
|
|
928
|
+
ageMin: string
|
|
929
|
+
}
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
composer: {
|
|
933
|
+
message: string
|
|
934
|
+
wakingProfile: (profile: string) => string
|
|
935
|
+
placeholderStarting: string
|
|
936
|
+
placeholderReconnecting: string
|
|
937
|
+
placeholderFollowUp: string
|
|
938
|
+
newSessionPlaceholders: readonly string[]
|
|
939
|
+
followUpPlaceholders: readonly string[]
|
|
940
|
+
startVoice: string
|
|
941
|
+
queueMessage: string
|
|
942
|
+
steer: string
|
|
943
|
+
stop: string
|
|
944
|
+
send: string
|
|
945
|
+
speaking: string
|
|
946
|
+
transcribing: string
|
|
947
|
+
thinking: string
|
|
948
|
+
muted: string
|
|
949
|
+
listening: string
|
|
950
|
+
muteMic: string
|
|
951
|
+
unmuteMic: string
|
|
952
|
+
stopListening: string
|
|
953
|
+
stopShort: string
|
|
954
|
+
endConversation: string
|
|
955
|
+
endShort: string
|
|
956
|
+
stopDictation: string
|
|
957
|
+
transcribingDictation: string
|
|
958
|
+
voiceDictation: string
|
|
959
|
+
lookupLoading: string
|
|
960
|
+
lookupNoMatches: string
|
|
961
|
+
lookupTry: string
|
|
962
|
+
lookupOr: string
|
|
963
|
+
commonCommands: string
|
|
964
|
+
hotkeys: string
|
|
965
|
+
helpFooter: string
|
|
966
|
+
commandDescs: Record<string, string>
|
|
967
|
+
hotkeyDescs: Record<string, string>
|
|
968
|
+
attachUrlTitle: string
|
|
969
|
+
attachUrlDesc: string
|
|
970
|
+
urlPlaceholder: string
|
|
971
|
+
urlHintPre: string
|
|
972
|
+
attach: string
|
|
973
|
+
queued: (count: number) => string
|
|
974
|
+
attachmentOnly: string
|
|
975
|
+
emptyTurn: string
|
|
976
|
+
attachments: (count: number) => string
|
|
977
|
+
editingInComposer: string
|
|
978
|
+
editingQueuedInComposer: string
|
|
979
|
+
queueEdit: string
|
|
980
|
+
queueSendNext: string
|
|
981
|
+
queueSend: string
|
|
982
|
+
queueDelete: string
|
|
983
|
+
queueStuckTitle: string
|
|
984
|
+
queueStuckBody: string
|
|
985
|
+
previewUnavailable: string
|
|
986
|
+
previewLabel: (label: string) => string
|
|
987
|
+
couldNotPreview: (label: string) => string
|
|
988
|
+
removeAttachment: (label: string) => string
|
|
989
|
+
dictating: string
|
|
990
|
+
preparingAudio: string
|
|
991
|
+
speakingResponse: string
|
|
992
|
+
readingAloud: string
|
|
993
|
+
themeSuggestions: string
|
|
994
|
+
noMatchingThemes: string
|
|
995
|
+
themeTryPre: string
|
|
996
|
+
themeTryPost: string
|
|
997
|
+
attachLabel: string
|
|
998
|
+
files: string
|
|
999
|
+
folder: string
|
|
1000
|
+
images: string
|
|
1001
|
+
pasteImage: string
|
|
1002
|
+
url: string
|
|
1003
|
+
promptSnippets: string
|
|
1004
|
+
tipPre: string
|
|
1005
|
+
tipPost: string
|
|
1006
|
+
snippetsTitle: string
|
|
1007
|
+
snippetsDesc: string
|
|
1008
|
+
snippets: Record<string, { label: string; description: string; text: string }>
|
|
1009
|
+
dropFiles: string
|
|
1010
|
+
dropSession: string
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
statusStack: {
|
|
1014
|
+
agents: string
|
|
1015
|
+
background: (count: number) => string
|
|
1016
|
+
subagents: (count: number) => string
|
|
1017
|
+
todos: (done: number, total: number) => string
|
|
1018
|
+
running: string
|
|
1019
|
+
stop: string
|
|
1020
|
+
dismiss: string
|
|
1021
|
+
exit: (code: number) => string
|
|
1022
|
+
}
|
|
1023
|
+
|
|
1024
|
+
updates: {
|
|
1025
|
+
stages: Record<string, string>
|
|
1026
|
+
checking: string
|
|
1027
|
+
checkFailedTitle: string
|
|
1028
|
+
tryAgain: string
|
|
1029
|
+
notAvailableTitle: string
|
|
1030
|
+
unsupportedMessage: string
|
|
1031
|
+
connectionRetry: string
|
|
1032
|
+
latestBody: string
|
|
1033
|
+
latestBodyBackend: string
|
|
1034
|
+
allSetTitle: string
|
|
1035
|
+
availableTitle: string
|
|
1036
|
+
availableBody: string
|
|
1037
|
+
availableTitleBackend: string
|
|
1038
|
+
availableBodyBackend: string
|
|
1039
|
+
availableBodyNoChangelog: string
|
|
1040
|
+
updateNow: string
|
|
1041
|
+
maybeLater: string
|
|
1042
|
+
moreChanges: (count: number) => string
|
|
1043
|
+
manualTitle: string
|
|
1044
|
+
manualBody: string
|
|
1045
|
+
manualPickedUp: string
|
|
1046
|
+
copy: string
|
|
1047
|
+
copied: string
|
|
1048
|
+
done: string
|
|
1049
|
+
applyingBody: string
|
|
1050
|
+
applyingBodyBackend: string
|
|
1051
|
+
applyingClose: string
|
|
1052
|
+
errorTitle: string
|
|
1053
|
+
errorBody: string
|
|
1054
|
+
notNow: string
|
|
1055
|
+
applyStatus: {
|
|
1056
|
+
preparing: string
|
|
1057
|
+
pulling: string
|
|
1058
|
+
restarting: string
|
|
1059
|
+
notAvailable: string
|
|
1060
|
+
failed: string
|
|
1061
|
+
noReturn: string
|
|
1062
|
+
}
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
install: {
|
|
1066
|
+
stageStates: Record<string, string>
|
|
1067
|
+
oneTimeTitle: string
|
|
1068
|
+
unsupportedDesc: (platform: string) => string
|
|
1069
|
+
installCommand: string
|
|
1070
|
+
copyCommand: string
|
|
1071
|
+
viewDocs: string
|
|
1072
|
+
installTo: string
|
|
1073
|
+
retryAfterRun: string
|
|
1074
|
+
failedTitle: string
|
|
1075
|
+
settingUpTitle: string
|
|
1076
|
+
finishingTitle: string
|
|
1077
|
+
failedDesc: string
|
|
1078
|
+
activeDesc: string
|
|
1079
|
+
progress: (completed: number, total: number) => string
|
|
1080
|
+
currentStage: (stage: string) => string
|
|
1081
|
+
fetchingManifest: string
|
|
1082
|
+
error: string
|
|
1083
|
+
hideOutput: string
|
|
1084
|
+
showOutput: string
|
|
1085
|
+
lines: (count: number) => string
|
|
1086
|
+
noOutput: string
|
|
1087
|
+
cancelling: string
|
|
1088
|
+
cancelInstall: string
|
|
1089
|
+
transcriptSaved: string
|
|
1090
|
+
copiedOutput: string
|
|
1091
|
+
copyOutput: string
|
|
1092
|
+
reloadRetry: string
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
onboarding: {
|
|
1096
|
+
headerTitle: string
|
|
1097
|
+
headerDesc: string
|
|
1098
|
+
preparingInstall: string
|
|
1099
|
+
starting: string
|
|
1100
|
+
lookingUpProviders: string
|
|
1101
|
+
collapse: string
|
|
1102
|
+
otherProviders: string
|
|
1103
|
+
haveApiKey: string
|
|
1104
|
+
chooseLater: string
|
|
1105
|
+
recommended: string
|
|
1106
|
+
connected: string
|
|
1107
|
+
featuredPitch: string
|
|
1108
|
+
openRouterPitch: string
|
|
1109
|
+
apiKeyOptions: Record<string, { short: string; description: string }>
|
|
1110
|
+
backToSignIn: string
|
|
1111
|
+
getKey: string
|
|
1112
|
+
replaceCurrent: string
|
|
1113
|
+
pasteApiKey: string
|
|
1114
|
+
localApiKeyPlaceholder: string
|
|
1115
|
+
couldNotSave: string
|
|
1116
|
+
connecting: string
|
|
1117
|
+
update: string
|
|
1118
|
+
flowSubtitles: Record<string, string>
|
|
1119
|
+
startingSignIn: (provider: string) => string
|
|
1120
|
+
verifyingCode: (provider: string) => string
|
|
1121
|
+
connectedProvider: (provider: string) => string
|
|
1122
|
+
connectedPicking: (provider: string) => string
|
|
1123
|
+
signInFailed: string
|
|
1124
|
+
pickDifferentProvider: string
|
|
1125
|
+
signInWith: (provider: string) => string
|
|
1126
|
+
openedBrowser: (provider: string) => string
|
|
1127
|
+
authorizeThere: string
|
|
1128
|
+
copyAuthCode: string
|
|
1129
|
+
pasteAuthCode: string
|
|
1130
|
+
reopenAuthPage: string
|
|
1131
|
+
autoBrowser: (provider: string) => string
|
|
1132
|
+
reopenSignInPage: string
|
|
1133
|
+
waitingAuthorize: string
|
|
1134
|
+
externalPending: (provider: string) => string
|
|
1135
|
+
signedIn: string
|
|
1136
|
+
deviceCodeOpened: (provider: string) => string
|
|
1137
|
+
reopenVerification: string
|
|
1138
|
+
copy: string
|
|
1139
|
+
defaultModel: string
|
|
1140
|
+
freeTier: string
|
|
1141
|
+
pro: string
|
|
1142
|
+
free: string
|
|
1143
|
+
price: (input: string, output: string) => string
|
|
1144
|
+
change: string
|
|
1145
|
+
startChatting: string
|
|
1146
|
+
docs: (provider: string) => string
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
modelPicker: {
|
|
1150
|
+
title: string
|
|
1151
|
+
current: string
|
|
1152
|
+
unknown: string
|
|
1153
|
+
search: string
|
|
1154
|
+
noModels: string
|
|
1155
|
+
addProvider: string
|
|
1156
|
+
loadFailed: string
|
|
1157
|
+
noAuthenticatedProviders: string
|
|
1158
|
+
pro: string
|
|
1159
|
+
proNeedsSubscription: string
|
|
1160
|
+
free: string
|
|
1161
|
+
freeTier: string
|
|
1162
|
+
priceTitle: string
|
|
1163
|
+
}
|
|
1164
|
+
|
|
1165
|
+
modelVisibility: {
|
|
1166
|
+
title: string
|
|
1167
|
+
search: string
|
|
1168
|
+
noAuthenticatedProviders: string
|
|
1169
|
+
addProvider: string
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
shell: {
|
|
1173
|
+
windowControls: string
|
|
1174
|
+
paneControls: string
|
|
1175
|
+
appControls: string
|
|
1176
|
+
modelMenu: {
|
|
1177
|
+
search: string
|
|
1178
|
+
noModels: string
|
|
1179
|
+
editModels: string
|
|
1180
|
+
refreshModels: string
|
|
1181
|
+
fast: string
|
|
1182
|
+
medium: string
|
|
1183
|
+
}
|
|
1184
|
+
modelOptions: {
|
|
1185
|
+
noOptions: string
|
|
1186
|
+
options: string
|
|
1187
|
+
thinking: string
|
|
1188
|
+
fast: string
|
|
1189
|
+
effort: string
|
|
1190
|
+
minimal: string
|
|
1191
|
+
low: string
|
|
1192
|
+
medium: string
|
|
1193
|
+
high: string
|
|
1194
|
+
max: string
|
|
1195
|
+
updateFailed: string
|
|
1196
|
+
fastFailed: string
|
|
1197
|
+
}
|
|
1198
|
+
gatewayMenu: {
|
|
1199
|
+
gateway: string
|
|
1200
|
+
connected: string
|
|
1201
|
+
connecting: string
|
|
1202
|
+
offline: string
|
|
1203
|
+
inferenceReady: string
|
|
1204
|
+
inferenceNotReady: string
|
|
1205
|
+
checkingInference: string
|
|
1206
|
+
disconnected: string
|
|
1207
|
+
openSystem: string
|
|
1208
|
+
connection: (label: string) => string
|
|
1209
|
+
recentActivity: string
|
|
1210
|
+
viewAllLogs: string
|
|
1211
|
+
messagingPlatforms: string
|
|
1212
|
+
}
|
|
1213
|
+
statusbar: {
|
|
1214
|
+
unknown: string
|
|
1215
|
+
restart: string
|
|
1216
|
+
update: string
|
|
1217
|
+
updateInProgress: string
|
|
1218
|
+
commitsBehind: (count: number, branch: string) => string
|
|
1219
|
+
desktopVersion: (version: string) => string
|
|
1220
|
+
backendVersion: (version: string) => string
|
|
1221
|
+
clientLabel: (version: string) => string
|
|
1222
|
+
backendLabel: (version: string) => string
|
|
1223
|
+
commit: (sha: string) => string
|
|
1224
|
+
branch: (branch: string) => string
|
|
1225
|
+
closeCommandCenter: string
|
|
1226
|
+
openCommandCenter: string
|
|
1227
|
+
showTerminal: string
|
|
1228
|
+
hideTerminal: string
|
|
1229
|
+
gateway: string
|
|
1230
|
+
gatewayReady: string
|
|
1231
|
+
gatewayNeedsSetup: string
|
|
1232
|
+
gatewayChecking: string
|
|
1233
|
+
gatewayConnecting: string
|
|
1234
|
+
gatewayOffline: string
|
|
1235
|
+
gatewayRestarting: string
|
|
1236
|
+
gatewayTitle: string
|
|
1237
|
+
agents: string
|
|
1238
|
+
closeAgents: string
|
|
1239
|
+
openAgents: string
|
|
1240
|
+
subagents: (count: number) => string
|
|
1241
|
+
failed: (count: number) => string
|
|
1242
|
+
running: (count: number) => string
|
|
1243
|
+
cron: string
|
|
1244
|
+
openCron: string
|
|
1245
|
+
turnRunning: string
|
|
1246
|
+
currentTurnElapsed: string
|
|
1247
|
+
contextUsage: string
|
|
1248
|
+
session: string
|
|
1249
|
+
runtimeSessionElapsed: string
|
|
1250
|
+
yoloOn: string
|
|
1251
|
+
yoloOff: string
|
|
1252
|
+
modelNone: string
|
|
1253
|
+
noModel: string
|
|
1254
|
+
switchModel: string
|
|
1255
|
+
openModelPicker: string
|
|
1256
|
+
modelTitle: (provider: string, model: string) => string
|
|
1257
|
+
providerModelTitle: (provider: string, model: string) => string
|
|
1258
|
+
}
|
|
1259
|
+
}
|
|
1260
|
+
|
|
1261
|
+
rightSidebar: {
|
|
1262
|
+
aria: string
|
|
1263
|
+
panelsAria: string
|
|
1264
|
+
files: string
|
|
1265
|
+
terminal: string
|
|
1266
|
+
noFolderSelected: string
|
|
1267
|
+
changeCwdTitle: string
|
|
1268
|
+
remotePickerTitle: string
|
|
1269
|
+
remotePickerDescription: string
|
|
1270
|
+
remotePickerSelect: string
|
|
1271
|
+
folderTip: (cwd: string) => string
|
|
1272
|
+
openFolder: string
|
|
1273
|
+
refreshTree: string
|
|
1274
|
+
collapseAll: string
|
|
1275
|
+
previewUnavailable: string
|
|
1276
|
+
couldNotPreview: (path: string) => string
|
|
1277
|
+
noProjectTitle: string
|
|
1278
|
+
noProjectBody: string
|
|
1279
|
+
unreadableTitle: string
|
|
1280
|
+
unreadableBody: (error: string) => string
|
|
1281
|
+
emptyTitle: string
|
|
1282
|
+
emptyBody: string
|
|
1283
|
+
treeErrorTitle: string
|
|
1284
|
+
treeErrorBody: string
|
|
1285
|
+
tryAgain: string
|
|
1286
|
+
loadingTree: string
|
|
1287
|
+
loadingFiles: string
|
|
1288
|
+
terminalHide: string
|
|
1289
|
+
addToChat: string
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
preview: {
|
|
1293
|
+
tab: string
|
|
1294
|
+
closeTab: (label: string) => string
|
|
1295
|
+
closePane: string
|
|
1296
|
+
loading: string
|
|
1297
|
+
unavailable: string
|
|
1298
|
+
opening: string
|
|
1299
|
+
hide: string
|
|
1300
|
+
openPreview: string
|
|
1301
|
+
sourceLineTitle: string
|
|
1302
|
+
source: string
|
|
1303
|
+
renderedPreview: string
|
|
1304
|
+
unknownSize: string
|
|
1305
|
+
binaryTitle: string
|
|
1306
|
+
binaryBody: (label: string) => string
|
|
1307
|
+
largeTitle: string
|
|
1308
|
+
largeBody: (label: string, size: string) => string
|
|
1309
|
+
previewAnyway: string
|
|
1310
|
+
truncated: string
|
|
1311
|
+
noInlineTitle: string
|
|
1312
|
+
noInlineBody: (mimeType: string) => string
|
|
1313
|
+
console: {
|
|
1314
|
+
deselect: string
|
|
1315
|
+
select: string
|
|
1316
|
+
copyFailed: string
|
|
1317
|
+
copyEntry: string
|
|
1318
|
+
sendEntry: string
|
|
1319
|
+
messages: (count: number) => string
|
|
1320
|
+
resize: string
|
|
1321
|
+
title: string
|
|
1322
|
+
selected: (count: number) => string
|
|
1323
|
+
sendToChat: string
|
|
1324
|
+
copySelected: string
|
|
1325
|
+
copyAll: string
|
|
1326
|
+
copy: string
|
|
1327
|
+
clear: string
|
|
1328
|
+
empty: string
|
|
1329
|
+
promptHeader: string
|
|
1330
|
+
sentTitle: string
|
|
1331
|
+
sentMessage: (count: number) => string
|
|
1332
|
+
}
|
|
1333
|
+
web: {
|
|
1334
|
+
appFailedToBoot: string
|
|
1335
|
+
serverNotFound: string
|
|
1336
|
+
failedToLoad: string
|
|
1337
|
+
tryAgain: string
|
|
1338
|
+
restarting: string
|
|
1339
|
+
askRestart: string
|
|
1340
|
+
lookingRestart: (taskId: string) => string
|
|
1341
|
+
restartingTitle: string
|
|
1342
|
+
restartingMessage: string
|
|
1343
|
+
startRestartFailed: (message: string) => string
|
|
1344
|
+
restartFailed: string
|
|
1345
|
+
hideConsole: string
|
|
1346
|
+
showConsole: string
|
|
1347
|
+
hideDevTools: string
|
|
1348
|
+
openDevTools: string
|
|
1349
|
+
finishedRestarting: (message?: string) => string
|
|
1350
|
+
failedRestarting: (message: string) => string
|
|
1351
|
+
unknownError: string
|
|
1352
|
+
restartedTitle: string
|
|
1353
|
+
reloadingNow: string
|
|
1354
|
+
restartFailedTitle: string
|
|
1355
|
+
restartFailedMessage: string
|
|
1356
|
+
stillWorking: string
|
|
1357
|
+
workspaceReloading: string
|
|
1358
|
+
fileChanged: (url: string) => string
|
|
1359
|
+
filesChanged: (count: number, url: string) => string
|
|
1360
|
+
watchFailed: (message: string) => string
|
|
1361
|
+
moduleMimeDescription: string
|
|
1362
|
+
loadFailedConsole: (code: number | undefined, message: string) => string
|
|
1363
|
+
unreachableDescription: string
|
|
1364
|
+
openTarget: (url: string) => string
|
|
1365
|
+
fallbackTitle: string
|
|
1366
|
+
}
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
assistant: {
|
|
1370
|
+
thread: {
|
|
1371
|
+
loadingSession: string
|
|
1372
|
+
showEarlier: string
|
|
1373
|
+
loadingResponse: string
|
|
1374
|
+
thinking: string
|
|
1375
|
+
today: (time: string) => string
|
|
1376
|
+
yesterday: (time: string) => string
|
|
1377
|
+
copy: string
|
|
1378
|
+
refresh: string
|
|
1379
|
+
moreActions: string
|
|
1380
|
+
branchNewChat: string
|
|
1381
|
+
dismissError: string
|
|
1382
|
+
readAloudFailed: string
|
|
1383
|
+
preparingAudio: string
|
|
1384
|
+
stopReading: string
|
|
1385
|
+
readAloud: string
|
|
1386
|
+
editMessage: string
|
|
1387
|
+
scrollToBottom: string
|
|
1388
|
+
stop: string
|
|
1389
|
+
restorePrevious: string
|
|
1390
|
+
restoreCheckpoint: string
|
|
1391
|
+
restoreFromHere: string
|
|
1392
|
+
restoreTitle: string
|
|
1393
|
+
restoreBody: string
|
|
1394
|
+
restoreConfirm: string
|
|
1395
|
+
restoreNext: string
|
|
1396
|
+
goForward: string
|
|
1397
|
+
sendEdited: string
|
|
1398
|
+
attachingFile: string
|
|
1399
|
+
}
|
|
1400
|
+
approval: {
|
|
1401
|
+
gatewayDisconnected: string
|
|
1402
|
+
sendFailed: string
|
|
1403
|
+
run: string
|
|
1404
|
+
command: string
|
|
1405
|
+
moreOptions: string
|
|
1406
|
+
allowSession: string
|
|
1407
|
+
alwaysAllowMenu: string
|
|
1408
|
+
jumpToApproval: string
|
|
1409
|
+
reject: string
|
|
1410
|
+
alwaysTitle: string
|
|
1411
|
+
alwaysDescription: (pattern: string) => string
|
|
1412
|
+
alwaysAllow: string
|
|
1413
|
+
}
|
|
1414
|
+
clarify: {
|
|
1415
|
+
notReady: string
|
|
1416
|
+
gatewayDisconnected: string
|
|
1417
|
+
sendFailed: string
|
|
1418
|
+
loadingQuestion: string
|
|
1419
|
+
other: string
|
|
1420
|
+
placeholder: string
|
|
1421
|
+
shortcutSuffix: string
|
|
1422
|
+
back: string
|
|
1423
|
+
skip: string
|
|
1424
|
+
send: string
|
|
1425
|
+
}
|
|
1426
|
+
tool: {
|
|
1427
|
+
code: string
|
|
1428
|
+
copyCode: string
|
|
1429
|
+
renderingImage: string
|
|
1430
|
+
copyOutput: string
|
|
1431
|
+
copyCommand: string
|
|
1432
|
+
copyContent: string
|
|
1433
|
+
copyUrl: string
|
|
1434
|
+
copyResults: string
|
|
1435
|
+
copyQuery: string
|
|
1436
|
+
copyFile: string
|
|
1437
|
+
copyPath: string
|
|
1438
|
+
outputAlt: string
|
|
1439
|
+
rawResponse: string
|
|
1440
|
+
copyActivity: string
|
|
1441
|
+
recoveredOne: string
|
|
1442
|
+
recoveredMany: (count: number) => string
|
|
1443
|
+
failedOne: string
|
|
1444
|
+
failedMany: (count: number) => string
|
|
1445
|
+
statusRunning: string
|
|
1446
|
+
statusError: string
|
|
1447
|
+
statusRecovered: string
|
|
1448
|
+
statusDone: string
|
|
1449
|
+
}
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
prompts: {
|
|
1453
|
+
gatewayDisconnected: string
|
|
1454
|
+
sudoSendFailed: string
|
|
1455
|
+
secretSendFailed: string
|
|
1456
|
+
sudoTitle: string
|
|
1457
|
+
sudoDesc: string
|
|
1458
|
+
sudoPlaceholder: string
|
|
1459
|
+
secretTitle: string
|
|
1460
|
+
secretDesc: string
|
|
1461
|
+
secretPlaceholder: string
|
|
1462
|
+
}
|
|
1463
|
+
|
|
1464
|
+
desktop: {
|
|
1465
|
+
audioReadFailed: string
|
|
1466
|
+
sessionUnavailable: string
|
|
1467
|
+
createSessionFailed: string
|
|
1468
|
+
promptFailed: string
|
|
1469
|
+
providerCredentialRequired: string
|
|
1470
|
+
emptySlashCommand: string
|
|
1471
|
+
desktopCommands: string
|
|
1472
|
+
skillCommandsAvailable: (count: number) => string
|
|
1473
|
+
warningLine: (message: string) => string
|
|
1474
|
+
yoloArmed: string
|
|
1475
|
+
yoloOff: string
|
|
1476
|
+
yoloSystem: (active: boolean) => string
|
|
1477
|
+
yoloTitle: string
|
|
1478
|
+
yoloToggleFailed: string
|
|
1479
|
+
profileStatus: (current: string) => string
|
|
1480
|
+
unknownProfile: string
|
|
1481
|
+
noProfileNamed: (target: string, available: string) => string
|
|
1482
|
+
newChatsProfile: (name: string) => string
|
|
1483
|
+
setProfileFailed: string
|
|
1484
|
+
sttDisabled: string
|
|
1485
|
+
stopFailed: string
|
|
1486
|
+
regenerateFailed: string
|
|
1487
|
+
editFailed: string
|
|
1488
|
+
resumeFailed: string
|
|
1489
|
+
resumeStrandedTitle: string
|
|
1490
|
+
resumeStrandedBody: string
|
|
1491
|
+
resumeRetry: string
|
|
1492
|
+
nothingToBranch: string
|
|
1493
|
+
branchNeedsChat: string
|
|
1494
|
+
sessionBusy: string
|
|
1495
|
+
branchStopCurrent: string
|
|
1496
|
+
branchNoText: string
|
|
1497
|
+
branchTitle: string
|
|
1498
|
+
branchFailed: string
|
|
1499
|
+
deleteFailed: string
|
|
1500
|
+
archived: string
|
|
1501
|
+
archiveFailed: string
|
|
1502
|
+
cwdChangeFailed: string
|
|
1503
|
+
cwdStagedTitle: string
|
|
1504
|
+
cwdStagedMessage: string
|
|
1505
|
+
modelSwitchFailed: string
|
|
1506
|
+
sessionExported: string
|
|
1507
|
+
sessionExportFailed: string
|
|
1508
|
+
imageSaved: string
|
|
1509
|
+
downloadStarted: string
|
|
1510
|
+
restartToUseSaveImage: string
|
|
1511
|
+
restartToSaveImages: string
|
|
1512
|
+
imageDownloadFailed: string
|
|
1513
|
+
openImage: string
|
|
1514
|
+
downloadImage: string
|
|
1515
|
+
savingImage: string
|
|
1516
|
+
imagePreviewFailed: string
|
|
1517
|
+
imageAttach: string
|
|
1518
|
+
imageWriteFailed: string
|
|
1519
|
+
imageAttachFailed: string
|
|
1520
|
+
attachImages: string
|
|
1521
|
+
clipboard: string
|
|
1522
|
+
noClipboardImage: string
|
|
1523
|
+
clipboardPasteFailed: string
|
|
1524
|
+
dropFiles: string
|
|
1525
|
+
handoff: {
|
|
1526
|
+
pickPlatform: string
|
|
1527
|
+
success: (platform: string) => string
|
|
1528
|
+
systemNote: (platform: string) => string
|
|
1529
|
+
failed: (error: string) => string
|
|
1530
|
+
timedOut: string
|
|
1531
|
+
}
|
|
1532
|
+
}
|
|
1533
|
+
|
|
1534
|
+
errors: {
|
|
1535
|
+
genericFailure: string
|
|
1536
|
+
boundaryTitle: string
|
|
1537
|
+
boundaryDesc: string
|
|
1538
|
+
reloadWindow: string
|
|
1539
|
+
openLogs: string
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
ui: {
|
|
1543
|
+
search: {
|
|
1544
|
+
clear: string
|
|
1545
|
+
}
|
|
1546
|
+
pagination: {
|
|
1547
|
+
label: string
|
|
1548
|
+
previous: string
|
|
1549
|
+
previousAria: string
|
|
1550
|
+
next: string
|
|
1551
|
+
nextAria: string
|
|
1552
|
+
}
|
|
1553
|
+
sidebar: {
|
|
1554
|
+
title: string
|
|
1555
|
+
description: string
|
|
1556
|
+
toggle: string
|
|
1557
|
+
}
|
|
1558
|
+
}
|
|
1559
|
+
}
|