Web dashboard for Hermes Agent — multi-platform AI chat, session management, scheduled jobs, usage analytics
This report presents the forensic synthetic code analysis of EKKOLearnAI/hermes-studio, a TypeScript project with 9,100 GitHub stars. SynthScan v2.0 examined 325,182 lines of code across 1141 source files, recording 1033 pattern matches distributed across 13 syntactic categories. The overall adjusted score of 4.5 places this repository in the Likely human-written band.
The scanner applied 160+ deterministic lexical heuristics, multi-line block detectors, abstract syntax tree depth profilers, and a cross-file Jaccard similarity matrix to construct a statistically normalised synthetic code estimate. All matches are individually weighted by severity coefficient and contextual multiplier before summation, and the resulting headline score is temporally discounted to account for the repository's development history relative to the commercial emergence of large language model coding tooling (November 2022 onward).
This chart maps the temporal evolution of the adjusted synthetic code score across successive scan runs. An upward trajectory indicates ongoing incorporation of AI-generated code or expanding LLM-assisted scaffolding; a stable or declining trajectory may reflect active human refactoring, code removal, or the adoption of stricter authorship policies. The dashed secondary line (right axis) independently tracks total raw pattern hit count, which can diverge from the normalised score when codebase size changes significantly between scans.
Classifies detected patterns by their diagnostic confidence and structural impact. CRITICAL patterns (coefficient 10) represent definitive synthetic signatures — hallucinated imports, explicit LLM attribution metadata — virtually never produced by human authors. HIGH (5) indicates strong structural tells such as cross-file repetition or cross-linguistic idioms. MEDIUM (2) covers recognisable conversational padding and AI-specific vocabulary. LOW (1) captures subtle indicators like tautological comments and generic boilerplate that require density to carry independent signal.
This horizontal bar chart decomposes the repository's raw synthetic code score by top-level directory, allowing you to pinpoint precisely which modules or components carry the highest AI authorship density. Directories with disproportionately high scores relative to their size warrant targeted manual review: concentrated AI signatures often trace back to mass-generated configuration layers, auto-ported test suites, LLM-scaffolded boilerplate classes, or entire subsystems authored under heavy copilot assistance. Use this view to prioritise your human code-review effort.
The scanner identified 1033 distinct pattern matches across 13 syntactic categories. Each entry below represents a discrete location in the source code where the engine recorded a statistically significant AI authorship indicator. Expand any category row to inspect the individual file paths, line numbers, code snippets, and the lexical context (CODE, COMMENT, or STRING) in which each match was detected.
Reading the findings table: The Severity column indicates the diagnostic confidence level (CRITICAL / HIGH / MEDIUM / LOW). The Context column identifies whether the match occurred inside executable code, an inline comment, or a string literal — comment-context matches receive a ×1.5 weight because LLMs systematically over-annotate. The ⚡ bolt icon marks clustered matches: three or more patterns within a 10-line window, each receiving an additional ×1.5 density multiplier as dense clusters constitute far stronger evidence of synthetic authorship than isolated hits.
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/desktop/runtime-paths.test.ts | 50 | function createRuntimeWithoutManifest(root: string) { | CODE |
| LOW | tests/server/agent-bridge-profile-env.test.ts | 140 | async def fake_create_subprocess_exec(*args, **kwargs): | CODE |
| LOW | tests/server/agent-bridge-profile-env.test.ts | 144 | async def fake_create_subprocess_shell(*args, **kwargs): | CODE |
| LOW⚡ | tests/server/agent-bridge-profile-env.test.ts | 637 | def reset_current_session_key(token): | CODE |
| LOW⚡ | tests/server/agent-bridge-profile-env.test.ts | 639 | def unregister_gateway_notify(session_key): | CODE |
| LOW | tests/server/health-controller.test.ts | 78 | async function loadHealthControllerWithoutInjectedVersion(options: Omit<LoadHealthControllerOptions, 'injectedVersion'> | CODE |
| LOW | tests/server/health-controller.test.ts | 82 | async function loadHealthControllerWithInjectedVersion(version: string) { | CODE |
| LOW | tests/server/group-chat-workspace-diff.test.ts | 82 | function expectWorkspaceChangeDeleted(changeId: string) { | CODE |
| LOW | tests/server/group-chat-test-helpers.ts | 56 | export async function createTestGroupChatServer(): Promise<{ | CODE |
| LOW | tests/server/system-info.test.ts | 8 | async function loadSystemInfoWithInjectedVersion(version?: string) { | CODE |
| LOW | tests/server/agent-bridge-python-concurrency.test.ts | 51 | def register_task_env_overrides(task_id, overrides): | CODE |
| LOW | tests/server/agent-bridge-python-concurrency.test.ts | 92 | def reset_current_session_key(token): | CODE |
| LOW | tests/server/agent-bridge-python-concurrency.test.ts | 101 | def unregister_gateway_notify(session_key): | CODE |
| LOW | tests/server/agent-bridge-python-concurrency.test.ts | 1343 | def _shutdown_all_mcp_servers(self): | CODE |
| LOW | tests/server/model-visibility-controller.test.ts | 146 | function sourceAwareProviderModels( | CODE |
| LOW | tests/ekko-agent/runtime.test.ts | 56 | function emptyStreamingWithCreateFallback(response: ModelResponse): ModelClient { | CODE |
| LOW | tests/client/use-speech-tts.test.ts | 37 | function installSpeechSynthesisMock() { | CODE |
| LOW | tests/client/i18n-coverage.test.ts | 55 | function collectLiteralTranslationKeys(): string[] { | CODE |
| LOW | tests/client/stt-settings-ui.test.ts | 509 | async function importVoiceSettingsComponent() { | CODE |
| LOW | packages/desktop/src/main/runtime-version.ts | 8 | export function hermesAgentVersionFromRuntimeTag(tag?: string | null): string | null { | CODE |
| LOW | packages/desktop/src/main/runtime-version.ts | 15 | export function runtimeManifestMatchesHermesAgentVersion( | CODE |
| LOW | packages/desktop/src/main/runtime-version.ts | 26 | export function compareHermesAgentVersions(left?: string | null, right?: string | null): number | null { | CODE |
| LOW | packages/desktop/src/main/hermes-cli-invocation.ts | 6 | export function resolveDesktopHermesCliInvocation( | CODE |
| LOW | packages/desktop/src/main/updater-helpers.ts | 3 | export function isWindowsUpdaterLockError(err: unknown): boolean { | CODE |
| LOW | packages/desktop/src/main/webui-server.ts | 89 | function createAgentBridgeStartupTracker(): { | CODE |
| LOW | packages/desktop/src/main/updater.ts | 33 | async function checkForUpdatesWithFallback(): Promise<void> { | CODE |
| LOW | packages/desktop/src/main/updater.ts | 69 | async function clearPendingUpdateDirectories(): Promise<void> { | CODE |
| LOW | packages/desktop/src/main/updater.ts | 86 | async function recoverFailedPendingUpdate(err: unknown): Promise<void> { | CODE |
| LOW | packages/desktop/src/main/updater.ts | 97 | export async function stopOtherWindowsAppInstances(execPath = process.execPath, currentPid = process.pid): Promise<void> | CODE |
| LOW | packages/desktop/src/main/updater.ts | 150 | async function quitAndInstallDownloadedUpdate(): Promise<void> { | CODE |
| LOW | packages/desktop/src/main/updater.ts | 155 | async function promptInstallDownloadedUpdate(info: UpdateInfo): Promise<void> { | CODE |
| LOW | packages/desktop/src/main/paths.ts | 55 | function readRuntimeManifestVersion(runtimeDir: string): string | null { | CODE |
| LOW | packages/desktop/src/main/paths.ts | 72 | function installedRuntimeDirectories(): Array<{ directory: string; version: string }> { | CODE |
| LOW | packages/desktop/src/main/paths.ts | 109 | export function clearActiveWebUiDirectory(expectedDirectory?: string): void { | CODE |
| LOW | packages/desktop/src/main/paths.ts | 127 | function cleanupLegacyWebUiVersions(): void { | CODE |
| LOW | packages/desktop/src/main/runtime-manager.ts | 128 | function packagedRuntimeReleaseMetadata(): PackagedRuntimeRelease | null { | CODE |
| LOW | packages/desktop/src/main/runtime-manager.ts | 149 | function packagedRuntimeReleaseTag(): string | null { | CODE |
| LOW | packages/desktop/src/main/runtime-manager.ts | 155 | export function cachedRuntimeNeedsPackagedReleaseUpdate(): boolean { | CODE |
| LOW | packages/desktop/src/main/runtime-manager.ts | 245 | function readCachedRuntimeManifest(root: string): RuntimeManifest | null { | CODE |
| LOW | packages/desktop/src/main/runtime-manager.ts | 264 | export function writeActiveRuntimeVersion(runtimeRoot = desktopRuntimeDir()): void { | CODE |
| LOW | packages/desktop/src/main/runtime-paths.ts | 11 | export function resolveRuntimeResourceDir( | CODE |
| LOW | packages/desktop/src/main/cli-shim.ts | 85 | function windowsRuntimePlatformKey(archName: string): string { | CODE |
| LOW | packages/desktop/src/main/cli-shim.ts | 419 | export async function installHermesStudioCliShim(options: CliShimInstallOptions = {}): Promise<CliShimInstallResult> { | CODE |
| LOW | packages/desktop/src/main/cli-shim.ts | 453 | export async function installHermesStudioMcpShim(options: McpShimInstallOptions = {}): Promise<CliShimInstallResult> { | CODE |
| LOW | packages/server/src/security.ts | 83 | export function shouldRejectUpgradeOrigin(req: IncomingMessage, corsOrigins = ''): boolean { | CODE |
| LOW | packages/server/src/index.ts | 123 | function registerDesktopShutdownRoute(app: Koa): void { | CODE |
| LOW | packages/server/src/index.ts | 177 | async function startRuntimeServicesBeforeListen(): Promise<void> { | CODE |
| LOW | packages/server/src/index.ts | 198 | function startRuntimeServicesAfterListen(): void { | CODE |
| LOW | packages/server/src/middleware/static-compression.ts | 38 | export function isCompressibleContentType(contentType: string): boolean { | CODE |
| LOW | packages/server/src/middleware/static-compression.ts | 76 | export function selectStaticCompressionEncoding( | CODE |
| LOW | packages/server/src/middleware/static-compression.ts | 148 | export function createStaticCompressionMiddleware(options: StaticCompressionOptions = {}): Middleware { | CODE |
| LOW | packages/server/src/middleware/user-auth.ts | 122 | async function allowServerTokenForAgentEndpoint(ctx: Context, token: string): Promise<boolean> { | CODE |
| LOW | packages/server/src/lib/llm-json.ts | 217 | export function parseAnthropicContentArray(content: string): Array<{ | CODE |
| LOW | packages/server/src/lib/tool-result-context.ts | 14 | export function truncateToolResultForContext(content: string): string { | CODE |
| LOW | packages/server/src/lib/context-compressor/index.ts | 186 | function truncateTextToTokenBudget(text: string, tokenBudget: number): string { | CODE |
| LOW | …es/server/src/db/hermes/workspace-run-changes-store.ts | 223 | export function listWorkspaceRunChangesForSession(sessionId: string): WorkspaceRunChangeSummary[] { | CODE |
| LOW | …es/server/src/db/hermes/workspace-run-changes-store.ts | 248 | export function getWorkspaceRunChangeFile( | CODE |
| LOW | …es/server/src/db/hermes/workspace-run-changes-store.ts | 263 | export function deleteWorkspaceRunChangesForSession(sessionId: string): void { | CODE |
| LOW | …es/server/src/db/hermes/workspace-run-changes-store.ts | 285 | export function deleteWorkspaceRunChangesForRoom(db: any, roomId: string, beforeTimestamp?: number): void { | CODE |
| LOW | …es/server/src/db/hermes/workspace-run-changes-store.ts | 303 | export function deleteWorkspaceRunChangesByChangeIds(db: any, changeIds: string[]): void { | CODE |
| 672 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | tests/server/mcp-controller.test.ts | 3 | // ── Mocks ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/mcp-controller.test.ts | 28 | // ── Helpers ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/mcp-controller.test.ts | 84 | // ── Tests ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/bridge-mcp-action.test.ts | 3 | // ── Mocks ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/bridge-mcp-action.test.ts | 16 | // ── Tests ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/context-engine.test.ts | 12 | // ─── Helpers ───────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/context-engine.test.ts | 37 | // ─── SummaryCache ───────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/context-engine.test.ts | 90 | // ─── Prompts ────────────────────────────────────────────────── | COMMENT |
| MEDIUM | tests/server/context-engine.test.ts | 154 | // ─── ContextEngine.buildContext ──────────────────────────────── | COMMENT |
| MEDIUM | packages/website/src/styles/global.scss | 79 | // ─── Scroll reveal animations ──────────────────────────── | COMMENT |
| MEDIUM | packages/website/src/styles/global.scss | 97 | // ─── Keyframes ──────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/website/src/views/DocsView.vue | 70 | // ─── Mobile doc tabs ──────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/lib/context-compressor/index.ts | 29 | // ─── Types ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/lib/context-compressor/index.ts | 107 | // ─── Token counting ───────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/lib/context-compressor/index.ts | 217 | // ─── Prompts ──────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/lib/context-compressor/index.ts | 342 | // ─── Pre-cleaning ─────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/lib/context-compressor/index.ts | 482 | // ─── LLM Summarization ────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/lib/context-compressor/index.ts | 560 | // ─── Main Compressor ──────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 52 | // ─── Shell detection ──────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 93 | // ─── Session types ────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 109 | // ─── Helpers ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 140 | // ─── WebSocket server setup ───────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 193 | // ─── PTY output → WebSocket ────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 225 | // ─── Message handler ──────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 333 | // ─── Cleanup ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/routes/hermes/terminal.ts | 350 | // ─── Auto-create first session ────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/hermes-cli.ts | 555 | // ─── Profile management ────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/hermes-kanban.ts | 26 | // ─── Types ────────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/hermes-kanban.ts | 171 | // ─── CLI wrappers ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | …server/src/services/hermes/group-chat/agent-clients.ts | 26 | // ─── Types ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | …server/src/services/hermes/group-chat/agent-clients.ts | 156 | // ─── Agent Client (single connection) ───────────────────────── | COMMENT |
| MEDIUM | …server/src/services/hermes/group-chat/agent-clients.ts | 572 | // ─── Hermes Agent Bridge Integration ─────────────────────── | COMMENT |
| MEDIUM | …server/src/services/hermes/group-chat/agent-clients.ts | 1182 | // ─── AgentClients (roomId -> agents) ────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 19 | // ─── Types ──────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 298 | // ─── Rooms ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 448 | // ─── Messages ───────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 677 | // ─── Room Agents ────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 709 | // ─── Context Snapshots ────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 740 | // ─── Room Members ────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 851 | // ─── ChatRoom (in-memory, for online members) ───────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 904 | // ─── GroupChat Server ──────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 1074 | // ─── Restore Agents ───────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 1114 | // ─── Auth ─────────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 1133 | // ─── Connection ───────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 1171 | // ─── Handlers ─────────────────────────────────────────────── | COMMENT |
| MEDIUM | packages/server/src/services/hermes/group-chat/index.ts | 1661 | // ─── Helpers ──────────────────────────────────────────────── | COMMENT |
| MEDIUM | …ages/server/src/services/hermes/agent-bridge/client.ts | 653 | // ───── MCP Management ───── | COMMENT |
| MEDIUM | …c/services/hermes/agent-bridge/python/bridge_broker.py | 392 | # ───── MCP Management ───── | COMMENT |
| MEDIUM⚡ | …c/services/hermes/agent-bridge/python/bridge_server.py | 230 | # ───── MCP Management (forwarded from broker) ───── | COMMENT |
| MEDIUM⚡ | …c/services/hermes/agent-bridge/python/bridge_server.py | 236 | # ───── MCP Management Methods (for BridgeServer worker process) ───── | COMMENT |
| MEDIUM | …c/services/hermes/agent-bridge/python/bridge_server.py | 317 | # ───── MCP sub-handlers ───── | COMMENT |
| MEDIUM | …erver/src/services/hermes/context-engine/compressor.ts | 150 | // ── Path A: Snapshot exists — incremental ──────────── | COMMENT |
| MEDIUM | …erver/src/services/hermes/context-engine/compressor.ts | 294 | // ── Path B: No snapshot — full context ─────────────── | COMMENT |
| MEDIUM | …erver/src/services/hermes/context-engine/compressor.ts | 444 | // ─── Private ───────────────────────────────────────────── | COMMENT |
| MEDIUM | …es/server/src/services/hermes/context-engine/prompt.ts | 1 | // ─── Agent Identity Instructions ──────────────────────────── | COMMENT |
| MEDIUM | …es/server/src/services/hermes/context-engine/prompt.ts | 76 | // ─── Summarization Prompts ───────────────────────────────── | COMMENT |
| MEDIUM | …ges/server/src/services/hermes/context-engine/types.ts | 3 | // ─── Message Types ────────────────────────────────────────── | COMMENT |
| MEDIUM | …ges/server/src/services/hermes/context-engine/types.ts | 20 | // ─── Compression Config ──────────────────────────────────── | COMMENT |
| MEDIUM | …ges/server/src/services/hermes/context-engine/types.ts | 43 | // ─── Compression Output ──────────────────────────────────── | COMMENT |
| MEDIUM⚡ | …ges/server/src/services/hermes/context-engine/types.ts | 59 | // ─── Context Snapshot (persisted in SQLite) ──────────────── | COMMENT |
| 63 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 87 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 208 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 285 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 337 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 380 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 425 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 492 | return None | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 505 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 568 | return None | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 586 | print(json.dumps({ | CODE |
| HIGH⚡ | tests/server/agent-bridge-profile-env.test.ts | 634 | return None | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 674 | return None | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 691 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-profile-env.test.ts | 742 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-usage-hook.test.ts | 115 | print(json.dumps({"callback_count": len(manager._hooks["post_api_request"]), "events": run.events})) | CODE |
| HIGH | tests/server/agent-bridge-mcp-tools-filter.test.ts | 91 | print(json.dumps({ | CODE |
| HIGH | tests/server/agent-bridge-worker-endpoint.test.ts | 59 | print(json.dumps({"endpoint": endpoint, "port": port})) | CODE |
| HIGH | tests/server/agent-bridge-worker-endpoint.test.ts | 103 | print(json.dumps({"endpoint": endpoint, "port": port})) | CODE |
| HIGH | tests/server/agent-bridge-python-concurrency.test.ts | 209 | return True | CODE |
| HIGH | tests/server/agent-bridge-python-concurrency.test.ts | 211 | return False | CODE |
| HIGH | tests/server/agent-bridge-python-concurrency.test.ts | 1165 | return None | CODE |
| HIGH | tests/server/agent-bridge-python-concurrency.test.ts | 1367 | return None | CODE |
| HIGH | tests/server/agent-bridge-learn-command.test.ts | 87 | print(json.dumps(pool.dispatch_command("session-1", "/learn from docs", "default"))) | CODE |
| HIGH | tests/server/agent-bridge-learn-command.test.ts | 107 | print(json.dumps(pool.dispatch_command("session-1", "/learn from docs", "default"))) | CODE |
| HIGH | packages/server/src/services/hermes/write-gate.ts | 69 | elif subsystem == "skills": | CODE |
| HIGH⚡ | packages/server/src/services/hermes/write-gate.ts | 117 | elif action_name == "delete": | CODE |
| HIGH⚡ | packages/server/src/services/hermes/write-gate.ts | 138 | elif action_name == "patch": | CODE |
| HIGH⚡ | packages/server/src/services/hermes/write-gate.ts | 148 | elif action_name == "write_file": | CODE |
| HIGH⚡ | packages/server/src/services/hermes/write-gate.ts | 150 | elif action_name == "remove_file": | CODE |
| HIGH | packages/server/src/services/hermes/write-gate.ts | 187 | elif action in {"approve", "reject"}: | CODE |
| HIGH | packages/server/src/services/hermes/write-gate.ts | 201 | print(json.dumps({"output": output}, ensure_ascii=False)) | CODE |
| HIGH | packages/server/src/services/hermes/plugins.ts | 76 | print(json.dumps({ | CODE |
| HIGH | packages/server/src/services/hermes/plugins.ts | 144 | return None | CODE |
| HIGH⚡ | packages/server/src/services/hermes/plugins.ts | 227 | elif manifest.kind == "exclusive": | CODE |
| HIGH⚡ | packages/server/src/services/hermes/plugins.ts | 230 | elif manifest.kind == "model-provider": | CODE |
| HIGH⚡ | packages/server/src/services/hermes/plugins.ts | 233 | elif manifest.source == "bundled" and manifest.kind in ("backend", "platform"): | CODE |
| HIGH⚡ | packages/server/src/services/hermes/plugins.ts | 236 | elif enabled_match: | CODE |
| HIGH | packages/server/src/services/hermes/plugins.ts | 259 | print(json.dumps({ | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW⚡ | packages/server/src/services/hermes/write-gate.ts | 111 | except Exception: | CODE |
| LOW⚡ | packages/server/src/services/hermes/write-gate.ts | 123 | except Exception: | CODE |
| LOW⚡ | packages/server/src/services/hermes/write-gate.ts | 133 | except Exception: | CODE |
| LOW | packages/server/src/services/hermes/plugins.ts | 75 | except Exception as exc: | CODE |
| LOW | packages/server/src/services/hermes/plugins.ts | 91 | except Exception as exc: | CODE |
| LOW | packages/server/src/services/hermes/plugins.ts | 115 | except Exception as exc: | CODE |
| LOW | packages/server/src/services/hermes/plugins.ts | 136 | except Exception as exc: | CODE |
| MEDIUM | packages/server/src/services/hermes/plugins.ts | 88 | def safe_scan(label, fn): | CODE |
| MEDIUM | packages/server/src/services/hermes/plugins.ts | 100 | def read_manifest_list(plugin_path, *keys): | CODE |
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 137 | except Exception: | CODE |
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 151 | except Exception as exc: | CODE |
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 267 | except Exception: | CODE |
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 312 | except Exception as exc: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 324 | except Exception: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 364 | except Exception: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 384 | except Exception: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 414 | except Exception as exc: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 421 | except Exception as exc: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 469 | except Exception as exc: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 475 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 83 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 92 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 99 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 105 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 218 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 225 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 691 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 705 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 731 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 738 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 816 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 821 | except Exception: | CODE |
| LOW⚡ | …/services/hermes/agent-bridge/python/bridge_runtime.py | 832 | except Exception as exc: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 167 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 243 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 383 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 459 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 471 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 513 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 525 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 536 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 544 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 767 | except Exception: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 858 | except Exception as exc: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 890 | except Exception as exc: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 904 | except Exception: | CODE |
| LOW⚡ | …c/services/hermes/agent-bridge/python/bridge_server.py | 245 | except Exception: | CODE |
| LOW⚡ | …c/services/hermes/agent-bridge/python/bridge_server.py | 256 | except Exception as e: | CODE |
| LOW⚡ | …c/services/hermes/agent-bridge/python/bridge_server.py | 266 | except Exception as e: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 357 | except Exception: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 385 | except Exception: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 438 | except Exception as e: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 512 | except Exception as e: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 559 | except Exception as e: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 645 | except Exception as exc: | CODE |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 654 | except Exception as exc: | CODE |
| MEDIUM | …c/services/hermes/agent-bridge/python/bridge_server.py | 272 | def _shutdown_all_mcp_servers(self) -> int: | CODE |
| MEDIUM | …src/services/hermes/agent-bridge/python/bridge_pool.py | 67 | def _clear_session_workspace_cwd() -> None: | CODE |
| MEDIUM | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1638 | def _goal_max_turns_from_config(self) -> int: | CODE |
| LOW⚡ | …src/services/hermes/agent-bridge/python/bridge_pool.py | 60 | except Exception: | CODE |
| 27 more matches not shown… | ||||
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 97 | CODE | |
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 104 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 194 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 445 | CODE | |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 48 | CODE | |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 634 | CODE | |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 794 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 39 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 339 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 517 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 620 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 189 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1051 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1236 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1528 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | tests/client/skills-view.test.ts | 50 | props: ['value', 'placeholder', 'size', 'clearable'], | CODE |
| LOW | tests/client/kanban-view.test.ts | 121 | template: '<input class="n-input-stub" :placeholder="placeholder" :value="value" @input="$emit(\'update:value\', $ev | CODE |
| LOW | tests/client/stt-settings-ui.test.ts | 322 | :placeholder="placeholder" | CODE |
| LOW | tests/client/stt-settings-ui.test.ts | 330 | :placeholder="placeholder" | CODE |
| LOW⚡ | tests/client/plugins-view.test.ts | 45 | props: ['value', 'placeholder'], | CODE |
| LOW⚡ | tests/client/plugins-view.test.ts | 47 | template: '<input :value="value" :placeholder="placeholder" @input="$emit(\'update:value\', $event.target.value)" /> | CODE |
| LOW⚡ | tests/client/plugins-view.test.ts | 50 | props: ['value', 'options', 'placeholder'], | CODE |
| LOW | …client/src/components/hermes/files/FileRenameModal.vue | 86 | :placeholder="placeholder" | CODE |
| LOW | packages/client/src/views/hermes/McpManagerView.vue | 576 | :placeholder="placeholder" | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …ervices/hermes/agent-bridge/python/bridge_transport.py | 1 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/hermes_bridge.py | 2 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/hermes_bridge.py | 5 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/hermes_bridge.py | 7 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_broker.py | 1 | CODE | |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 1 | CODE | |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 15 | CODE | |
| LOW | …c/services/hermes/agent-bridge/python/bridge_server.py | 1 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 4 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 16 | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | packages/desktop/src/main/webui-server.ts | 381 | // reason as above — default ipc:// unix sockets in /tmp get killed. | COMMENT |
| LOW | packages/esp32-c3/v1/src/main.cpp | 1 | #include <Arduino.h> | COMMENT |
| LOW | packages/esp32-c3/v1/src/main.cpp | 21 | #define HERMES_MCU_FIRMWARE_MANIFEST_PATH "/api/hermes/mcu/firmware/v1/manifest" | COMMENT |
| LOW | packages/esp32-c3/v1/src/main.cpp | 41 | #ifndef HERMES_PIN_I2S_BCK | COMMENT |
| LOW | packages/esp32-c3/v2/src/main.cpp | 1 | #include <Arduino.h> | COMMENT |
| LOW | packages/esp32-c3/v2/src/main.cpp | 21 | #define HERMES_MCU_FIRMWARE_MANIFEST_PATH "/api/hermes/mcu/firmware/v2/manifest" | COMMENT |
| LOW | packages/esp32-c3/v2/src/main.cpp | 41 | #ifndef HERMES_PIN_I2S_BCK | COMMENT |
| LOW | packages/client/src/stores/hermes/chat.ts | 1041 | console.error('Failed to load sessions:', err) | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | packages/server/src/db/hermes/session-store.ts | 468 | // Step 1: Find matching sessions | COMMENT |
| LOW | packages/server/src/db/hermes/session-store.ts | 489 | // Step 2: For each session, find first matching message id + snippet | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | packages/server/src/db/hermes/session-store.ts | 468 | // Step 1: Find matching sessions | COMMENT |
| LOW | packages/server/src/db/hermes/session-store.ts | 489 | // Step 2: For each session, find first matching message id + snippet | COMMENT |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| MEDIUM | package-lock.json | 9213 | "resolved": "https://registry.npmjs.org/robust-predicates/-/robust-predicates-3.0.3.tgz", | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …c/services/hermes/agent-bridge/python/hermes_bridge.py | 175 | def _set_path_env(agent_root: str | None, hermes_home: str | None) -> None: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 476 | def _set_path_env(agent_root: str | None = None, hermes_home: str | None = None) -> None: | CODE |
| LOW | …/services/hermes/agent-bridge/python/bridge_runtime.py | 600 | def _set_worker_profile_env(profile: str | None) -> None: | CODE |
| Severity | File | Line | Snippet | Context |
|---|---|---|---|---|
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1188 | CODE | |
| LOW | …src/services/hermes/agent-bridge/python/bridge_pool.py | 1236 | CODE |