@clawpump/claw-agent 0.1.5 → 0.1.7
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 +2177 -3162
- 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/cli_agent_setup_mixin.py +684 -0
- package/agent/hermes_cli/cli_commands_mixin.py +2293 -0
- package/agent/hermes_cli/commands.py +215 -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/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 +6190 -973
- 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 +4 -2
- package/agent/optional-mcps/clawpump-stdio/manifest.yaml +2 -0
- 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 +4 -1
- 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 +300 -684
- 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,1921 @@
|
|
|
1
|
+
import { FIELD_DESCRIPTIONS, FIELD_LABELS } from '@/app/settings/constants'
|
|
2
|
+
|
|
3
|
+
import type { Translations } from './types'
|
|
4
|
+
|
|
5
|
+
export const en: Translations = {
|
|
6
|
+
common: {
|
|
7
|
+
apply: 'Apply',
|
|
8
|
+
back: 'Back',
|
|
9
|
+
save: 'Save',
|
|
10
|
+
saving: 'Saving…',
|
|
11
|
+
cancel: 'Cancel',
|
|
12
|
+
change: 'Change',
|
|
13
|
+
choose: 'Choose',
|
|
14
|
+
clear: 'Clear',
|
|
15
|
+
close: 'Close',
|
|
16
|
+
collapse: 'Collapse',
|
|
17
|
+
confirm: 'Confirm',
|
|
18
|
+
connect: 'Connect',
|
|
19
|
+
connecting: 'Connecting',
|
|
20
|
+
continue: 'Continue',
|
|
21
|
+
copied: 'Copied',
|
|
22
|
+
copy: 'Copy',
|
|
23
|
+
copyFailed: 'Copy failed',
|
|
24
|
+
delete: 'Delete',
|
|
25
|
+
docs: 'Docs',
|
|
26
|
+
done: 'Done',
|
|
27
|
+
error: 'Error',
|
|
28
|
+
failed: 'Failed',
|
|
29
|
+
free: 'Free',
|
|
30
|
+
loading: 'Loading…',
|
|
31
|
+
notSet: 'Not set',
|
|
32
|
+
refresh: 'Refresh',
|
|
33
|
+
remove: 'Remove',
|
|
34
|
+
replace: 'Replace',
|
|
35
|
+
retry: 'Retry',
|
|
36
|
+
run: 'Run',
|
|
37
|
+
send: 'Send',
|
|
38
|
+
set: 'Set',
|
|
39
|
+
skip: 'Skip',
|
|
40
|
+
update: 'Update',
|
|
41
|
+
on: 'On',
|
|
42
|
+
off: 'Off'
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
boot: {
|
|
46
|
+
ready: 'Hermes Desktop is ready',
|
|
47
|
+
desktopBootFailedWithMessage: message => `Desktop boot failed: ${message}`,
|
|
48
|
+
steps: {
|
|
49
|
+
connectingGateway: 'Connecting live desktop gateway',
|
|
50
|
+
loadingSettings: 'Loading Hermes settings',
|
|
51
|
+
loadingSessions: 'Loading recent sessions',
|
|
52
|
+
startingDesktopConnection: 'Starting desktop connection',
|
|
53
|
+
startingHermesDesktop: 'Starting Hermes Desktop…'
|
|
54
|
+
},
|
|
55
|
+
errors: {
|
|
56
|
+
backgroundExited: 'Hermes background process exited.',
|
|
57
|
+
backgroundExitedDuringStartup: 'Hermes background process exited during startup.',
|
|
58
|
+
backendStopped: 'Backend stopped',
|
|
59
|
+
desktopBootFailed: 'Desktop boot failed',
|
|
60
|
+
gatewaySignInRequired: 'Gateway sign-in required',
|
|
61
|
+
ipcBridgeUnavailable: 'Desktop IPC bridge is unavailable.'
|
|
62
|
+
},
|
|
63
|
+
failure: {
|
|
64
|
+
title: "Hermes couldn't start",
|
|
65
|
+
description:
|
|
66
|
+
"The background gateway didn't come up. Try one of the recovery steps below. Nothing here deletes your chats or settings.",
|
|
67
|
+
remoteTitle: 'Remote gateway sign-in required',
|
|
68
|
+
remoteDescription:
|
|
69
|
+
'Your remote gateway session has expired. Sign in again to reconnect. Nothing here deletes your chats or settings.',
|
|
70
|
+
retry: 'Retry',
|
|
71
|
+
repairInstall: 'Repair install',
|
|
72
|
+
useLocalGateway: 'Use local gateway',
|
|
73
|
+
openLogs: 'Open logs',
|
|
74
|
+
repairHint: 'Repair re-runs the installer and can take a few minutes on a fresh machine.',
|
|
75
|
+
remoteSignInHint: 'Opens the gateway login window. Use local gateway to switch to the bundled backend instead.',
|
|
76
|
+
hideRecentLogs: 'Hide recent logs',
|
|
77
|
+
showRecentLogs: 'Show recent logs',
|
|
78
|
+
signedInTitle: 'Signed in',
|
|
79
|
+
signedInMessage: 'Reconnecting to the remote gateway…',
|
|
80
|
+
signInIncompleteTitle: 'Sign-in incomplete',
|
|
81
|
+
signInIncompleteMessage: 'The login window closed before authentication finished.',
|
|
82
|
+
signInFailed: 'Sign-in failed',
|
|
83
|
+
signInToRemoteGateway: 'Sign in to remote gateway',
|
|
84
|
+
signInWithProvider: provider => `Sign in with ${provider}`,
|
|
85
|
+
identityProvider: 'your identity provider'
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
notifications: {
|
|
90
|
+
region: 'Notifications',
|
|
91
|
+
hide: 'Hide',
|
|
92
|
+
show: 'Show',
|
|
93
|
+
more: count => `${count} more ${count === 1 ? 'notification' : 'notifications'}`,
|
|
94
|
+
clearAll: 'Clear all',
|
|
95
|
+
dismiss: 'Dismiss notification',
|
|
96
|
+
details: 'Details',
|
|
97
|
+
copyDetail: 'Copy detail',
|
|
98
|
+
copyDetailFailed: 'Could not copy notification detail',
|
|
99
|
+
backendOutOfDateTitle: 'Backend out of date',
|
|
100
|
+
backendOutOfDateMessage:
|
|
101
|
+
'Your Hermes backend is older than this desktop build and may not work correctly. Update to align them.',
|
|
102
|
+
updateHermes: 'Update Hermes',
|
|
103
|
+
updateReadyTitle: 'Update ready',
|
|
104
|
+
updateReadyMessage: count => `${count} new change${count === 1 ? '' : 's'} available.`,
|
|
105
|
+
seeWhatsNew: "See what's new",
|
|
106
|
+
errors: {
|
|
107
|
+
elevenLabsNeedsKey: 'ElevenLabs STT needs ELEVENLABS_API_KEY.',
|
|
108
|
+
elevenLabsRejectedKey: 'ElevenLabs rejected the API key (401).',
|
|
109
|
+
methodNotAllowed:
|
|
110
|
+
'The desktop backend rejected that request (405 Method Not Allowed). Try restarting Hermes Desktop.',
|
|
111
|
+
microphonePermission: 'Microphone permission was denied.',
|
|
112
|
+
openaiRejectedApiKey: 'OpenAI rejected the API key.',
|
|
113
|
+
openaiRejectedApiKeyWithStatus: status => `OpenAI rejected the API key (${status} invalid_api_key).`,
|
|
114
|
+
openaiTtsNeedsKey: 'OpenAI TTS needs VOICE_TOOLS_OPENAI_KEY or OPENAI_API_KEY.'
|
|
115
|
+
},
|
|
116
|
+
voice: {
|
|
117
|
+
configureSpeechToText: 'Configure speech-to-text to use voice mode.',
|
|
118
|
+
couldNotStartSession: 'Could not start voice session',
|
|
119
|
+
microphoneAccessDenied: 'Microphone access denied.',
|
|
120
|
+
microphoneConstraintsUnsupported: 'Microphone constraints are not supported by this device.',
|
|
121
|
+
microphoneFailed: 'Microphone failed',
|
|
122
|
+
microphoneInUse: 'Microphone is already in use by another app.',
|
|
123
|
+
microphonePermissionDenied: 'Microphone permission was denied.',
|
|
124
|
+
microphoneStartFailed: 'Could not start microphone recording.',
|
|
125
|
+
microphoneUnsupported: 'This runtime does not support microphone recording.',
|
|
126
|
+
noMicrophone: 'No microphone was found.',
|
|
127
|
+
noSpeechDetected: 'No speech detected',
|
|
128
|
+
playbackFailed: 'Voice playback failed',
|
|
129
|
+
recordingFailed: 'Voice recording failed',
|
|
130
|
+
transcriptionFailed: 'Voice transcription failed',
|
|
131
|
+
transcriptionUnavailable: 'Voice transcription is not available yet.',
|
|
132
|
+
tryRecordingAgain: 'Try recording again.',
|
|
133
|
+
unavailable: 'Voice unavailable'
|
|
134
|
+
},
|
|
135
|
+
native: {
|
|
136
|
+
approvalTitle: 'Approval needed',
|
|
137
|
+
approveAction: 'Approve',
|
|
138
|
+
rejectAction: 'Reject',
|
|
139
|
+
inputTitle: 'Input needed',
|
|
140
|
+
inputBody: 'Hermes is waiting for your response.',
|
|
141
|
+
turnDoneTitle: 'Hermes finished',
|
|
142
|
+
turnDoneBody: 'The response is ready.',
|
|
143
|
+
turnErrorTitle: 'Turn failed',
|
|
144
|
+
backgroundDoneTitle: 'Background task finished',
|
|
145
|
+
backgroundFailedTitle: 'Background task failed'
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
|
|
149
|
+
titlebar: {
|
|
150
|
+
hideSidebar: 'Hide sidebar',
|
|
151
|
+
showSidebar: 'Show sidebar',
|
|
152
|
+
search: 'Search',
|
|
153
|
+
searchTitle: 'Search sessions, views, and actions',
|
|
154
|
+
swapSidebarSides: 'Swap sidebar sides',
|
|
155
|
+
swapSidebarSidesTitle: 'Swap the sessions and file browser sides',
|
|
156
|
+
hideRightSidebar: 'Hide right sidebar',
|
|
157
|
+
showRightSidebar: 'Show right sidebar',
|
|
158
|
+
muteHaptics: 'Mute haptics',
|
|
159
|
+
unmuteHaptics: 'Unmute haptics',
|
|
160
|
+
openSettings: 'Open settings',
|
|
161
|
+
openKeybinds: 'Keyboard shortcuts'
|
|
162
|
+
},
|
|
163
|
+
|
|
164
|
+
keybinds: {
|
|
165
|
+
title: 'Keyboard shortcuts',
|
|
166
|
+
subtitle: open => `Click a shortcut to rebind it · ${open} reopens this panel.`,
|
|
167
|
+
rebind: 'Rebind',
|
|
168
|
+
reset: 'Reset to default',
|
|
169
|
+
resetAll: 'Reset all',
|
|
170
|
+
pressKey: 'Press a key…',
|
|
171
|
+
set: 'set',
|
|
172
|
+
conflictWith: label => `Also bound to “${label}”`,
|
|
173
|
+
categories: {
|
|
174
|
+
composer: 'Composer',
|
|
175
|
+
profiles: 'Profiles',
|
|
176
|
+
session: 'Session',
|
|
177
|
+
navigation: 'Navigation',
|
|
178
|
+
view: 'View'
|
|
179
|
+
},
|
|
180
|
+
actions: {
|
|
181
|
+
'keybinds.openPanel': 'Open keyboard shortcuts',
|
|
182
|
+
'nav.commandPalette': 'Open command palette',
|
|
183
|
+
'nav.commandCenter': 'Open command center',
|
|
184
|
+
'nav.settings': 'Open settings',
|
|
185
|
+
'nav.profiles': 'Open profiles',
|
|
186
|
+
'nav.skills': 'Open skills',
|
|
187
|
+
'nav.messaging': 'Open messaging',
|
|
188
|
+
'nav.artifacts': 'Open artifacts',
|
|
189
|
+
'nav.cron': 'Open scheduled jobs',
|
|
190
|
+
'nav.agents': 'Open agents',
|
|
191
|
+
'session.new': 'New session',
|
|
192
|
+
'session.newWindow': 'New session in window',
|
|
193
|
+
'session.next': 'Next session',
|
|
194
|
+
'session.prev': 'Previous session',
|
|
195
|
+
'session.slot.1': 'Switch to recent session 1',
|
|
196
|
+
'session.slot.2': 'Switch to recent session 2',
|
|
197
|
+
'session.slot.3': 'Switch to recent session 3',
|
|
198
|
+
'session.slot.4': 'Switch to recent session 4',
|
|
199
|
+
'session.slot.5': 'Switch to recent session 5',
|
|
200
|
+
'session.slot.6': 'Switch to recent session 6',
|
|
201
|
+
'session.slot.7': 'Switch to recent session 7',
|
|
202
|
+
'session.slot.8': 'Switch to recent session 8',
|
|
203
|
+
'session.slot.9': 'Switch to recent session 9',
|
|
204
|
+
'session.focusSearch': 'Search sessions',
|
|
205
|
+
'session.togglePin': 'Pin / unpin current session',
|
|
206
|
+
'composer.focus': 'Focus composer',
|
|
207
|
+
'composer.modelPicker': 'Open model picker',
|
|
208
|
+
'view.toggleSidebar': 'Toggle sessions sidebar',
|
|
209
|
+
'view.toggleRightSidebar': 'Toggle file browser',
|
|
210
|
+
'view.showFiles': 'Show file browser',
|
|
211
|
+
'view.showTerminal': 'Show terminal',
|
|
212
|
+
'view.terminalSelection': 'Send terminal selection to composer',
|
|
213
|
+
'view.closePreviewTab': 'Close preview tab',
|
|
214
|
+
'view.flipPanes': 'Swap sidebar sides',
|
|
215
|
+
'appearance.toggleMode': 'Toggle light / dark',
|
|
216
|
+
'profile.default': 'Switch to default profile',
|
|
217
|
+
'profile.switch.1': 'Switch to profile 1',
|
|
218
|
+
'profile.switch.2': 'Switch to profile 2',
|
|
219
|
+
'profile.switch.3': 'Switch to profile 3',
|
|
220
|
+
'profile.switch.4': 'Switch to profile 4',
|
|
221
|
+
'profile.switch.5': 'Switch to profile 5',
|
|
222
|
+
'profile.switch.6': 'Switch to profile 6',
|
|
223
|
+
'profile.switch.7': 'Switch to profile 7',
|
|
224
|
+
'profile.switch.8': 'Switch to profile 8',
|
|
225
|
+
'profile.switch.9': 'Switch to profile 9',
|
|
226
|
+
'profile.switch.10': 'Switch to profile 10',
|
|
227
|
+
'profile.switch.11': 'Switch to profile 11',
|
|
228
|
+
'profile.switch.12': 'Switch to profile 12',
|
|
229
|
+
'profile.switch.13': 'Switch to profile 13',
|
|
230
|
+
'profile.switch.14': 'Switch to profile 14',
|
|
231
|
+
'profile.switch.15': 'Switch to profile 15',
|
|
232
|
+
'profile.switch.16': 'Switch to profile 16',
|
|
233
|
+
'profile.switch.17': 'Switch to profile 17',
|
|
234
|
+
'profile.switch.18': 'Switch to profile 18',
|
|
235
|
+
'profile.next': 'Next profile',
|
|
236
|
+
'profile.prev': 'Previous profile',
|
|
237
|
+
'profile.toggleAll': 'Toggle all-profiles view',
|
|
238
|
+
'profile.create': 'Create profile',
|
|
239
|
+
'composer.send': 'Send message',
|
|
240
|
+
'composer.newline': 'Insert newline',
|
|
241
|
+
'composer.steer': 'Steer the running turn',
|
|
242
|
+
'composer.sendQueued': 'Send next queued turn',
|
|
243
|
+
'composer.mention': 'Reference files, folders, URLs',
|
|
244
|
+
'composer.slash': 'Slash command palette',
|
|
245
|
+
'composer.help': 'Quick help',
|
|
246
|
+
'composer.history': 'Cycle popover / history',
|
|
247
|
+
'composer.cancel': 'Close popover · cancel run'
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
|
|
251
|
+
language: {
|
|
252
|
+
label: 'Language',
|
|
253
|
+
description: 'Choose the language for the desktop interface.',
|
|
254
|
+
saving: 'Saving language…',
|
|
255
|
+
saveError: 'Language update failed',
|
|
256
|
+
switchTo: 'Switch language',
|
|
257
|
+
searchPlaceholder: 'Search languages…',
|
|
258
|
+
noResults: 'No languages found'
|
|
259
|
+
},
|
|
260
|
+
|
|
261
|
+
settings: {
|
|
262
|
+
closeSettings: 'Close settings',
|
|
263
|
+
exportConfig: 'Export config',
|
|
264
|
+
importConfig: 'Import config',
|
|
265
|
+
resetToDefaults: 'Reset to defaults',
|
|
266
|
+
resetConfirm: 'Reset all settings to Hermes defaults?',
|
|
267
|
+
exportFailed: 'Export failed',
|
|
268
|
+
resetFailed: 'Reset failed',
|
|
269
|
+
nav: {
|
|
270
|
+
providers: 'Providers',
|
|
271
|
+
providerAccounts: 'Accounts',
|
|
272
|
+
providerApiKeys: 'API keys',
|
|
273
|
+
gateway: 'Gateway',
|
|
274
|
+
apiKeys: 'Tools & Keys',
|
|
275
|
+
keysTools: 'Tools',
|
|
276
|
+
keysSettings: 'Settings',
|
|
277
|
+
mcp: 'MCP',
|
|
278
|
+
archivedChats: 'Archived Chats',
|
|
279
|
+
about: 'About',
|
|
280
|
+
notifications: 'Notifications'
|
|
281
|
+
},
|
|
282
|
+
notifications: {
|
|
283
|
+
title: 'Notifications',
|
|
284
|
+
intro:
|
|
285
|
+
'Native desktop notifications, separate from in-app toasts. These are device-local — each computer keeps its own settings.',
|
|
286
|
+
enableAll: 'Enable notifications',
|
|
287
|
+
enableAllDesc: 'Master switch. Turn this off to silence every notification below.',
|
|
288
|
+
focusedHint: 'Completion alerts only fire while Hermes is in the background.',
|
|
289
|
+
kinds: {
|
|
290
|
+
approval: {
|
|
291
|
+
label: 'Approval needed',
|
|
292
|
+
description: 'A command is waiting for you to approve or reject it.'
|
|
293
|
+
},
|
|
294
|
+
input: {
|
|
295
|
+
label: 'Input needed',
|
|
296
|
+
description: 'Hermes asked a question or needs a password or secret.'
|
|
297
|
+
},
|
|
298
|
+
turnDone: {
|
|
299
|
+
label: 'Response ready',
|
|
300
|
+
description: 'A turn finished while Hermes was in the background.'
|
|
301
|
+
},
|
|
302
|
+
turnError: {
|
|
303
|
+
label: 'Turn failed',
|
|
304
|
+
description: 'A turn ended with an error.'
|
|
305
|
+
},
|
|
306
|
+
backgroundDone: {
|
|
307
|
+
label: 'Background task finished',
|
|
308
|
+
description: 'A backgrounded terminal command completed.'
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
test: 'Send test notification',
|
|
312
|
+
testTitle: 'Hermes',
|
|
313
|
+
testBody: 'Notifications are working.',
|
|
314
|
+
testSent: 'Test sent. If nothing appears, check your OS notification permissions and Focus/Do Not Disturb.',
|
|
315
|
+
testUnsupported: 'This system does not support native notifications.',
|
|
316
|
+
completionSoundTitle: 'Completion Sound',
|
|
317
|
+
completionSoundDesc: 'Plays when an agent turn finishes. Pick a preset and preview it here.',
|
|
318
|
+
completionSoundPreview: 'Preview'
|
|
319
|
+
},
|
|
320
|
+
sections: {
|
|
321
|
+
model: 'Model',
|
|
322
|
+
chat: 'Chat',
|
|
323
|
+
appearance: 'Appearance',
|
|
324
|
+
workspace: 'Workspace',
|
|
325
|
+
safety: 'Safety',
|
|
326
|
+
memory: 'Memory & Context',
|
|
327
|
+
voice: 'Voice',
|
|
328
|
+
advanced: 'Advanced'
|
|
329
|
+
},
|
|
330
|
+
searchPlaceholder: {
|
|
331
|
+
about: 'About Hermes Desktop',
|
|
332
|
+
config: 'Search settings...',
|
|
333
|
+
gateway: 'Gateway connection...',
|
|
334
|
+
keys: 'Search API keys...',
|
|
335
|
+
mcp: 'Search MCP servers...',
|
|
336
|
+
sessions: 'Search archived sessions...'
|
|
337
|
+
},
|
|
338
|
+
modeOptions: {
|
|
339
|
+
light: { label: 'Light', description: 'Bright desktop surfaces' },
|
|
340
|
+
dark: { label: 'Dark', description: 'Low-glare workspace' },
|
|
341
|
+
system: { label: 'System', description: 'Follow OS appearance' }
|
|
342
|
+
},
|
|
343
|
+
appearance: {
|
|
344
|
+
title: 'Appearance',
|
|
345
|
+
intro:
|
|
346
|
+
'These are desktop-only display preferences. Mode controls brightness; theme controls the accent palette and chat surface styling.',
|
|
347
|
+
colorMode: 'Color Mode',
|
|
348
|
+
colorModeDesc: 'Pick a fixed mode or let Hermes follow your system setting.',
|
|
349
|
+
toolViewTitle: 'Tool Call Display',
|
|
350
|
+
toolViewDesc: 'Product hides raw tool payloads; Technical shows full input/output.',
|
|
351
|
+
translucencyTitle: 'Window Translucency',
|
|
352
|
+
translucencyDesc: 'See your desktop through the whole window. macOS and Windows only.',
|
|
353
|
+
product: 'Product',
|
|
354
|
+
productDesc: 'Human-friendly tool activity with concise summaries.',
|
|
355
|
+
technical: 'Technical',
|
|
356
|
+
technicalDesc: 'Include raw tool args/results and low-level details.',
|
|
357
|
+
themeTitle: 'Theme',
|
|
358
|
+
themeDesc: 'Desktop palettes only. The selected mode is applied on top.',
|
|
359
|
+
themeProfileNote: profile => `Saved for the ${profile} profile — each profile keeps its own theme.`,
|
|
360
|
+
installTitle: 'Install from VS Code',
|
|
361
|
+
installDesc:
|
|
362
|
+
'Paste a Marketplace extension id (e.g. dracula-theme.theme-dracula) to convert its color theme into a desktop palette.',
|
|
363
|
+
installPlaceholder: 'publisher.extension',
|
|
364
|
+
installButton: 'Install',
|
|
365
|
+
installing: 'Installing…',
|
|
366
|
+
installError: 'Could not install that theme.',
|
|
367
|
+
installed: name => `Installed “${name}”.`,
|
|
368
|
+
removeTheme: 'Remove theme',
|
|
369
|
+
importedBadge: 'Imported'
|
|
370
|
+
},
|
|
371
|
+
fieldLabels: FIELD_LABELS,
|
|
372
|
+
fieldDescriptions: FIELD_DESCRIPTIONS,
|
|
373
|
+
about: {
|
|
374
|
+
heading: 'Hermes Desktop',
|
|
375
|
+
version: value => `Version ${value}`,
|
|
376
|
+
versionUnavailable: 'Version unavailable',
|
|
377
|
+
updates: 'Updates',
|
|
378
|
+
checkNow: 'Check now',
|
|
379
|
+
checking: 'Checking…',
|
|
380
|
+
seeWhatsNew: "See what's new",
|
|
381
|
+
releaseNotes: 'Release notes',
|
|
382
|
+
onLatest: "You're on the latest version.",
|
|
383
|
+
installing: 'An update is currently installing.',
|
|
384
|
+
cantUpdate: "This build can't update itself from inside the app.",
|
|
385
|
+
cantReach: "We couldn't reach the update server.",
|
|
386
|
+
tapCheck: 'Tap "Check now" to look for updates.',
|
|
387
|
+
updateReady: count => `A new update is ready (${count} change${count === 1 ? '' : 's'} included).`,
|
|
388
|
+
lastChecked: age => `Last checked ${age}`,
|
|
389
|
+
justNowSuffix: ' · just now',
|
|
390
|
+
automaticUpdates: 'Automatic updates',
|
|
391
|
+
automaticUpdatesDesc:
|
|
392
|
+
'Hermes checks for updates automatically in the background and lets you know when one is ready.',
|
|
393
|
+
branchCommit: (branch, commit) => `Branch ${branch} · Commit ${commit}`,
|
|
394
|
+
never: 'never',
|
|
395
|
+
justNow: 'just now',
|
|
396
|
+
minAgo: count => `${count} min ago`,
|
|
397
|
+
hoursAgo: count => `${count} hours ago`,
|
|
398
|
+
daysAgo: count => `${count} days ago`
|
|
399
|
+
},
|
|
400
|
+
config: {
|
|
401
|
+
none: 'None',
|
|
402
|
+
noneParen: '(none)',
|
|
403
|
+
notSet: 'Not set',
|
|
404
|
+
commaSeparated: 'comma-separated values',
|
|
405
|
+
loading: 'Loading Hermes configuration...',
|
|
406
|
+
emptyTitle: 'Nothing to configure',
|
|
407
|
+
emptyDesc: 'This section has no adjustable settings.',
|
|
408
|
+
failedLoad: 'Settings failed to load',
|
|
409
|
+
autosaveFailed: 'Autosave failed',
|
|
410
|
+
imported: 'Config imported',
|
|
411
|
+
invalidJson: 'Invalid config JSON'
|
|
412
|
+
},
|
|
413
|
+
credentials: {
|
|
414
|
+
pasteKey: 'Paste key',
|
|
415
|
+
pasteLabelKey: label => `Paste ${label} key`,
|
|
416
|
+
optional: 'Optional',
|
|
417
|
+
enterValueFirst: 'Enter a value first.',
|
|
418
|
+
couldNotSave: 'Could not save credential.',
|
|
419
|
+
remove: 'Remove',
|
|
420
|
+
or: 'or',
|
|
421
|
+
escToCancel: 'esc to cancel',
|
|
422
|
+
getKey: 'Get a key',
|
|
423
|
+
saving: 'Saving'
|
|
424
|
+
},
|
|
425
|
+
envActions: {
|
|
426
|
+
actionsFor: label => `Actions for ${label}`,
|
|
427
|
+
credentialActions: 'Credential actions',
|
|
428
|
+
docs: 'Docs',
|
|
429
|
+
hideValue: 'Hide value',
|
|
430
|
+
revealValue: 'Reveal value',
|
|
431
|
+
replace: 'Replace',
|
|
432
|
+
set: 'Set',
|
|
433
|
+
clear: 'Clear'
|
|
434
|
+
},
|
|
435
|
+
gateway: {
|
|
436
|
+
loading: 'Loading gateway settings...',
|
|
437
|
+
unavailableTitle: 'Gateway settings unavailable',
|
|
438
|
+
unavailableDesc: 'The desktop IPC bridge does not expose gateway settings.',
|
|
439
|
+
title: 'Gateway Connection',
|
|
440
|
+
envOverride: 'env override',
|
|
441
|
+
intro:
|
|
442
|
+
'Hermes Desktop starts its own local gateway by default. Use a remote gateway when you want this app to control an already-running Hermes backend on another machine or behind a trusted proxy. Pick a profile below to give it its own remote host.',
|
|
443
|
+
appliesTo: 'Applies to',
|
|
444
|
+
allProfiles: 'All profiles',
|
|
445
|
+
defaultConnection: 'Default connection for every profile that has no override of its own.',
|
|
446
|
+
profileConnection: profile =>
|
|
447
|
+
`Connection used only when “${profile}” is the active profile. Set it to Local to inherit the default.`,
|
|
448
|
+
envOverrideTitle: 'Environment variables are controlling this desktop session.',
|
|
449
|
+
envOverrideDesc:
|
|
450
|
+
'Unset HERMES_DESKTOP_REMOTE_URL and HERMES_DESKTOP_REMOTE_TOKEN to use the saved setting below.',
|
|
451
|
+
localTitle: 'Local gateway',
|
|
452
|
+
localDesc: 'Start a private Hermes backend on localhost. This is the default and works offline.',
|
|
453
|
+
remoteTitle: 'Remote gateway',
|
|
454
|
+
remoteDesc:
|
|
455
|
+
'Connect this desktop shell to a remote Hermes backend. Hosted gateways use OAuth or a username and password; self-hosted ones may use a session token.',
|
|
456
|
+
remoteUrlTitle: 'Remote URL',
|
|
457
|
+
remoteUrlDesc: 'Base URL for the remote dashboard backend. Path prefixes are supported, for example /hermes.',
|
|
458
|
+
probing: 'Checking how this gateway authenticates…',
|
|
459
|
+
probeError: 'Could not reach this gateway yet. Check the URL — the auth method will appear once it responds.',
|
|
460
|
+
signedIn: 'Signed in',
|
|
461
|
+
signIn: 'Sign in',
|
|
462
|
+
signOut: 'Sign out',
|
|
463
|
+
signInWith: provider => `Sign in with ${provider}`,
|
|
464
|
+
authTitle: 'Authentication',
|
|
465
|
+
authSignedInPassword:
|
|
466
|
+
'This gateway uses a username and password. You are signed in; the session refreshes automatically.',
|
|
467
|
+
authSignedInOauth: 'This gateway uses OAuth. You are signed in; the session refreshes automatically.',
|
|
468
|
+
authNeedsPassword: 'This gateway uses a username and password. Sign in to authorize this desktop app.',
|
|
469
|
+
authNeedsOauth: provider => `This gateway uses OAuth. Sign in with ${provider} to authorize this desktop app.`,
|
|
470
|
+
tokenTitle: 'Session token',
|
|
471
|
+
tokenDesc: 'The dashboard session token used for REST and WebSocket access. Leave blank to keep the saved token.',
|
|
472
|
+
existingToken: value => `Existing token ${value}`,
|
|
473
|
+
savedToken: 'saved',
|
|
474
|
+
pasteSessionToken: 'Paste session token',
|
|
475
|
+
testRemote: 'Test remote',
|
|
476
|
+
saveForRestart: 'Save for next restart',
|
|
477
|
+
saveAndReconnect: 'Save and reconnect',
|
|
478
|
+
diagnostics: 'Diagnostics',
|
|
479
|
+
diagnosticsDesc: 'Reveal desktop.log in your file manager — useful when the gateway fails to start.',
|
|
480
|
+
openLogs: 'Open logs',
|
|
481
|
+
incompleteTitle: 'Remote gateway incomplete',
|
|
482
|
+
incompleteSignIn: 'Enter a remote URL and sign in before switching to remote.',
|
|
483
|
+
incompleteToken: 'Enter a remote URL and session token before switching to remote.',
|
|
484
|
+
incompleteSignInTest: 'Enter a remote URL and sign in before testing.',
|
|
485
|
+
incompleteTokenTest: 'Enter a remote URL and session token before testing.',
|
|
486
|
+
enterUrlFirst: 'Enter a remote URL first.',
|
|
487
|
+
restartingTitle: 'Gateway connection restarting',
|
|
488
|
+
savedTitle: 'Gateway settings saved',
|
|
489
|
+
restartingMessage: 'Hermes Desktop will reconnect using the saved settings.',
|
|
490
|
+
savedMessage: 'Saved for the next restart.',
|
|
491
|
+
connectedTo: (baseUrl, version) => `Connected to ${baseUrl}${version ? ` · Hermes ${version}` : ''}`,
|
|
492
|
+
reachableTitle: 'Remote gateway reachable',
|
|
493
|
+
signedOutTitle: 'Signed out',
|
|
494
|
+
signedOutMessage: 'Cleared the remote gateway session.',
|
|
495
|
+
failedLoad: 'Gateway settings failed to load',
|
|
496
|
+
signInFailed: 'Sign-in failed',
|
|
497
|
+
signOutFailed: 'Sign-out failed',
|
|
498
|
+
testFailed: 'Remote gateway test failed',
|
|
499
|
+
applyFailed: 'Could not apply gateway settings',
|
|
500
|
+
saveFailed: 'Could not save gateway settings'
|
|
501
|
+
},
|
|
502
|
+
keys: {
|
|
503
|
+
loading: 'Loading API keys and credentials...',
|
|
504
|
+
failedLoad: 'API keys failed to load',
|
|
505
|
+
empty: 'Nothing configured in this category yet.'
|
|
506
|
+
},
|
|
507
|
+
mcp: {
|
|
508
|
+
loading: 'Loading MCP servers...',
|
|
509
|
+
failedLoad: 'MCP config failed to load',
|
|
510
|
+
nameRequiredTitle: 'Name required',
|
|
511
|
+
nameRequiredMessage: 'Give this MCP server a config key.',
|
|
512
|
+
objectRequired: 'Server config must be a JSON object',
|
|
513
|
+
invalidJson: 'Invalid MCP JSON',
|
|
514
|
+
saveFailed: 'Save failed',
|
|
515
|
+
removeFailed: 'Remove failed',
|
|
516
|
+
gatewayUnavailableTitle: 'Gateway unavailable',
|
|
517
|
+
gatewayUnavailableMessage: 'Reconnect the gateway before reloading MCP.',
|
|
518
|
+
reloadedTitle: 'MCP tools reloaded',
|
|
519
|
+
reloadedMessage: 'New tool schemas apply to fresh turns.',
|
|
520
|
+
reloadFailed: 'MCP reload failed',
|
|
521
|
+
savedTitle: 'MCP server saved',
|
|
522
|
+
savedMessage: name => `${name} applies after MCP reload.`,
|
|
523
|
+
newServer: 'New server',
|
|
524
|
+
reload: 'Reload MCP',
|
|
525
|
+
reloading: 'Reloading...',
|
|
526
|
+
emptyTitle: 'No MCP servers',
|
|
527
|
+
emptyDesc: 'Add a stdio or HTTP server to expose MCP tools.',
|
|
528
|
+
disabled: 'disabled',
|
|
529
|
+
editServer: 'Edit server',
|
|
530
|
+
name: 'Name',
|
|
531
|
+
serverJson: 'Server JSON',
|
|
532
|
+
remove: 'Remove',
|
|
533
|
+
saveServer: 'Save server'
|
|
534
|
+
},
|
|
535
|
+
model: {
|
|
536
|
+
loading: 'Loading model configuration...',
|
|
537
|
+
appliesDesc: 'Applies to new sessions. Use the model picker in the composer to hot-swap the active chat.',
|
|
538
|
+
provider: 'Provider',
|
|
539
|
+
model: 'Model',
|
|
540
|
+
applying: 'Applying...',
|
|
541
|
+
defaultsLabel: 'Defaults',
|
|
542
|
+
reasoning: 'Reasoning',
|
|
543
|
+
reasoningOff: 'Off',
|
|
544
|
+
defaultsFailed: 'Failed to save model defaults',
|
|
545
|
+
auxiliaryTitle: 'Auxiliary models',
|
|
546
|
+
resetAllToMain: 'Reset all to main',
|
|
547
|
+
auxiliaryDesc: 'Helper tasks run on the main model by default. Assign a dedicated model to any task to override.',
|
|
548
|
+
setToMain: 'Set to main',
|
|
549
|
+
change: 'Change',
|
|
550
|
+
autoUseMain: 'auto · use main model',
|
|
551
|
+
providerDefault: '(provider default)',
|
|
552
|
+
tasks: {
|
|
553
|
+
vision: { label: 'Vision', hint: 'Image analysis' },
|
|
554
|
+
web_extract: { label: 'Web extract', hint: 'Page summarization' },
|
|
555
|
+
compression: { label: 'Compression', hint: 'Context compaction' },
|
|
556
|
+
skills_hub: { label: 'Skills hub', hint: 'Skill search' },
|
|
557
|
+
approval: { label: 'Approval', hint: 'Smart auto-approve' },
|
|
558
|
+
mcp: { label: 'MCP', hint: 'MCP tool routing' },
|
|
559
|
+
title_generation: { label: 'Title gen', hint: 'Session titles' },
|
|
560
|
+
curator: { label: 'Curator', hint: 'Skill-usage review' }
|
|
561
|
+
}
|
|
562
|
+
},
|
|
563
|
+
providers: {
|
|
564
|
+
connectAccount: 'Connect an account',
|
|
565
|
+
haveApiKey: 'Have an API key instead?',
|
|
566
|
+
intro:
|
|
567
|
+
'Sign in with a subscription — no API key to copy. Hermes runs the browser sign-in for you, right here in the app.',
|
|
568
|
+
connected: 'Connected',
|
|
569
|
+
collapse: 'Collapse',
|
|
570
|
+
connectAnother: 'Connect another provider',
|
|
571
|
+
otherProviders: 'Other providers',
|
|
572
|
+
disconnect: 'Disconnect',
|
|
573
|
+
disconnectInTerminal: 'Disconnect (runs the removal command in the terminal)',
|
|
574
|
+
removeConfirm: provider => `Remove ${provider}?`,
|
|
575
|
+
removeExternalGeneric: provider => `${provider} is managed by its own CLI — remove it there.`,
|
|
576
|
+
removeKeyManaged: provider => `${provider} is configured from an API key. Remove it from API Keys.`,
|
|
577
|
+
removeTerminalConfirm: (provider, command) =>
|
|
578
|
+
`Disconnect ${provider}? This runs "${command}" in the terminal to clear the credential.`,
|
|
579
|
+
removeTerminalRunning: provider => `Running ${provider} disconnect in the terminal…`,
|
|
580
|
+
removedTitle: 'Account removed',
|
|
581
|
+
removedMessage: provider => `${provider} was removed.`,
|
|
582
|
+
failedRemove: provider => `Could not remove ${provider}`,
|
|
583
|
+
noProviderKeys: 'No provider API keys available.',
|
|
584
|
+
searchKeys: 'Search providers…',
|
|
585
|
+
noKeysMatch: 'No providers match your search.',
|
|
586
|
+
loading: 'Loading providers...'
|
|
587
|
+
},
|
|
588
|
+
sessions: {
|
|
589
|
+
loading: 'Loading archived sessions…',
|
|
590
|
+
archivedTitle: 'Archived sessions',
|
|
591
|
+
archivedIntro:
|
|
592
|
+
'Archived chats are hidden from the sidebar but keep all their messages. Ctrl/⌘-click a chat in the sidebar to archive it.',
|
|
593
|
+
emptyArchivedTitle: 'Nothing archived',
|
|
594
|
+
emptyArchivedDesc: 'Archive a chat to hide it here.',
|
|
595
|
+
unarchive: 'Unarchive',
|
|
596
|
+
deletePermanently: 'Delete permanently',
|
|
597
|
+
messages: count => `${count} ${count === 1 ? 'message' : 'messages'}`,
|
|
598
|
+
restored: 'Restored',
|
|
599
|
+
deleteConfirm: title => `Permanently delete "${title}"? This cannot be undone.`,
|
|
600
|
+
defaultDirTitle: 'Default project directory',
|
|
601
|
+
defaultDirDesc:
|
|
602
|
+
'New sessions start in this folder unless you pick another. Leave it unset to use your home directory.',
|
|
603
|
+
defaultDirUpdated: 'Default project directory updated — start a new chat (Ctrl/⌘+N) for it to take effect',
|
|
604
|
+
defaultsTo: label => `Defaults to ${label}.`,
|
|
605
|
+
change: 'Change',
|
|
606
|
+
choose: 'Choose',
|
|
607
|
+
clear: 'Clear',
|
|
608
|
+
notSet: 'Not set',
|
|
609
|
+
failedLoad: 'Could not load archived sessions',
|
|
610
|
+
unarchiveFailed: 'Unarchive failed',
|
|
611
|
+
deleteFailed: 'Delete failed',
|
|
612
|
+
updateDirFailed: 'Could not update default directory',
|
|
613
|
+
clearDirFailed: 'Could not clear default directory'
|
|
614
|
+
},
|
|
615
|
+
toolsets: {
|
|
616
|
+
loadingConfig: 'Loading configuration',
|
|
617
|
+
savedTitle: 'Credential saved',
|
|
618
|
+
savedMessage: key => `${key} updated.`,
|
|
619
|
+
removedTitle: 'Credential removed',
|
|
620
|
+
removedMessage: key => `${key} removed.`,
|
|
621
|
+
failedSave: key => `Failed to save ${key}`,
|
|
622
|
+
failedRemove: key => `Failed to remove ${key}`,
|
|
623
|
+
failedReveal: key => `Failed to reveal ${key}`,
|
|
624
|
+
removeConfirm: key => `Remove ${key} from .env?`,
|
|
625
|
+
set: 'Set',
|
|
626
|
+
notSet: 'Not set',
|
|
627
|
+
selectedTitle: 'Provider selected',
|
|
628
|
+
selectedMessage: provider => `${provider} is now active.`,
|
|
629
|
+
failedSelect: provider => `Failed to select ${provider}`,
|
|
630
|
+
failedLoad: 'Tool configuration failed to load',
|
|
631
|
+
noProviderOptions: 'This toolset has no provider options — enable it and it works with your current setup.',
|
|
632
|
+
noProviders: 'No providers are available for this toolset right now.',
|
|
633
|
+
ready: 'Ready',
|
|
634
|
+
nousIncluded: 'Included with a Nous subscription — sign in to Nous Portal to activate.',
|
|
635
|
+
noApiKeyRequired: 'No API key required.',
|
|
636
|
+
postSetupHint: step =>
|
|
637
|
+
`This backend needs a one-time install (${step}). Runs on this machine — may take a few minutes.`,
|
|
638
|
+
postSetupRun: 'Run setup',
|
|
639
|
+
postSetupRunning: 'Installing…',
|
|
640
|
+
postSetupStarting: 'Starting…',
|
|
641
|
+
postSetupCompleteTitle: 'Setup complete',
|
|
642
|
+
postSetupCompleteMessage: step => `${step} installed.`,
|
|
643
|
+
postSetupErrorTitle: 'Setup finished with errors',
|
|
644
|
+
postSetupErrorMessage: step => `Check the ${step} log.`,
|
|
645
|
+
postSetupFailed: step => `Failed to run ${step} setup`
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
|
|
649
|
+
skills: {
|
|
650
|
+
tabSkills: 'Skills',
|
|
651
|
+
tabToolsets: 'Toolsets',
|
|
652
|
+
all: 'All',
|
|
653
|
+
searchSkills: 'Search skills...',
|
|
654
|
+
searchToolsets: 'Search toolsets...',
|
|
655
|
+
refresh: 'Refresh skills',
|
|
656
|
+
refreshing: 'Refreshing skills',
|
|
657
|
+
loading: 'Loading capabilities...',
|
|
658
|
+
noSkillsTitle: 'No skills found',
|
|
659
|
+
noSkillsDesc: 'Try a broader search or different category.',
|
|
660
|
+
noToolsetsTitle: 'No toolsets found',
|
|
661
|
+
noToolsetsDesc: 'Try a broader search query.',
|
|
662
|
+
noDescription: 'No description.',
|
|
663
|
+
configured: 'Configured',
|
|
664
|
+
needsKeys: 'Needs keys',
|
|
665
|
+
toolsetsEnabled: (enabled, total) => `${enabled}/${total} toolsets enabled`,
|
|
666
|
+
configureToolset: label => `Configure ${label}`,
|
|
667
|
+
toggleToolset: label => `Toggle ${label} toolset`,
|
|
668
|
+
skillsLoadFailed: 'Skills failed to load',
|
|
669
|
+
toolsetsRefreshFailed: 'Toolsets failed to refresh',
|
|
670
|
+
skillEnabled: 'Skill enabled',
|
|
671
|
+
skillDisabled: 'Skill disabled',
|
|
672
|
+
toolsetEnabled: 'Toolset enabled',
|
|
673
|
+
toolsetDisabled: 'Toolset disabled',
|
|
674
|
+
appliesToNewSessions: name => `${name} applies to new sessions.`,
|
|
675
|
+
failedToUpdate: name => `Failed to update ${name}`
|
|
676
|
+
},
|
|
677
|
+
|
|
678
|
+
agents: {
|
|
679
|
+
close: 'Close agents',
|
|
680
|
+
title: 'Spawn tree',
|
|
681
|
+
subtitle: 'Live subagent activity for the current turn.',
|
|
682
|
+
emptyTitle: 'No live subagents',
|
|
683
|
+
emptyDesc: 'When a turn delegates work, child agents stream their progress here.',
|
|
684
|
+
running: 'Running',
|
|
685
|
+
failed: 'Failed',
|
|
686
|
+
done: 'Done',
|
|
687
|
+
streaming: 'Streaming',
|
|
688
|
+
files: 'Files',
|
|
689
|
+
moreFiles: count => `+${count} more files`,
|
|
690
|
+
delegation: index => `Delegation ${index}`,
|
|
691
|
+
workers: count => `${count} workers`,
|
|
692
|
+
workersActive: count => `${count} active`,
|
|
693
|
+
agentsCount: count => `${count} ${count === 1 ? 'agent' : 'agents'}`,
|
|
694
|
+
activeCount: count => `${count} active`,
|
|
695
|
+
failedCount: count => `${count} failed`,
|
|
696
|
+
toolsCount: count => `${count} tools`,
|
|
697
|
+
filesCount: count => `${count} files`,
|
|
698
|
+
updatedAgo: age => `updated ${age}`,
|
|
699
|
+
ageNow: 'now',
|
|
700
|
+
ageSeconds: seconds => `${seconds}s ago`,
|
|
701
|
+
ageMinutes: minutes => `${minutes}m ago`,
|
|
702
|
+
ageHours: hours => `${hours}h ago`,
|
|
703
|
+
durationSeconds: seconds => `${seconds}s`,
|
|
704
|
+
durationMinutes: (minutes, seconds) => `${minutes}m ${seconds}s`,
|
|
705
|
+
tokensK: k => `${k}k tok`,
|
|
706
|
+
tokens: value => `${value} tok`
|
|
707
|
+
},
|
|
708
|
+
|
|
709
|
+
commandCenter: {
|
|
710
|
+
close: 'Close command center',
|
|
711
|
+
paletteTitle: 'Command palette',
|
|
712
|
+
back: 'Back',
|
|
713
|
+
searchPlaceholder: 'Search sessions, views, and actions',
|
|
714
|
+
goTo: 'Go to',
|
|
715
|
+
goToSession: 'Go to session',
|
|
716
|
+
commandCenter: 'Command Center',
|
|
717
|
+
appearance: 'Appearance',
|
|
718
|
+
settings: 'Settings',
|
|
719
|
+
changeTheme: 'Change theme...',
|
|
720
|
+
changeColorMode: 'Change color mode...',
|
|
721
|
+
installTheme: {
|
|
722
|
+
title: 'Install theme...',
|
|
723
|
+
placeholder: 'Search the VS Code Marketplace...',
|
|
724
|
+
loading: 'Searching the Marketplace...',
|
|
725
|
+
error: 'Could not reach the Marketplace.',
|
|
726
|
+
empty: 'No matching themes.',
|
|
727
|
+
install: 'Install',
|
|
728
|
+
installing: 'Installing...',
|
|
729
|
+
installed: 'Installed',
|
|
730
|
+
installs: count => `${count} installs`
|
|
731
|
+
},
|
|
732
|
+
settingsFields: 'Settings fields',
|
|
733
|
+
mcpServers: 'MCP servers',
|
|
734
|
+
archivedChats: 'Archived chats',
|
|
735
|
+
sections: { sessions: 'Sessions', system: 'System', usage: 'Usage' },
|
|
736
|
+
sectionDescriptions: {
|
|
737
|
+
sessions: 'Search and manage sessions',
|
|
738
|
+
system: 'Status, logs, and system actions',
|
|
739
|
+
usage: 'Token, cost, and skill activity over time'
|
|
740
|
+
},
|
|
741
|
+
nav: {
|
|
742
|
+
newChat: { title: 'New session', detail: 'Start a fresh session' },
|
|
743
|
+
settings: { title: 'Settings', detail: 'Configure Hermes desktop' },
|
|
744
|
+
skills: { title: 'Skills & Tools', detail: 'Enable skills, toolsets, and providers' },
|
|
745
|
+
messaging: { title: 'Messaging', detail: 'Set up Telegram, Slack, Discord, and more' },
|
|
746
|
+
artifacts: { title: 'Artifacts', detail: 'Browse generated outputs' }
|
|
747
|
+
},
|
|
748
|
+
sectionEntries: {
|
|
749
|
+
sessions: { title: 'Sessions panel', detail: 'Search, pin, and manage sessions' },
|
|
750
|
+
system: { title: 'System panel', detail: 'Gateway status, logs, restart/update' },
|
|
751
|
+
usage: { title: 'Usage panel', detail: 'Token, cost, and skill activity' }
|
|
752
|
+
},
|
|
753
|
+
providerNavigate: 'Navigate',
|
|
754
|
+
providerSessions: 'Sessions',
|
|
755
|
+
refresh: 'Refresh',
|
|
756
|
+
refreshing: 'Refreshing...',
|
|
757
|
+
noResults: 'No matching results found.',
|
|
758
|
+
pinSession: 'Pin session',
|
|
759
|
+
unpinSession: 'Unpin session',
|
|
760
|
+
exportSession: 'Export session',
|
|
761
|
+
deleteSession: 'Delete session',
|
|
762
|
+
noSessions: 'No sessions yet.',
|
|
763
|
+
gatewayRunning: 'Messaging gateway running',
|
|
764
|
+
gatewayStopped: 'Messaging gateway stopped',
|
|
765
|
+
hermesActiveSessions: (version, count) => `Hermes ${version} · Active sessions ${count}`,
|
|
766
|
+
restartGateway: 'Restart gateway',
|
|
767
|
+
gatewayRestartFailed: 'Gateway restart failed.',
|
|
768
|
+
updateHermes: 'Update Hermes',
|
|
769
|
+
actionRunning: 'running',
|
|
770
|
+
actionDone: 'done',
|
|
771
|
+
actionFailed: 'failed',
|
|
772
|
+
actionStartedWaiting: 'Action started, waiting for status...',
|
|
773
|
+
loadingStatus: 'Loading status...',
|
|
774
|
+
recentLogs: 'Recent logs',
|
|
775
|
+
noLogs: 'No logs loaded yet.',
|
|
776
|
+
days: count => `${count}d`,
|
|
777
|
+
statSessions: 'Sessions',
|
|
778
|
+
statApiCalls: 'API calls',
|
|
779
|
+
statTokens: 'Tokens in/out',
|
|
780
|
+
statCost: 'Est. cost',
|
|
781
|
+
actualCost: cost => `actual ${cost}`,
|
|
782
|
+
loadingUsage: 'Loading usage...',
|
|
783
|
+
noUsage: period => `No usage in the last ${period} days.`,
|
|
784
|
+
retry: 'Retry',
|
|
785
|
+
dailyTokens: 'Daily tokens',
|
|
786
|
+
input: 'input',
|
|
787
|
+
output: 'output',
|
|
788
|
+
noDailyActivity: 'No daily activity.',
|
|
789
|
+
topModels: 'Top models',
|
|
790
|
+
noModelUsage: 'No model usage yet.',
|
|
791
|
+
topSkills: 'Top skills',
|
|
792
|
+
noSkillActivity: 'No skill activity yet.',
|
|
793
|
+
actions: count => `${count} actions`
|
|
794
|
+
},
|
|
795
|
+
|
|
796
|
+
messaging: {
|
|
797
|
+
search: 'Search messaging...',
|
|
798
|
+
loading: 'Loading messaging platforms...',
|
|
799
|
+
loadFailed: 'Messaging platforms failed to load',
|
|
800
|
+
states: {
|
|
801
|
+
connected: 'Connected',
|
|
802
|
+
connecting: 'Connecting',
|
|
803
|
+
disabled: 'Disabled',
|
|
804
|
+
fatal: 'Error',
|
|
805
|
+
gateway_stopped: 'Messaging gateway stopped',
|
|
806
|
+
not_configured: 'Needs setup',
|
|
807
|
+
pending_restart: 'Restart needed',
|
|
808
|
+
retrying: 'Retrying',
|
|
809
|
+
startup_failed: 'Startup failed'
|
|
810
|
+
},
|
|
811
|
+
unknown: 'Unknown',
|
|
812
|
+
hintPendingRestart: 'Restart the gateway from the status bar to apply this change.',
|
|
813
|
+
hintGatewayStopped: 'Start the gateway from the status bar to connect.',
|
|
814
|
+
credentialsSet: 'Credentials set',
|
|
815
|
+
needsSetup: 'Needs setup',
|
|
816
|
+
gatewayStopped: 'Messaging gateway stopped',
|
|
817
|
+
getCredentials: 'Get your credentials',
|
|
818
|
+
openSetupGuide: 'Open setup guide',
|
|
819
|
+
required: 'Required',
|
|
820
|
+
recommended: 'Recommended',
|
|
821
|
+
advanced: count => `Advanced (${count})`,
|
|
822
|
+
noTokenNeeded: 'This platform does not need a token here. Use the setup guide above, then enable it below.',
|
|
823
|
+
enabled: 'Enabled',
|
|
824
|
+
disabled: 'Disabled',
|
|
825
|
+
unsavedChanges: 'Unsaved changes',
|
|
826
|
+
saving: 'Saving...',
|
|
827
|
+
saveChanges: 'Save changes',
|
|
828
|
+
saved: 'Saved',
|
|
829
|
+
replaceValue: 'Replace current value',
|
|
830
|
+
openDocs: 'Open docs',
|
|
831
|
+
clearField: key => `Clear ${key}`,
|
|
832
|
+
enableAria: name => `Enable ${name}`,
|
|
833
|
+
disableAria: name => `Disable ${name}`,
|
|
834
|
+
platformEnabled: name => `${name} enabled`,
|
|
835
|
+
platformDisabled: name => `${name} disabled`,
|
|
836
|
+
restartToApply: 'This change takes effect after a gateway restart.',
|
|
837
|
+
setupSaved: name => `${name} setup saved`,
|
|
838
|
+
restartToReconnect: 'New credentials take effect after a gateway restart.',
|
|
839
|
+
keyCleared: key => `${key} cleared`,
|
|
840
|
+
setupUpdated: name => `${name} setup was updated.`,
|
|
841
|
+
failedUpdate: name => `Failed to update ${name}`,
|
|
842
|
+
failedSave: name => `Failed to save ${name}`,
|
|
843
|
+
failedClear: key => `Failed to clear ${key}`,
|
|
844
|
+
fieldCopy: {
|
|
845
|
+
TELEGRAM_BOT_TOKEN: {
|
|
846
|
+
label: 'Bot token',
|
|
847
|
+
help: 'Create a bot with @BotFather, then paste the token it gives you.',
|
|
848
|
+
placeholder: 'Paste Telegram bot token'
|
|
849
|
+
},
|
|
850
|
+
TELEGRAM_ALLOWED_USERS: {
|
|
851
|
+
label: 'Allowed Telegram user IDs',
|
|
852
|
+
help: 'Recommended. Comma-separated numeric IDs from @userinfobot. Without this, anyone can DM your bot.'
|
|
853
|
+
},
|
|
854
|
+
TELEGRAM_PROXY: { label: 'Proxy URL', help: 'Only needed on networks where Telegram is blocked.' },
|
|
855
|
+
DISCORD_BOT_TOKEN: {
|
|
856
|
+
label: 'Bot token',
|
|
857
|
+
help: 'Create an application in the Discord Developer Portal, add a bot, then paste its token.'
|
|
858
|
+
},
|
|
859
|
+
DISCORD_ALLOWED_USERS: {
|
|
860
|
+
label: 'Allowed Discord user IDs',
|
|
861
|
+
help: 'Recommended. Comma-separated Discord user IDs.'
|
|
862
|
+
},
|
|
863
|
+
DISCORD_REPLY_TO_MODE: { label: 'Reply style', help: 'first, all, or off.' },
|
|
864
|
+
DISCORD_ALLOW_ALL_USERS: {
|
|
865
|
+
label: 'Allow all Discord users',
|
|
866
|
+
help: 'Development only. When true, anyone can DM the bot without an allowlist.'
|
|
867
|
+
},
|
|
868
|
+
DISCORD_HOME_CHANNEL: {
|
|
869
|
+
label: 'Home channel ID',
|
|
870
|
+
help: 'Channel where the bot sends proactive messages (cron output, reminders).'
|
|
871
|
+
},
|
|
872
|
+
DISCORD_HOME_CHANNEL_NAME: {
|
|
873
|
+
label: 'Home channel name',
|
|
874
|
+
help: 'Display name for the home channel in logs and status output.'
|
|
875
|
+
},
|
|
876
|
+
BLUEBUBBLES_ALLOW_ALL_USERS: {
|
|
877
|
+
label: 'Allow all iMessage users',
|
|
878
|
+
help: 'When true, skip the BlueBubbles allowlist.'
|
|
879
|
+
},
|
|
880
|
+
MATTERMOST_ALLOW_ALL_USERS: { label: 'Allow all Mattermost users' },
|
|
881
|
+
MATTERMOST_HOME_CHANNEL: { label: 'Home channel' },
|
|
882
|
+
QQ_ALLOW_ALL_USERS: { label: 'Allow all QQ users' },
|
|
883
|
+
QQBOT_HOME_CHANNEL: { label: 'QQ home channel', help: 'Default channel or group for cron delivery.' },
|
|
884
|
+
QQBOT_HOME_CHANNEL_NAME: { label: 'QQ home channel name' },
|
|
885
|
+
SLACK_BOT_TOKEN: {
|
|
886
|
+
label: 'Slack bot token',
|
|
887
|
+
help: 'Use the bot token from OAuth & Permissions after installing your Slack app.',
|
|
888
|
+
placeholder: 'Paste Slack bot token'
|
|
889
|
+
},
|
|
890
|
+
SLACK_APP_TOKEN: {
|
|
891
|
+
label: 'Slack app token',
|
|
892
|
+
help: 'Use the app-level token required for Socket Mode.',
|
|
893
|
+
placeholder: 'Paste Slack app token'
|
|
894
|
+
},
|
|
895
|
+
SLACK_ALLOWED_USERS: { label: 'Allowed Slack user IDs', help: 'Recommended. Comma-separated Slack user IDs.' },
|
|
896
|
+
MATTERMOST_URL: { label: 'Server URL', placeholder: 'https://mattermost.example.com' },
|
|
897
|
+
MATTERMOST_TOKEN: { label: 'Bot token' },
|
|
898
|
+
MATTERMOST_ALLOWED_USERS: {
|
|
899
|
+
label: 'Allowed user IDs',
|
|
900
|
+
help: 'Recommended. Comma-separated Mattermost user IDs.'
|
|
901
|
+
},
|
|
902
|
+
MATRIX_HOMESERVER: { label: 'Homeserver URL', placeholder: 'https://matrix.org' },
|
|
903
|
+
MATRIX_ACCESS_TOKEN: { label: 'Access token' },
|
|
904
|
+
MATRIX_USER_ID: { label: 'Bot user ID', placeholder: '@hermes:example.org' },
|
|
905
|
+
MATRIX_ALLOWED_USERS: {
|
|
906
|
+
label: 'Allowed Matrix user IDs',
|
|
907
|
+
help: 'Recommended. Comma-separated user IDs in @user:server format.'
|
|
908
|
+
},
|
|
909
|
+
SIGNAL_HTTP_URL: {
|
|
910
|
+
label: 'Signal bridge URL',
|
|
911
|
+
placeholder: 'http://127.0.0.1:8080',
|
|
912
|
+
help: 'URL of a running signal-cli REST bridge.'
|
|
913
|
+
},
|
|
914
|
+
SIGNAL_ACCOUNT: { label: 'Phone number', help: 'The number registered with your signal-cli bridge.' },
|
|
915
|
+
SIGNAL_ALLOWED_USERS: { label: 'Allowed Signal users', help: 'Recommended. Comma-separated Signal identifiers.' },
|
|
916
|
+
WHATSAPP_ENABLED: {
|
|
917
|
+
label: 'Enable WhatsApp bridge',
|
|
918
|
+
help: 'Set automatically by the toggle below. Leave alone unless you know you need it.'
|
|
919
|
+
},
|
|
920
|
+
WHATSAPP_MODE: { label: 'Bridge mode' },
|
|
921
|
+
WHATSAPP_ALLOWED_USERS: {
|
|
922
|
+
label: 'Allowed WhatsApp users',
|
|
923
|
+
help: 'Recommended. Comma-separated phone numbers or WhatsApp IDs.'
|
|
924
|
+
}
|
|
925
|
+
},
|
|
926
|
+
platformIntro: {}
|
|
927
|
+
},
|
|
928
|
+
|
|
929
|
+
profiles: {
|
|
930
|
+
close: 'Close profiles',
|
|
931
|
+
nameHint: 'Lowercase letters, digits, hyphens, and underscores. Must start with a letter or digit.',
|
|
932
|
+
title: 'Profiles',
|
|
933
|
+
count: count => `${count} ${count === 1 ? 'profile' : 'profiles'}`,
|
|
934
|
+
loading: 'Loading profiles...',
|
|
935
|
+
newProfile: 'New profile',
|
|
936
|
+
allProfiles: 'All profiles',
|
|
937
|
+
showAllProfiles: 'Show all profiles',
|
|
938
|
+
switchToProfile: name => `Switch to ${name}`,
|
|
939
|
+
manageProfiles: 'Manage profiles...',
|
|
940
|
+
actionsFor: name => `Actions for ${name}`,
|
|
941
|
+
color: 'Color...',
|
|
942
|
+
colorFor: name => `Color for ${name}`,
|
|
943
|
+
setColor: color => `Set color ${color}`,
|
|
944
|
+
autoColor: 'Auto',
|
|
945
|
+
noProfiles: 'No profiles yet.',
|
|
946
|
+
selectPrompt: 'Select a profile to view its details.',
|
|
947
|
+
refresh: 'Refresh profiles',
|
|
948
|
+
refreshing: 'Refreshing profiles',
|
|
949
|
+
default: 'default',
|
|
950
|
+
skills: count => `${count} ${count === 1 ? 'skill' : 'skills'}`,
|
|
951
|
+
env: 'env',
|
|
952
|
+
defaultBadge: 'Default',
|
|
953
|
+
rename: 'Rename',
|
|
954
|
+
copySetup: 'Copy setup',
|
|
955
|
+
copying: 'Copying...',
|
|
956
|
+
modelLabel: 'Model',
|
|
957
|
+
skillsLabel: 'Skills',
|
|
958
|
+
notSet: 'Not set',
|
|
959
|
+
soulDesc: 'The system prompt and persona instructions baked into this profile.',
|
|
960
|
+
soulOptional: 'optional',
|
|
961
|
+
soulPlaceholder: mode => `The system prompt / persona for this profile.\nLeave blank to keep the ${mode} default.`,
|
|
962
|
+
soulPlaceholderCloned: 'cloned',
|
|
963
|
+
soulPlaceholderEmpty: 'empty',
|
|
964
|
+
unsavedChanges: 'Unsaved changes',
|
|
965
|
+
loadingSoul: 'Loading SOUL.md...',
|
|
966
|
+
emptySoul: 'Empty SOUL.md — start writing the persona...',
|
|
967
|
+
saving: 'Saving...',
|
|
968
|
+
saveSoul: 'Save SOUL.md',
|
|
969
|
+
deleteTitle: 'Delete profile?',
|
|
970
|
+
deleteDescPrefix: 'This will delete ',
|
|
971
|
+
deleteDescMid: ' and remove its ',
|
|
972
|
+
deleteDescSuffix: ' directory. This cannot be undone.',
|
|
973
|
+
deleting: 'Deleting...',
|
|
974
|
+
createDesc: 'Profiles are independent Hermes environments: separate config, skills, and SOUL.md.',
|
|
975
|
+
nameLabel: 'Name',
|
|
976
|
+
cloneFrom: 'Clone from',
|
|
977
|
+
cloneFromNone: 'None (blank)',
|
|
978
|
+
cloneFromDesc: 'Copies config, skills, and SOUL.md from the selected source profile.',
|
|
979
|
+
cloneFromDefault: 'Clone from default',
|
|
980
|
+
cloneFromDefaultDesc: 'Copy config, skills, and SOUL.md from your default profile.',
|
|
981
|
+
invalidName: hint => `Invalid name. ${hint}`,
|
|
982
|
+
nameRequired: 'Name is required.',
|
|
983
|
+
creating: 'Creating...',
|
|
984
|
+
createAction: 'Create profile',
|
|
985
|
+
renameTitle: 'Rename profile',
|
|
986
|
+
renameDescPrefix: 'Renaming updates the profile directory and any wrapper scripts in ',
|
|
987
|
+
renameDescSuffix: '.',
|
|
988
|
+
newNameLabel: 'New name',
|
|
989
|
+
renaming: 'Renaming...',
|
|
990
|
+
created: 'Profile created',
|
|
991
|
+
renamed: 'Profile renamed',
|
|
992
|
+
deleted: 'Profile deleted',
|
|
993
|
+
setupCopied: 'Setup command copied',
|
|
994
|
+
soulSaved: 'SOUL.md saved',
|
|
995
|
+
failedLoad: 'Failed to load profiles',
|
|
996
|
+
failedDelete: 'Failed to delete profile',
|
|
997
|
+
failedCopy: 'Failed to copy setup command',
|
|
998
|
+
failedLoadSoul: 'Failed to load SOUL.md',
|
|
999
|
+
failedSaveSoul: 'Failed to save SOUL.md',
|
|
1000
|
+
failedCreate: 'Failed to create profile',
|
|
1001
|
+
failedRename: 'Failed to rename profile'
|
|
1002
|
+
},
|
|
1003
|
+
|
|
1004
|
+
cron: {
|
|
1005
|
+
close: 'Close cron',
|
|
1006
|
+
search: 'Search cron jobs...',
|
|
1007
|
+
loading: 'Loading cron jobs...',
|
|
1008
|
+
states: {
|
|
1009
|
+
enabled: 'enabled',
|
|
1010
|
+
scheduled: 'scheduled',
|
|
1011
|
+
running: 'running',
|
|
1012
|
+
paused: 'paused',
|
|
1013
|
+
disabled: 'disabled',
|
|
1014
|
+
error: 'error',
|
|
1015
|
+
completed: 'completed'
|
|
1016
|
+
},
|
|
1017
|
+
deliveryLabels: {
|
|
1018
|
+
local: 'This desktop',
|
|
1019
|
+
telegram: 'Telegram',
|
|
1020
|
+
discord: 'Discord',
|
|
1021
|
+
slack: 'Slack',
|
|
1022
|
+
email: 'Email'
|
|
1023
|
+
},
|
|
1024
|
+
scheduleLabels: {
|
|
1025
|
+
daily: 'Daily',
|
|
1026
|
+
weekdays: 'Weekdays',
|
|
1027
|
+
weekly: 'Weekly',
|
|
1028
|
+
monthly: 'Monthly',
|
|
1029
|
+
hourly: 'Hourly',
|
|
1030
|
+
'every-15-minutes': 'Every 15 minutes',
|
|
1031
|
+
custom: 'Custom'
|
|
1032
|
+
},
|
|
1033
|
+
scheduleHints: {
|
|
1034
|
+
daily: 'Every day at 9:00 AM',
|
|
1035
|
+
weekdays: 'Monday through Friday at 9:00 AM',
|
|
1036
|
+
weekly: 'Every Monday at 9:00 AM',
|
|
1037
|
+
monthly: 'The first day of each month at 9:00 AM',
|
|
1038
|
+
hourly: 'At the top of every hour',
|
|
1039
|
+
'every-15-minutes': 'Every 15 minutes',
|
|
1040
|
+
custom: 'Cron syntax or natural language'
|
|
1041
|
+
},
|
|
1042
|
+
days: {
|
|
1043
|
+
'0': 'Sunday',
|
|
1044
|
+
'1': 'Monday',
|
|
1045
|
+
'2': 'Tuesday',
|
|
1046
|
+
'3': 'Wednesday',
|
|
1047
|
+
'4': 'Thursday',
|
|
1048
|
+
'5': 'Friday',
|
|
1049
|
+
'6': 'Saturday',
|
|
1050
|
+
'7': 'Sunday'
|
|
1051
|
+
},
|
|
1052
|
+
dayFallback: value => `day ${value}`,
|
|
1053
|
+
everyDayAt: time => `Every day at ${time}`,
|
|
1054
|
+
weekdaysAt: time => `Weekdays at ${time}`,
|
|
1055
|
+
everyDayOfWeekAt: (day, time) => `Every ${day} at ${time}`,
|
|
1056
|
+
monthlyOnDayAt: (dayOfMonth, time) => `Monthly on day ${dayOfMonth} at ${time}`,
|
|
1057
|
+
topOfHour: 'At the top of every hour',
|
|
1058
|
+
everyHourAt: minute => `Every hour at :${minute}`,
|
|
1059
|
+
newCron: 'New cron',
|
|
1060
|
+
emptyDescNew:
|
|
1061
|
+
'Schedule a prompt to run on a cron expression. Hermes will run it and deliver results to the destination you pick.',
|
|
1062
|
+
emptyDescSearch: 'Try a broader search query.',
|
|
1063
|
+
emptyTitleNew: 'No scheduled jobs yet',
|
|
1064
|
+
emptyTitleSearch: 'No matches',
|
|
1065
|
+
last: 'Last:',
|
|
1066
|
+
next: 'Next:',
|
|
1067
|
+
noRuns: 'No runs yet',
|
|
1068
|
+
manage: 'Manage',
|
|
1069
|
+
showRuns: 'Show runs',
|
|
1070
|
+
hideRuns: 'Hide runs',
|
|
1071
|
+
runHistory: 'Run history',
|
|
1072
|
+
actionsFor: title => `Actions for ${title}`,
|
|
1073
|
+
actionsTitle: 'Cron job actions',
|
|
1074
|
+
resume: 'Resume cron',
|
|
1075
|
+
pause: 'Pause cron',
|
|
1076
|
+
resumeTitle: 'Resume',
|
|
1077
|
+
pauseTitle: 'Pause',
|
|
1078
|
+
triggerNow: 'Trigger now',
|
|
1079
|
+
edit: 'Edit cron',
|
|
1080
|
+
deleteTitle: 'Delete cron job?',
|
|
1081
|
+
deleteDescPrefix: 'This will remove ',
|
|
1082
|
+
deleteDescSuffix: ' permanently. It will stop firing immediately.',
|
|
1083
|
+
deleting: 'Deleting...',
|
|
1084
|
+
resumed: 'Cron resumed',
|
|
1085
|
+
paused: 'Cron paused',
|
|
1086
|
+
triggered: 'Cron triggered',
|
|
1087
|
+
deleted: 'Cron deleted',
|
|
1088
|
+
created: 'Cron created',
|
|
1089
|
+
updated: 'Cron updated',
|
|
1090
|
+
failedLoad: 'Failed to load cron jobs',
|
|
1091
|
+
failedUpdate: 'Failed to update cron job',
|
|
1092
|
+
failedTrigger: 'Failed to trigger cron job',
|
|
1093
|
+
failedDelete: 'Failed to delete cron job',
|
|
1094
|
+
failedSave: 'Failed to save cron job',
|
|
1095
|
+
editTitle: 'Edit cron job',
|
|
1096
|
+
createTitle: 'New cron job',
|
|
1097
|
+
editDesc: 'Update the schedule, prompt, or delivery target. Changes apply on next run.',
|
|
1098
|
+
createDesc: 'Schedule a prompt to run automatically. Use cron syntax or a natural phrase like "every 15 minutes".',
|
|
1099
|
+
nameLabel: 'Name',
|
|
1100
|
+
namePlaceholder: 'Morning briefing',
|
|
1101
|
+
promptLabel: 'Prompt',
|
|
1102
|
+
promptPlaceholder: 'Summarize my unread Slack threads and email me the top 5...',
|
|
1103
|
+
frequencyLabel: 'Frequency',
|
|
1104
|
+
deliverLabel: 'Deliver to',
|
|
1105
|
+
customScheduleLabel: 'Custom schedule',
|
|
1106
|
+
customPlaceholder: '0 9 * * * or weekdays at 9am',
|
|
1107
|
+
customHint: 'Cron expression, or phrases like "every hour" or "weekdays at 9am".',
|
|
1108
|
+
optional: 'Optional',
|
|
1109
|
+
promptScheduleRequired: 'Prompt and schedule are required.',
|
|
1110
|
+
saveChanges: 'Save changes',
|
|
1111
|
+
createAction: 'Create cron'
|
|
1112
|
+
},
|
|
1113
|
+
|
|
1114
|
+
artifacts: {
|
|
1115
|
+
search: 'Search artifacts...',
|
|
1116
|
+
refresh: 'Refresh artifacts',
|
|
1117
|
+
refreshing: 'Refreshing artifacts',
|
|
1118
|
+
indexing: 'Indexing recent session artifacts',
|
|
1119
|
+
tabAll: 'All',
|
|
1120
|
+
tabImages: 'Images',
|
|
1121
|
+
tabFiles: 'Files',
|
|
1122
|
+
tabLinks: 'Links',
|
|
1123
|
+
noArtifactsTitle: 'No artifacts found',
|
|
1124
|
+
noArtifactsDesc: 'Generated images and file outputs will appear here as sessions produce them.',
|
|
1125
|
+
failedLoad: 'Artifacts failed to load',
|
|
1126
|
+
openFailed: 'Open failed',
|
|
1127
|
+
itemsImage: 'images',
|
|
1128
|
+
itemsLink: 'links',
|
|
1129
|
+
itemsFile: 'files',
|
|
1130
|
+
itemsGeneric: 'items',
|
|
1131
|
+
zero: '0',
|
|
1132
|
+
rangeOf: (start, end, total) => `${start}-${end} of ${total}`,
|
|
1133
|
+
goToPage: (itemLabel, page) => `Go to ${itemLabel} page ${page}`,
|
|
1134
|
+
colTitleLink: 'Link title',
|
|
1135
|
+
colTitleFile: 'Name',
|
|
1136
|
+
colTitleDefault: 'Title / name',
|
|
1137
|
+
colLocationLink: 'URL',
|
|
1138
|
+
colLocationFile: 'Path',
|
|
1139
|
+
colLocationDefault: 'Location',
|
|
1140
|
+
colSession: 'Session',
|
|
1141
|
+
kindImage: 'image',
|
|
1142
|
+
kindFile: 'file',
|
|
1143
|
+
kindLink: 'link',
|
|
1144
|
+
chat: 'Chat',
|
|
1145
|
+
copyUrl: 'Copy URL',
|
|
1146
|
+
copyPath: 'Copy path'
|
|
1147
|
+
},
|
|
1148
|
+
|
|
1149
|
+
sidebar: {
|
|
1150
|
+
nav: {
|
|
1151
|
+
'new-session': 'New session',
|
|
1152
|
+
skills: 'Skills & Tools',
|
|
1153
|
+
messaging: 'Messaging',
|
|
1154
|
+
artifacts: 'Artifacts'
|
|
1155
|
+
},
|
|
1156
|
+
searchAria: 'Search sessions',
|
|
1157
|
+
searchPlaceholder: 'Search sessions…',
|
|
1158
|
+
clearSearch: 'Clear search',
|
|
1159
|
+
noMatch: query => `No sessions match “${query}”.`,
|
|
1160
|
+
results: 'Results',
|
|
1161
|
+
pinned: 'Pinned',
|
|
1162
|
+
sessions: 'Sessions',
|
|
1163
|
+
cronJobs: 'Cron jobs',
|
|
1164
|
+
groupAriaGrouped: 'Show sessions as a single list',
|
|
1165
|
+
groupAriaUngrouped: 'Group sessions by workspace',
|
|
1166
|
+
groupTitleGrouped: 'Ungroup sessions',
|
|
1167
|
+
groupTitleUngrouped: 'Group by workspace',
|
|
1168
|
+
allPinned: 'Everything here is pinned. Unpin a chat to show it in recents.',
|
|
1169
|
+
shiftClickHint: 'Shift-click a chat to pin',
|
|
1170
|
+
noWorkspace: 'No workspace',
|
|
1171
|
+
newSessionIn: label => `New session in ${label}`,
|
|
1172
|
+
reorderWorkspace: label => `Reorder workspace ${label}`,
|
|
1173
|
+
showMoreIn: (count, label) => `Show ${count} more in ${label}`,
|
|
1174
|
+
loading: 'Loading…',
|
|
1175
|
+
loadMore: 'Load more',
|
|
1176
|
+
loadCount: step => `Load ${step} more`,
|
|
1177
|
+
row: {
|
|
1178
|
+
pin: 'Pin',
|
|
1179
|
+
unpin: 'Unpin',
|
|
1180
|
+
copyId: 'Copy ID',
|
|
1181
|
+
export: 'Export',
|
|
1182
|
+
rename: 'Rename',
|
|
1183
|
+
archive: 'Archive',
|
|
1184
|
+
newWindow: 'New window',
|
|
1185
|
+
copyIdFailed: 'Could not copy session ID',
|
|
1186
|
+
actionsFor: title => `Actions for ${title}`,
|
|
1187
|
+
sessionActions: 'Session actions',
|
|
1188
|
+
sessionRunning: 'Session running',
|
|
1189
|
+
needsInput: 'Needs your input',
|
|
1190
|
+
waitingForAnswer: 'Waiting for your answer',
|
|
1191
|
+
handoffOrigin: platform => `Handed off from ${platform}`,
|
|
1192
|
+
renamed: 'Renamed',
|
|
1193
|
+
renameFailed: 'Rename failed',
|
|
1194
|
+
renameTitle: 'Rename session',
|
|
1195
|
+
renameDesc: 'Give this chat a memorable title. Leave empty to clear.',
|
|
1196
|
+
untitledPlaceholder: 'Untitled session',
|
|
1197
|
+
ageNow: 'now',
|
|
1198
|
+
ageDay: 'd',
|
|
1199
|
+
ageHour: 'h',
|
|
1200
|
+
ageMin: 'm'
|
|
1201
|
+
}
|
|
1202
|
+
},
|
|
1203
|
+
|
|
1204
|
+
composer: {
|
|
1205
|
+
message: 'Message',
|
|
1206
|
+
wakingProfile: profile => `Waking up ${profile}…`,
|
|
1207
|
+
placeholderStarting: 'Starting Hermes...',
|
|
1208
|
+
placeholderReconnecting: 'Reconnecting to Hermes…',
|
|
1209
|
+
placeholderFollowUp: 'Send follow-up',
|
|
1210
|
+
newSessionPlaceholders: [
|
|
1211
|
+
'What are we building?',
|
|
1212
|
+
'Give Hermes a task',
|
|
1213
|
+
"What's on your mind?",
|
|
1214
|
+
'Describe what you need',
|
|
1215
|
+
'What should we tackle?',
|
|
1216
|
+
'Ask anything',
|
|
1217
|
+
'Start with a goal'
|
|
1218
|
+
],
|
|
1219
|
+
followUpPlaceholders: [
|
|
1220
|
+
'Send a follow-up',
|
|
1221
|
+
'Add more context',
|
|
1222
|
+
'Refine the request',
|
|
1223
|
+
"What's next?",
|
|
1224
|
+
'Keep it going',
|
|
1225
|
+
'Push it further',
|
|
1226
|
+
'Adjust or continue'
|
|
1227
|
+
],
|
|
1228
|
+
startVoice: 'Start voice conversation',
|
|
1229
|
+
queueMessage: 'Queue message',
|
|
1230
|
+
steer: 'Steer the current run',
|
|
1231
|
+
stop: 'Stop',
|
|
1232
|
+
send: 'Send',
|
|
1233
|
+
speaking: 'Speaking',
|
|
1234
|
+
transcribing: 'Transcribing',
|
|
1235
|
+
thinking: 'Thinking',
|
|
1236
|
+
muted: 'Muted',
|
|
1237
|
+
listening: 'Listening',
|
|
1238
|
+
muteMic: 'Mute microphone',
|
|
1239
|
+
unmuteMic: 'Unmute microphone',
|
|
1240
|
+
stopListening: 'Stop listening and send',
|
|
1241
|
+
stopShort: 'Stop',
|
|
1242
|
+
endConversation: 'End voice conversation',
|
|
1243
|
+
endShort: 'End',
|
|
1244
|
+
stopDictation: 'Stop dictation',
|
|
1245
|
+
transcribingDictation: 'Transcribing dictation',
|
|
1246
|
+
voiceDictation: 'Voice dictation',
|
|
1247
|
+
lookupLoading: 'Looking up…',
|
|
1248
|
+
lookupNoMatches: 'No matches.',
|
|
1249
|
+
lookupTry: 'Try',
|
|
1250
|
+
lookupOr: 'or',
|
|
1251
|
+
commonCommands: 'Common commands',
|
|
1252
|
+
hotkeys: 'Hotkeys',
|
|
1253
|
+
helpFooter: 'opens the full panel · backspace dismisses',
|
|
1254
|
+
commandDescs: {
|
|
1255
|
+
'/help': 'full list of commands + hotkeys',
|
|
1256
|
+
'/clear': 'start a new session',
|
|
1257
|
+
'/resume': 'resume a prior session',
|
|
1258
|
+
'/details': 'control transcript detail level',
|
|
1259
|
+
'/copy': 'copy selection or last assistant message',
|
|
1260
|
+
'/quit': 'exit hermes'
|
|
1261
|
+
},
|
|
1262
|
+
hotkeyDescs: {
|
|
1263
|
+
'composer.mention': 'reference files, folders, urls, git',
|
|
1264
|
+
'composer.slash': 'slash command palette',
|
|
1265
|
+
'composer.help': 'this quick help (delete to dismiss)',
|
|
1266
|
+
'composer.sendNewline': 'send · Shift+Enter for newline',
|
|
1267
|
+
'composer.sendQueued': 'send next queued turn',
|
|
1268
|
+
'keybinds.openPanel': 'all keyboard shortcuts',
|
|
1269
|
+
'composer.cancel': 'close popover · cancel run',
|
|
1270
|
+
'composer.history': 'cycle popover / history'
|
|
1271
|
+
},
|
|
1272
|
+
attachUrlTitle: 'Attach a URL',
|
|
1273
|
+
attachUrlDesc: 'Hermes will fetch the page and include it as context for this turn.',
|
|
1274
|
+
urlPlaceholder: 'https://example.com/post',
|
|
1275
|
+
urlHintPre: 'Include the full URL, e.g. ',
|
|
1276
|
+
attach: 'Attach',
|
|
1277
|
+
queued: count => `${count} Queued`,
|
|
1278
|
+
attachmentOnly: 'Attachment-only turn',
|
|
1279
|
+
emptyTurn: 'Empty turn',
|
|
1280
|
+
attachments: count => `${count} attachment${count === 1 ? '' : 's'}`,
|
|
1281
|
+
editingInComposer: 'Editing in composer',
|
|
1282
|
+
editingQueuedInComposer: 'Editing queued turn in composer',
|
|
1283
|
+
queueEdit: 'Edit',
|
|
1284
|
+
queueSendNext: 'Next',
|
|
1285
|
+
queueSend: 'Send',
|
|
1286
|
+
queueDelete: 'Delete',
|
|
1287
|
+
queueStuckTitle: 'Queued message not sent',
|
|
1288
|
+
queueStuckBody: 'A queued turn kept failing to send. It is still in the queue — try sending it again.',
|
|
1289
|
+
previewUnavailable: 'Preview unavailable',
|
|
1290
|
+
previewLabel: label => `Preview ${label}`,
|
|
1291
|
+
couldNotPreview: label => `Could not preview ${label}`,
|
|
1292
|
+
removeAttachment: label => `Remove ${label}`,
|
|
1293
|
+
dictating: 'Dictating',
|
|
1294
|
+
preparingAudio: 'Preparing audio',
|
|
1295
|
+
speakingResponse: 'Speaking response',
|
|
1296
|
+
readingAloud: 'Reading aloud',
|
|
1297
|
+
themeSuggestions: 'Desktop theme suggestions',
|
|
1298
|
+
noMatchingThemes: 'No matching themes.',
|
|
1299
|
+
themeTryPre: 'Try ',
|
|
1300
|
+
themeTryPost: '.',
|
|
1301
|
+
attachLabel: 'Attach',
|
|
1302
|
+
files: 'Files…',
|
|
1303
|
+
folder: 'Folder…',
|
|
1304
|
+
images: 'Images…',
|
|
1305
|
+
pasteImage: 'Paste image',
|
|
1306
|
+
url: 'URL…',
|
|
1307
|
+
promptSnippets: 'Prompt snippets…',
|
|
1308
|
+
tipPre: 'Tip: type ',
|
|
1309
|
+
tipPost: ' to reference files inline.',
|
|
1310
|
+
snippetsTitle: 'Prompt snippets',
|
|
1311
|
+
snippetsDesc: 'Pick a starter prompt to drop into the composer.',
|
|
1312
|
+
dropFiles: 'Drop files to attach',
|
|
1313
|
+
dropSession: 'Drop to link this chat',
|
|
1314
|
+
snippets: {
|
|
1315
|
+
codeReview: {
|
|
1316
|
+
label: 'Code review',
|
|
1317
|
+
description: 'Audit the current change for regressions, dropped edge cases, and missing tests.',
|
|
1318
|
+
text: 'Please review this for bugs, regressions, and missing tests.'
|
|
1319
|
+
},
|
|
1320
|
+
implementationPlan: {
|
|
1321
|
+
label: 'Implementation plan',
|
|
1322
|
+
description: 'Outline an approach before touching code so the diff stays focused.',
|
|
1323
|
+
text: 'Please make a concise implementation plan before changing code.'
|
|
1324
|
+
},
|
|
1325
|
+
explainThis: {
|
|
1326
|
+
label: 'Explain this',
|
|
1327
|
+
description: 'Walk through how the selected code works and link to the key files.',
|
|
1328
|
+
text: 'Please explain how this works and point me to the key files.'
|
|
1329
|
+
}
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
1332
|
+
|
|
1333
|
+
statusStack: {
|
|
1334
|
+
agents: 'Agents',
|
|
1335
|
+
background: count => `${count} Background`,
|
|
1336
|
+
subagents: count => `${count} Subagent${count === 1 ? '' : 's'}`,
|
|
1337
|
+
todos: (done, total) => `Tasks ${done}/${total}`,
|
|
1338
|
+
running: 'Running',
|
|
1339
|
+
stop: 'Stop',
|
|
1340
|
+
dismiss: 'Dismiss',
|
|
1341
|
+
exit: code => `exit ${code}`
|
|
1342
|
+
},
|
|
1343
|
+
|
|
1344
|
+
updates: {
|
|
1345
|
+
stages: {
|
|
1346
|
+
idle: 'Getting ready…',
|
|
1347
|
+
prepare: 'Getting ready…',
|
|
1348
|
+
fetch: 'Downloading…',
|
|
1349
|
+
pull: 'Almost there…',
|
|
1350
|
+
pydeps: 'Finishing up…',
|
|
1351
|
+
restart: 'Restarting Hermes…',
|
|
1352
|
+
manual: 'Update from your terminal',
|
|
1353
|
+
error: 'Update paused'
|
|
1354
|
+
},
|
|
1355
|
+
checking: 'Looking for updates…',
|
|
1356
|
+
checkFailedTitle: 'Couldn’t check for updates',
|
|
1357
|
+
tryAgain: 'Try again',
|
|
1358
|
+
notAvailableTitle: 'Update not available',
|
|
1359
|
+
unsupportedMessage: 'This version of Hermes can’t update itself from inside the app.',
|
|
1360
|
+
connectionRetry: 'Check your connection and try again.',
|
|
1361
|
+
latestBody: 'You’re running the latest version.',
|
|
1362
|
+
latestBodyBackend: 'The backend is running the latest version.',
|
|
1363
|
+
allSetTitle: 'You’re all set',
|
|
1364
|
+
availableTitle: 'New update available',
|
|
1365
|
+
availableBody: 'A new version of Hermes is ready to install.',
|
|
1366
|
+
availableTitleBackend: 'Backend update available',
|
|
1367
|
+
availableBodyBackend: 'A newer version of the connected Hermes backend is ready to install.',
|
|
1368
|
+
availableBodyNoChangelog: 'A newer version is ready. Release notes aren’t available for this install type.',
|
|
1369
|
+
updateNow: 'Update now',
|
|
1370
|
+
maybeLater: 'Maybe later',
|
|
1371
|
+
moreChanges: count => `+ ${count} more change${count === 1 ? '' : 's'} included.`,
|
|
1372
|
+
manualTitle: 'Update from your terminal',
|
|
1373
|
+
manualBody: 'You installed Hermes from the command line, so updates run there too. Paste this into your terminal:',
|
|
1374
|
+
manualPickedUp: 'Hermes will pick up the new version next time you launch it.',
|
|
1375
|
+
copy: 'Copy',
|
|
1376
|
+
copied: 'Copied',
|
|
1377
|
+
done: 'Done',
|
|
1378
|
+
applyingBody: 'The Hermes updater will take over in its own window and reopen Hermes when it’s done.',
|
|
1379
|
+
applyingBodyBackend:
|
|
1380
|
+
'The remote backend is applying the update and will restart. Hermes reconnects automatically when it’s back.',
|
|
1381
|
+
applyingClose: 'Hermes will close to apply the update.',
|
|
1382
|
+
errorTitle: 'Update didn’t finish',
|
|
1383
|
+
errorBody: 'No worries — nothing was lost. You can try again now.',
|
|
1384
|
+
notNow: 'Not now',
|
|
1385
|
+
applyStatus: {
|
|
1386
|
+
preparing: 'Updating backend…',
|
|
1387
|
+
pulling: 'Backend updating…',
|
|
1388
|
+
restarting: 'Backend restarting to load the update…',
|
|
1389
|
+
notAvailable: 'Update not available for this backend.',
|
|
1390
|
+
failed: 'Backend update failed.',
|
|
1391
|
+
noReturn: 'Backend didn’t come back online. The update may not have completed — check the backend host.'
|
|
1392
|
+
}
|
|
1393
|
+
},
|
|
1394
|
+
|
|
1395
|
+
install: {
|
|
1396
|
+
stageStates: {
|
|
1397
|
+
pending: 'Pending',
|
|
1398
|
+
running: 'Installing',
|
|
1399
|
+
succeeded: 'Done',
|
|
1400
|
+
skipped: 'Skipped',
|
|
1401
|
+
failed: 'Failed'
|
|
1402
|
+
},
|
|
1403
|
+
oneTimeTitle: 'Hermes needs a one-time install',
|
|
1404
|
+
unsupportedDesc: platform =>
|
|
1405
|
+
`Automated first-launch install isn’t available on ${platform} yet. Open Terminal and run the command below, then relaunch this app. Subsequent launches will skip this step.`,
|
|
1406
|
+
installCommand: 'Install command',
|
|
1407
|
+
copyCommand: 'Copy command',
|
|
1408
|
+
viewDocs: 'View install docs',
|
|
1409
|
+
installTo: 'Will install to',
|
|
1410
|
+
retryAfterRun: 'I’ve run it -- retry',
|
|
1411
|
+
failedTitle: 'Installation failed',
|
|
1412
|
+
settingUpTitle: 'Setting up Hermes Agent',
|
|
1413
|
+
finishingTitle: 'Finishing up',
|
|
1414
|
+
failedDesc:
|
|
1415
|
+
'One of the install steps failed. On Windows, this can happen if another Hermes CLI or desktop instance is running. Stop any running Hermes instances, then retry. Check the details below or the desktop log for the full transcript.',
|
|
1416
|
+
activeDesc:
|
|
1417
|
+
'This is a one-time setup. The Hermes installer is downloading dependencies and configuring your machine. Subsequent launches will skip this step.',
|
|
1418
|
+
progress: (completed, total) => `${completed} of ${total} steps complete`,
|
|
1419
|
+
currentStage: stage => ` -- now: ${stage}`,
|
|
1420
|
+
fetchingManifest: 'Fetching installer manifest...',
|
|
1421
|
+
error: 'Error',
|
|
1422
|
+
hideOutput: 'Hide installer output',
|
|
1423
|
+
showOutput: 'Show installer output',
|
|
1424
|
+
lines: count => `${count} line${count === 1 ? '' : 's'}`,
|
|
1425
|
+
noOutput: 'No output yet.',
|
|
1426
|
+
cancelling: 'Cancelling...',
|
|
1427
|
+
cancelInstall: 'Cancel install',
|
|
1428
|
+
transcriptSaved: 'Full transcript saved to',
|
|
1429
|
+
copiedOutput: 'Copied!',
|
|
1430
|
+
copyOutput: 'Copy output',
|
|
1431
|
+
reloadRetry: 'Reload and retry'
|
|
1432
|
+
},
|
|
1433
|
+
|
|
1434
|
+
onboarding: {
|
|
1435
|
+
headerTitle: "Let's get you setup with Hermes Agent",
|
|
1436
|
+
headerDesc: 'Connect a model provider to start chatting. Most options take one click.',
|
|
1437
|
+
preparingInstall: 'Hermes is finishing install. This usually takes under a minute on first run.',
|
|
1438
|
+
starting: 'Starting Hermes…',
|
|
1439
|
+
lookingUpProviders: 'Looking up providers...',
|
|
1440
|
+
collapse: 'Collapse',
|
|
1441
|
+
otherProviders: 'Other providers',
|
|
1442
|
+
haveApiKey: 'I have an API key',
|
|
1443
|
+
chooseLater: "I'll choose a provider later",
|
|
1444
|
+
recommended: 'Recommended',
|
|
1445
|
+
connected: 'Connected',
|
|
1446
|
+
featuredPitch: 'One subscription, 300+ frontier models — the recommended way to run Hermes',
|
|
1447
|
+
openRouterPitch: 'One key, hundreds of models — a solid default',
|
|
1448
|
+
apiKeyOptions: {
|
|
1449
|
+
openrouter: {
|
|
1450
|
+
short: 'one key, many models',
|
|
1451
|
+
description: 'Hosts hundreds of models behind a single key. Good default for new installs.'
|
|
1452
|
+
},
|
|
1453
|
+
openai: { short: 'GPT-class models', description: 'Direct access to OpenAI models.' },
|
|
1454
|
+
gemini: { short: 'Gemini models', description: 'Direct access to Google Gemini models.' },
|
|
1455
|
+
xai: { short: 'Grok models', description: 'Direct access to xAI Grok models.' },
|
|
1456
|
+
local: {
|
|
1457
|
+
short: 'self-hosted',
|
|
1458
|
+
description: 'Point Hermes at a local or self-hosted OpenAI-compatible endpoint (vLLM, llama.cpp, Ollama, etc).'
|
|
1459
|
+
}
|
|
1460
|
+
},
|
|
1461
|
+
backToSignIn: 'Back to sign in',
|
|
1462
|
+
getKey: 'Get a key',
|
|
1463
|
+
replaceCurrent: 'Replace current value',
|
|
1464
|
+
pasteApiKey: 'Paste API key',
|
|
1465
|
+
localApiKeyPlaceholder: 'API key (optional — only if your endpoint requires one)',
|
|
1466
|
+
couldNotSave: 'Could not save credential.',
|
|
1467
|
+
connecting: 'Connecting',
|
|
1468
|
+
update: 'Update',
|
|
1469
|
+
flowSubtitles: {
|
|
1470
|
+
pkce: 'Opens your browser to sign in, then continues here',
|
|
1471
|
+
device_code: 'Opens a verification page in your browser — Hermes connects automatically',
|
|
1472
|
+
loopback: 'Opens your browser to sign in — Hermes connects automatically',
|
|
1473
|
+
external: 'Sign in once in your terminal, then come back to chat'
|
|
1474
|
+
},
|
|
1475
|
+
startingSignIn: provider => `Starting sign-in for ${provider}...`,
|
|
1476
|
+
verifyingCode: provider => `Verifying your code with ${provider}...`,
|
|
1477
|
+
connectedProvider: provider => `${provider} connected`,
|
|
1478
|
+
connectedPicking: provider => `${provider} connected. Picking a default model...`,
|
|
1479
|
+
signInFailed: 'Sign-in failed. Try again.',
|
|
1480
|
+
pickDifferentProvider: 'Pick a different provider',
|
|
1481
|
+
signInWith: provider => `Sign in with ${provider}`,
|
|
1482
|
+
openedBrowser: provider => `We opened ${provider} in your browser.`,
|
|
1483
|
+
authorizeThere: 'Authorize Hermes there.',
|
|
1484
|
+
copyAuthCode: 'Copy the authorization code and paste it below.',
|
|
1485
|
+
pasteAuthCode: 'Paste authorization code',
|
|
1486
|
+
reopenAuthPage: 'Re-open authorization page',
|
|
1487
|
+
autoBrowser: provider =>
|
|
1488
|
+
`We opened ${provider} in your browser. Authorize Hermes there and you'll be connected automatically — nothing to copy or paste.`,
|
|
1489
|
+
reopenSignInPage: 'Re-open sign-in page',
|
|
1490
|
+
waitingAuthorize: 'Waiting for you to authorize...',
|
|
1491
|
+
externalPending: provider =>
|
|
1492
|
+
`${provider} signs in through its own CLI. Run this command in a terminal, then come back and pick "I've signed in":`,
|
|
1493
|
+
signedIn: "I've signed in",
|
|
1494
|
+
deviceCodeOpened: provider => `We opened ${provider} in your browser. Enter this code there:`,
|
|
1495
|
+
reopenVerification: 'Re-open verification page',
|
|
1496
|
+
copy: 'Copy',
|
|
1497
|
+
defaultModel: 'Default model',
|
|
1498
|
+
freeTier: 'Free tier',
|
|
1499
|
+
pro: 'Pro',
|
|
1500
|
+
free: 'Free',
|
|
1501
|
+
price: (input, output) => `${input} in / ${output} out per Mtok`,
|
|
1502
|
+
change: 'Change',
|
|
1503
|
+
startChatting: 'Begin',
|
|
1504
|
+
docs: provider => `${provider} docs`
|
|
1505
|
+
},
|
|
1506
|
+
|
|
1507
|
+
modelPicker: {
|
|
1508
|
+
title: 'Switch model',
|
|
1509
|
+
current: 'current:',
|
|
1510
|
+
unknown: '(unknown)',
|
|
1511
|
+
search: 'Filter providers and models...',
|
|
1512
|
+
noModels: 'No models found.',
|
|
1513
|
+
addProvider: 'Add provider',
|
|
1514
|
+
loadFailed: 'Could not load models',
|
|
1515
|
+
noAuthenticatedProviders: 'No authenticated providers.',
|
|
1516
|
+
pro: 'Pro',
|
|
1517
|
+
proNeedsSubscription: 'Pro models need a paid Nous subscription.',
|
|
1518
|
+
free: 'Free',
|
|
1519
|
+
freeTier: 'Free tier',
|
|
1520
|
+
priceTitle: 'Input / Output price per million tokens'
|
|
1521
|
+
},
|
|
1522
|
+
|
|
1523
|
+
modelVisibility: {
|
|
1524
|
+
title: 'Models',
|
|
1525
|
+
search: 'Search models',
|
|
1526
|
+
noAuthenticatedProviders: 'No authenticated providers.',
|
|
1527
|
+
addProvider: 'Add provider…'
|
|
1528
|
+
},
|
|
1529
|
+
|
|
1530
|
+
shell: {
|
|
1531
|
+
windowControls: 'Window controls',
|
|
1532
|
+
paneControls: 'Pane controls',
|
|
1533
|
+
appControls: 'App controls',
|
|
1534
|
+
modelMenu: {
|
|
1535
|
+
search: 'Search models',
|
|
1536
|
+
noModels: 'No models found',
|
|
1537
|
+
editModels: 'Edit Models…',
|
|
1538
|
+
refreshModels: 'Refresh Models',
|
|
1539
|
+
fast: 'Fast',
|
|
1540
|
+
medium: 'Med'
|
|
1541
|
+
},
|
|
1542
|
+
modelOptions: {
|
|
1543
|
+
noOptions: 'No options for this model',
|
|
1544
|
+
options: 'Options',
|
|
1545
|
+
thinking: 'Thinking',
|
|
1546
|
+
fast: 'Fast',
|
|
1547
|
+
effort: 'Effort',
|
|
1548
|
+
minimal: 'Minimal',
|
|
1549
|
+
low: 'Low',
|
|
1550
|
+
medium: 'Medium',
|
|
1551
|
+
high: 'High',
|
|
1552
|
+
max: 'Max',
|
|
1553
|
+
updateFailed: 'Model option update failed',
|
|
1554
|
+
fastFailed: 'Fast mode update failed'
|
|
1555
|
+
},
|
|
1556
|
+
gatewayMenu: {
|
|
1557
|
+
gateway: 'Gateway',
|
|
1558
|
+
connected: 'Connected',
|
|
1559
|
+
connecting: 'Connecting',
|
|
1560
|
+
offline: 'Offline',
|
|
1561
|
+
inferenceReady: 'Inference ready',
|
|
1562
|
+
inferenceNotReady: 'Inference not ready',
|
|
1563
|
+
checkingInference: 'Checking inference',
|
|
1564
|
+
disconnected: 'Disconnected',
|
|
1565
|
+
openSystem: 'Open system panel',
|
|
1566
|
+
connection: label => `Connection: ${label}`,
|
|
1567
|
+
recentActivity: 'Recent activity',
|
|
1568
|
+
viewAllLogs: 'View all logs →',
|
|
1569
|
+
messagingPlatforms: 'Messaging platforms'
|
|
1570
|
+
},
|
|
1571
|
+
statusbar: {
|
|
1572
|
+
unknown: 'unknown',
|
|
1573
|
+
restart: 'restart',
|
|
1574
|
+
update: 'update',
|
|
1575
|
+
updateInProgress: 'Update in progress',
|
|
1576
|
+
commitsBehind: (count, branch) => `${count} commit${count === 1 ? '' : 's'} behind ${branch}`,
|
|
1577
|
+
desktopVersion: version => `Hermes Desktop v${version}`,
|
|
1578
|
+
backendVersion: version => `Backend v${version}`,
|
|
1579
|
+
clientLabel: version => `client v${version}`,
|
|
1580
|
+
backendLabel: version => `backend v${version}`,
|
|
1581
|
+
commit: sha => `commit ${sha}`,
|
|
1582
|
+
branch: branch => `branch ${branch}`,
|
|
1583
|
+
closeCommandCenter: 'Close Command Center',
|
|
1584
|
+
openCommandCenter: 'Open Command Center',
|
|
1585
|
+
showTerminal: 'Show terminal',
|
|
1586
|
+
hideTerminal: 'Hide terminal',
|
|
1587
|
+
gateway: 'Gateway',
|
|
1588
|
+
gatewayReady: 'ready',
|
|
1589
|
+
gatewayNeedsSetup: 'needs setup',
|
|
1590
|
+
gatewayChecking: 'checking',
|
|
1591
|
+
gatewayConnecting: 'connecting',
|
|
1592
|
+
gatewayOffline: 'offline',
|
|
1593
|
+
gatewayRestarting: 'restarting…',
|
|
1594
|
+
gatewayTitle: 'Hermes inference gateway status',
|
|
1595
|
+
agents: 'Agents',
|
|
1596
|
+
closeAgents: 'Close agents',
|
|
1597
|
+
openAgents: 'Open agents',
|
|
1598
|
+
subagents: count => `${count} subagent${count === 1 ? '' : 's'}`,
|
|
1599
|
+
failed: count => `${count} failed`,
|
|
1600
|
+
running: count => `${count} running`,
|
|
1601
|
+
cron: 'Cron',
|
|
1602
|
+
openCron: 'Open cron jobs',
|
|
1603
|
+
turnRunning: 'Running',
|
|
1604
|
+
currentTurnElapsed: 'Current turn elapsed',
|
|
1605
|
+
contextUsage: 'Context usage',
|
|
1606
|
+
session: 'Session',
|
|
1607
|
+
runtimeSessionElapsed: 'Runtime session elapsed',
|
|
1608
|
+
yoloOn: 'YOLO on — auto-approving dangerous commands. Click to turn off. Shift+click toggles it globally.',
|
|
1609
|
+
yoloOff: 'YOLO off — click to auto-approve dangerous commands. Shift+click toggles it globally.',
|
|
1610
|
+
modelNone: 'none',
|
|
1611
|
+
noModel: 'no model',
|
|
1612
|
+
switchModel: 'Switch model',
|
|
1613
|
+
openModelPicker: 'Open model picker',
|
|
1614
|
+
modelTitle: (provider, model) => `Model · ${provider}: ${model}`,
|
|
1615
|
+
providerModelTitle: (provider, model) => `${provider} · ${model}`
|
|
1616
|
+
}
|
|
1617
|
+
},
|
|
1618
|
+
|
|
1619
|
+
rightSidebar: {
|
|
1620
|
+
aria: 'Right sidebar',
|
|
1621
|
+
panelsAria: 'Right sidebar panels',
|
|
1622
|
+
files: 'File system',
|
|
1623
|
+
terminal: 'Terminal',
|
|
1624
|
+
noFolderSelected: 'No folder selected',
|
|
1625
|
+
changeCwdTitle: 'Change working directory',
|
|
1626
|
+
remotePickerTitle: 'Choose remote folder',
|
|
1627
|
+
remotePickerDescription: 'Browse folders on the connected backend.',
|
|
1628
|
+
remotePickerSelect: 'Select folder',
|
|
1629
|
+
folderTip: cwd => `${cwd} — click to change folder`,
|
|
1630
|
+
openFolder: 'Open folder',
|
|
1631
|
+
refreshTree: 'Refresh tree',
|
|
1632
|
+
collapseAll: 'Collapse all folders',
|
|
1633
|
+
previewUnavailable: 'Preview unavailable',
|
|
1634
|
+
couldNotPreview: path => `Could not preview ${path}`,
|
|
1635
|
+
noProjectTitle: 'No project',
|
|
1636
|
+
noProjectBody: 'Set a working directory from the status bar to browse files.',
|
|
1637
|
+
unreadableTitle: 'Unreadable',
|
|
1638
|
+
unreadableBody: error => `Could not read this folder (${error}).`,
|
|
1639
|
+
emptyTitle: 'Empty',
|
|
1640
|
+
emptyBody: 'This folder is empty.',
|
|
1641
|
+
treeErrorTitle: 'Tree error',
|
|
1642
|
+
treeErrorBody: 'The file tree hit an error rendering this folder.',
|
|
1643
|
+
tryAgain: 'Try again',
|
|
1644
|
+
loadingTree: 'Loading file tree',
|
|
1645
|
+
loadingFiles: 'Loading files',
|
|
1646
|
+
terminalHide: 'Hide terminal',
|
|
1647
|
+
addToChat: 'Add to chat'
|
|
1648
|
+
},
|
|
1649
|
+
|
|
1650
|
+
preview: {
|
|
1651
|
+
tab: 'Preview',
|
|
1652
|
+
closeTab: label => `Close ${label}`,
|
|
1653
|
+
closePane: 'Close preview pane',
|
|
1654
|
+
loading: 'Loading preview',
|
|
1655
|
+
unavailable: 'Preview unavailable',
|
|
1656
|
+
opening: 'Opening...',
|
|
1657
|
+
hide: 'Hide',
|
|
1658
|
+
openPreview: 'Open preview',
|
|
1659
|
+
sourceLineTitle: 'Click to select · shift-click to extend · drag to composer',
|
|
1660
|
+
source: 'SOURCE',
|
|
1661
|
+
renderedPreview: 'PREVIEW',
|
|
1662
|
+
unknownSize: 'unknown size',
|
|
1663
|
+
binaryTitle: 'This looks like a binary file',
|
|
1664
|
+
binaryBody: label => `Previewing ${label} may show unreadable text.`,
|
|
1665
|
+
largeTitle: 'This file is large',
|
|
1666
|
+
largeBody: (label, size) => `${label} is ${size}. Hermes will only show the first 512 KB.`,
|
|
1667
|
+
previewAnyway: 'Preview anyway',
|
|
1668
|
+
truncated: 'Showing first 512 KB.',
|
|
1669
|
+
noInlineTitle: 'No inline preview',
|
|
1670
|
+
noInlineBody: mimeType => `${mimeType || 'This file type'} can still be attached as context.`,
|
|
1671
|
+
console: {
|
|
1672
|
+
deselect: 'Deselect entry',
|
|
1673
|
+
select: 'Select entry',
|
|
1674
|
+
copyFailed: 'Could not copy console output',
|
|
1675
|
+
copyEntry: 'Copy this entry',
|
|
1676
|
+
sendEntry: 'Send this entry to chat',
|
|
1677
|
+
messages: count => `${count} console messages`,
|
|
1678
|
+
resize: 'Resize preview console',
|
|
1679
|
+
title: 'Preview Console',
|
|
1680
|
+
selected: count => `${count} selected`,
|
|
1681
|
+
sendToChat: 'Send to chat',
|
|
1682
|
+
copySelected: 'Copy selected to clipboard',
|
|
1683
|
+
copyAll: 'Copy all to clipboard',
|
|
1684
|
+
copy: 'Copy',
|
|
1685
|
+
clear: 'Clear',
|
|
1686
|
+
empty: 'No console messages yet.',
|
|
1687
|
+
promptHeader: 'Preview console:',
|
|
1688
|
+
sentTitle: 'Sent to chat',
|
|
1689
|
+
sentMessage: count => `${count} log entr${count === 1 ? 'y' : 'ies'} added to composer`
|
|
1690
|
+
},
|
|
1691
|
+
web: {
|
|
1692
|
+
appFailedToBoot: 'Preview app failed to boot',
|
|
1693
|
+
serverNotFound: 'Server not found',
|
|
1694
|
+
failedToLoad: 'Preview failed to load',
|
|
1695
|
+
tryAgain: 'Try again',
|
|
1696
|
+
restarting: 'Hermes is restarting...',
|
|
1697
|
+
askRestart: 'Ask Hermes to restart the server',
|
|
1698
|
+
lookingRestart: taskId => `Hermes is looking for a preview server to restart (${taskId})`,
|
|
1699
|
+
restartingTitle: 'Restarting preview server',
|
|
1700
|
+
restartingMessage: 'Hermes is working in the background. Watch the preview console for progress.',
|
|
1701
|
+
startRestartFailed: message => `Could not start server restart: ${message}`,
|
|
1702
|
+
restartFailed: 'Server restart failed',
|
|
1703
|
+
hideConsole: 'Hide preview console',
|
|
1704
|
+
showConsole: 'Show preview console',
|
|
1705
|
+
hideDevTools: 'Hide preview DevTools',
|
|
1706
|
+
openDevTools: 'Open preview DevTools',
|
|
1707
|
+
finishedRestarting: message => `Hermes finished restarting the preview server${message ? `: ${message}` : ''}`,
|
|
1708
|
+
failedRestarting: message => `Server restart failed: ${message}`,
|
|
1709
|
+
unknownError: 'unknown error',
|
|
1710
|
+
restartedTitle: 'Preview server restarted',
|
|
1711
|
+
reloadingNow: 'Reloading the preview now.',
|
|
1712
|
+
restartFailedTitle: 'Preview restart failed',
|
|
1713
|
+
restartFailedMessage: 'Hermes could not restart the server.',
|
|
1714
|
+
stillWorking:
|
|
1715
|
+
'Hermes is still working, but no restart result has arrived yet. The server command may be running in the foreground.',
|
|
1716
|
+
workspaceReloading: 'Workspace changed, reloading preview',
|
|
1717
|
+
fileChanged: url => `File changed, reloading preview: ${url}`,
|
|
1718
|
+
filesChanged: (count, url) => `${count} file changes, reloading preview: ${url}`,
|
|
1719
|
+
watchFailed: message => `Could not watch preview file: ${message}`,
|
|
1720
|
+
moduleMimeDescription:
|
|
1721
|
+
'Module scripts are being served with the wrong MIME type. This usually means a static file server is serving a Vite/React app instead of the project dev server.',
|
|
1722
|
+
loadFailedConsole: (code, message) => `Load failed${code ? ` (${code})` : ''}: ${message}`,
|
|
1723
|
+
unreachableDescription: 'The preview page could not be reached.',
|
|
1724
|
+
openTarget: url => `Open ${url}`,
|
|
1725
|
+
fallbackTitle: 'Preview'
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
|
|
1729
|
+
assistant: {
|
|
1730
|
+
thread: {
|
|
1731
|
+
loadingSession: 'Loading session',
|
|
1732
|
+
showEarlier: 'Show earlier messages',
|
|
1733
|
+
loadingResponse: 'Hermes is loading a response',
|
|
1734
|
+
thinking: 'Thinking',
|
|
1735
|
+
today: time => `Today, ${time}`,
|
|
1736
|
+
yesterday: time => `Yesterday, ${time}`,
|
|
1737
|
+
copy: 'Copy',
|
|
1738
|
+
refresh: 'Refresh',
|
|
1739
|
+
moreActions: 'More actions',
|
|
1740
|
+
branchNewChat: 'Branch in new chat',
|
|
1741
|
+
dismissError: 'Dismiss error',
|
|
1742
|
+
readAloudFailed: 'Read aloud failed',
|
|
1743
|
+
preparingAudio: 'Preparing audio...',
|
|
1744
|
+
stopReading: 'Stop reading',
|
|
1745
|
+
readAloud: 'Read aloud',
|
|
1746
|
+
editMessage: 'Edit message',
|
|
1747
|
+
scrollToBottom: 'Scroll to bottom',
|
|
1748
|
+
stop: 'Stop',
|
|
1749
|
+
restorePrevious: 'Restore previous checkpoint',
|
|
1750
|
+
restoreCheckpoint: 'Restore checkpoint',
|
|
1751
|
+
restoreFromHere: 'Restore checkpoint — rerun from this prompt',
|
|
1752
|
+
restoreTitle: 'Restore to this checkpoint?',
|
|
1753
|
+
restoreBody: 'Everything after this prompt is removed from the conversation, and the prompt runs again from here.',
|
|
1754
|
+
restoreConfirm: 'Restore & rerun',
|
|
1755
|
+
restoreNext: 'Restore next checkpoint',
|
|
1756
|
+
goForward: 'Go forward',
|
|
1757
|
+
sendEdited: 'Send edited message',
|
|
1758
|
+
attachingFile: 'Attaching…'
|
|
1759
|
+
},
|
|
1760
|
+
approval: {
|
|
1761
|
+
gatewayDisconnected: 'Hermes gateway is not connected',
|
|
1762
|
+
sendFailed: 'Could not send approval response',
|
|
1763
|
+
run: 'Run',
|
|
1764
|
+
command: 'Command',
|
|
1765
|
+
moreOptions: 'More approval options',
|
|
1766
|
+
allowSession: 'Allow this session',
|
|
1767
|
+
alwaysAllowMenu: 'Always allow…',
|
|
1768
|
+
jumpToApproval: 'Approval needed',
|
|
1769
|
+
reject: 'Reject',
|
|
1770
|
+
alwaysTitle: 'Always allow this command?',
|
|
1771
|
+
alwaysDescription: pattern =>
|
|
1772
|
+
`This adds the “${pattern}” pattern to your permanent allowlist (~/.hermes/config.yaml). Hermes won’t ask again for commands like this — in this session or any future one.`,
|
|
1773
|
+
alwaysAllow: 'Always allow'
|
|
1774
|
+
},
|
|
1775
|
+
clarify: {
|
|
1776
|
+
notReady: 'Clarify request is not ready yet',
|
|
1777
|
+
gatewayDisconnected: 'Hermes gateway is not connected',
|
|
1778
|
+
sendFailed: 'Could not send clarify response',
|
|
1779
|
+
loadingQuestion: 'Loading question…',
|
|
1780
|
+
other: 'Other (type your answer)',
|
|
1781
|
+
placeholder: 'Type your answer…',
|
|
1782
|
+
shortcutSuffix: ' to send',
|
|
1783
|
+
back: 'Back',
|
|
1784
|
+
skip: 'Skip',
|
|
1785
|
+
send: 'Send'
|
|
1786
|
+
},
|
|
1787
|
+
tool: {
|
|
1788
|
+
code: 'Code',
|
|
1789
|
+
copyCode: 'Copy code',
|
|
1790
|
+
renderingImage: 'Rendering image',
|
|
1791
|
+
copyOutput: 'Copy output',
|
|
1792
|
+
copyCommand: 'Copy command',
|
|
1793
|
+
copyContent: 'Copy content',
|
|
1794
|
+
copyUrl: 'Copy URL',
|
|
1795
|
+
copyResults: 'Copy results',
|
|
1796
|
+
copyQuery: 'Copy query',
|
|
1797
|
+
copyFile: 'Copy file',
|
|
1798
|
+
copyPath: 'Copy path',
|
|
1799
|
+
outputAlt: 'Tool output',
|
|
1800
|
+
rawResponse: 'Raw response',
|
|
1801
|
+
copyActivity: 'Copy activity',
|
|
1802
|
+
recoveredOne: 'Recovered after 1 failed step',
|
|
1803
|
+
recoveredMany: count => `Recovered after ${count} failed steps`,
|
|
1804
|
+
failedOne: '1 step failed',
|
|
1805
|
+
failedMany: count => `${count} steps failed`,
|
|
1806
|
+
statusRunning: 'Running',
|
|
1807
|
+
statusError: 'Error',
|
|
1808
|
+
statusRecovered: 'Recovered',
|
|
1809
|
+
statusDone: 'Done'
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
|
|
1813
|
+
prompts: {
|
|
1814
|
+
gatewayDisconnected: 'Hermes gateway is not connected',
|
|
1815
|
+
sudoSendFailed: 'Could not send sudo password',
|
|
1816
|
+
secretSendFailed: 'Could not send secret',
|
|
1817
|
+
sudoTitle: 'Administrator password',
|
|
1818
|
+
sudoDesc: 'Hermes needs your sudo password to run a privileged command. It is sent only to your local agent.',
|
|
1819
|
+
sudoPlaceholder: 'sudo password',
|
|
1820
|
+
secretTitle: 'Secret required',
|
|
1821
|
+
secretDesc: 'Hermes needs a credential to continue.',
|
|
1822
|
+
secretPlaceholder: 'secret value'
|
|
1823
|
+
},
|
|
1824
|
+
|
|
1825
|
+
desktop: {
|
|
1826
|
+
audioReadFailed: 'Could not read recorded audio',
|
|
1827
|
+
sessionUnavailable: 'Session unavailable',
|
|
1828
|
+
createSessionFailed: 'Could not create a new session',
|
|
1829
|
+
promptFailed: 'Prompt failed',
|
|
1830
|
+
providerCredentialRequired: 'Add a provider credential before sending your first message.',
|
|
1831
|
+
emptySlashCommand: 'empty slash command',
|
|
1832
|
+
desktopCommands: 'Desktop commands',
|
|
1833
|
+
skillCommandsAvailable: count => `${count} skill commands available.`,
|
|
1834
|
+
warningLine: message => `warning: ${message}`,
|
|
1835
|
+
yoloArmed: 'YOLO armed for this chat',
|
|
1836
|
+
yoloOff: 'YOLO off',
|
|
1837
|
+
yoloSystem: active => `YOLO ${active ? 'on' : 'off'} for this session`,
|
|
1838
|
+
yoloTitle: 'YOLO',
|
|
1839
|
+
yoloToggleFailed: 'Could not toggle YOLO',
|
|
1840
|
+
profileStatus: current =>
|
|
1841
|
+
`Profile: ${current}. Use /profile <name> or the "New session" picker to start a chat in another profile.`,
|
|
1842
|
+
unknownProfile: 'Unknown profile',
|
|
1843
|
+
noProfileNamed: (target, available) => `No profile named "${target}". Available: ${available}`,
|
|
1844
|
+
newChatsProfile: name => `New chats will use profile ${name}.`,
|
|
1845
|
+
setProfileFailed: 'Failed to set profile',
|
|
1846
|
+
sttDisabled: 'Speech-to-text is disabled in settings.',
|
|
1847
|
+
stopFailed: 'Stop failed',
|
|
1848
|
+
regenerateFailed: 'Regenerate failed',
|
|
1849
|
+
editFailed: 'Edit failed',
|
|
1850
|
+
resumeFailed: 'Resume failed',
|
|
1851
|
+
resumeStrandedTitle: "Couldn't load this session",
|
|
1852
|
+
resumeStrandedBody: 'The connection to this session failed and automatic retries gave up. Check that the gateway is running, then try again.',
|
|
1853
|
+
resumeRetry: 'Retry',
|
|
1854
|
+
nothingToBranch: 'Nothing to branch',
|
|
1855
|
+
branchNeedsChat: 'Start or resume a chat before branching.',
|
|
1856
|
+
sessionBusy: 'Session busy',
|
|
1857
|
+
branchStopCurrent: 'Stop the current turn before branching this chat.',
|
|
1858
|
+
branchNoText: 'This message has no text to branch from.',
|
|
1859
|
+
branchTitle: 'Branch',
|
|
1860
|
+
branchFailed: 'Branch failed',
|
|
1861
|
+
deleteFailed: 'Delete failed',
|
|
1862
|
+
archived: 'Archived',
|
|
1863
|
+
archiveFailed: 'Archive failed',
|
|
1864
|
+
cwdChangeFailed: 'Working directory change failed',
|
|
1865
|
+
cwdStagedTitle: 'Working directory staged',
|
|
1866
|
+
cwdStagedMessage: 'Restart the desktop backend to apply cwd changes to this active session.',
|
|
1867
|
+
modelSwitchFailed: 'Model switch failed',
|
|
1868
|
+
sessionExported: 'Session exported',
|
|
1869
|
+
sessionExportFailed: 'Could not export session',
|
|
1870
|
+
imageSaved: 'Image saved',
|
|
1871
|
+
downloadStarted: 'Download started',
|
|
1872
|
+
restartToUseSaveImage: 'Restart Hermes Desktop to use Save Image.',
|
|
1873
|
+
restartToSaveImages: 'Restart Hermes Desktop to save images',
|
|
1874
|
+
imageDownloadFailed: 'Image download failed',
|
|
1875
|
+
openImage: 'Open image',
|
|
1876
|
+
downloadImage: 'Download image',
|
|
1877
|
+
savingImage: 'Saving image',
|
|
1878
|
+
imagePreviewFailed: 'Image preview failed',
|
|
1879
|
+
imageAttach: 'Image attach',
|
|
1880
|
+
imageWriteFailed: 'Failed to write image to disk.',
|
|
1881
|
+
imageAttachFailed: 'Image attach failed',
|
|
1882
|
+
attachImages: 'Attach images',
|
|
1883
|
+
clipboard: 'Clipboard',
|
|
1884
|
+
noClipboardImage: 'No image found in clipboard',
|
|
1885
|
+
clipboardPasteFailed: 'Clipboard paste failed',
|
|
1886
|
+
dropFiles: 'Drop files',
|
|
1887
|
+
handoff: {
|
|
1888
|
+
pickPlatform: 'Choose a destination',
|
|
1889
|
+
success: platform => `Handed off to ${platform}. Resume here anytime.`,
|
|
1890
|
+
systemNote: platform => `↻ Handed off to ${platform} — resume here anytime.`,
|
|
1891
|
+
failed: error => `Handoff failed: ${error}`,
|
|
1892
|
+
timedOut: 'Timed out waiting for the gateway. Is `hermes gateway` running?'
|
|
1893
|
+
}
|
|
1894
|
+
},
|
|
1895
|
+
|
|
1896
|
+
errors: {
|
|
1897
|
+
genericFailure: 'Something went wrong',
|
|
1898
|
+
boundaryTitle: 'Something broke in the interface',
|
|
1899
|
+
boundaryDesc: 'The view hit an unexpected error. Your chats and settings are safe.',
|
|
1900
|
+
reloadWindow: 'Reload window',
|
|
1901
|
+
openLogs: 'Open logs'
|
|
1902
|
+
},
|
|
1903
|
+
|
|
1904
|
+
ui: {
|
|
1905
|
+
search: {
|
|
1906
|
+
clear: 'Clear search'
|
|
1907
|
+
},
|
|
1908
|
+
pagination: {
|
|
1909
|
+
label: 'pagination',
|
|
1910
|
+
previous: 'Prev',
|
|
1911
|
+
previousAria: 'Go to previous page',
|
|
1912
|
+
next: 'Next',
|
|
1913
|
+
nextAria: 'Go to next page'
|
|
1914
|
+
},
|
|
1915
|
+
sidebar: {
|
|
1916
|
+
title: 'Sidebar',
|
|
1917
|
+
description: 'Displays the mobile sidebar.',
|
|
1918
|
+
toggle: 'Toggle Sidebar'
|
|
1919
|
+
}
|
|
1920
|
+
}
|
|
1921
|
+
}
|