Skip to content

Commit e3fc4e5

Browse files
chore(cli): drop dead planner interfaces, fix format drift
Co-authored-by: Alfonso [Magic Context] <288211368+alfonso-magic-context@users.noreply.github.com>
1 parent 6e4e1b1 commit e3fc4e5

2 files changed

Lines changed: 3 additions & 25 deletions

File tree

packages/cli/src/commands/doctor-opencode.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,9 @@ export async function runDoctor(
692692
if (deadKey in mcConfig) {
693693
delete mcConfig[deadKey];
694694
mcChanged = true;
695-
log.success(`Removed deprecated ${deadKey} (replaced by tiered emergency drop)`);
695+
log.success(
696+
`Removed deprecated ${deadKey} (replaced by tiered emergency drop)`,
697+
);
696698
fixed++;
697699
}
698700
}

packages/cli/src/commands/migrate.ts

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -644,30 +644,6 @@ interface CopyMagicContextStateResult {
644644
lastCompartmentEndPiEntryId?: string;
645645
}
646646

647-
interface PlannedCompartmentRow {
648-
sequence: number;
649-
start_message: number;
650-
end_message: number;
651-
start_message_id: string;
652-
end_message_id: string;
653-
title: string;
654-
content: string;
655-
p1: string | null;
656-
p2: string | null;
657-
p3: string | null;
658-
p4: string | null;
659-
importance: number | null;
660-
episode_type: string | null;
661-
legacy: number;
662-
}
663-
664-
interface PlannedFactRow {
665-
category: string;
666-
content: string;
667-
created_at: number;
668-
updated_at: number;
669-
}
670-
671647
/**
672648
* The remapped state to copy, plus a committer that performs all INSERTs
673649
* inside a single transaction. The plan is computed without writing so the

0 commit comments

Comments
 (0)