From b5a70b226b6cb8b21ded3505bf106e344ebc191c Mon Sep 17 00:00:00 2001 From: chahinebrini Date: Thu, 25 Jun 2026 12:37:51 +0200 Subject: [PATCH] fix(remoteClient): correct IndexEntry import path --- src/cli/remoteClient.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli/remoteClient.ts b/src/cli/remoteClient.ts index ada1426..e39720c 100644 --- a/src/cli/remoteClient.ts +++ b/src/cli/remoteClient.ts @@ -1,4 +1,5 @@ -import type { Task, Handoff, Decision, Memory, IndexEntry } from '../core/schema.js'; +import type { Task, Handoff, Decision, Memory } from '../core/schema.js'; +import type { IndexEntry } from '../core/index.js'; export class RemoteError extends Error { constructor(public status: number, message: string) {