From 6d183a0c50f013db8f50df31d42c295b085381ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Pierzcha=C5=82a?= Date: Tue, 30 Jun 2026 07:29:32 +0200 Subject: [PATCH] fix: point MCP output-schemas at kernel/device after the kernel move MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #941 (MCP outputSchema) and #940 (errors/redaction/device -> src/kernel) merged in an order where #940's import codemod never saw #941's new command-output-schemas.ts, so it still imports '../utils/device.ts' — which no longer exists. tsc/build on main is red. Repoint the import at '../kernel/device.ts'. The only stale reference on main. --- src/mcp/command-output-schemas.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mcp/command-output-schemas.ts b/src/mcp/command-output-schemas.ts index cc81ad949..3507a895c 100644 --- a/src/mcp/command-output-schemas.ts +++ b/src/mcp/command-output-schemas.ts @@ -4,7 +4,7 @@ import { booleanSchema, looseObjectSchema, stringSchema } from '../commands/comm import { BACK_MODES } from '../core/back-mode.ts'; import { DEVICE_ROTATIONS } from '../core/device-rotation.ts'; import { SESSION_SURFACES } from '../core/session-surface.ts'; -import { DEVICE_TARGETS, PLATFORMS } from '../utils/device.ts'; +import { DEVICE_TARGETS, PLATFORMS } from '../kernel/device.ts'; /** * Hand-authored registry of per-command MCP `outputSchema`s, keyed by the daemon