Reorganize file structure: core/, utils/, modes/interactive/components/, modes/interactive/theme/

This commit is contained in:
Mario Zechner 2025-12-09 00:51:33 +01:00
parent 00982705f2
commit 83a6c26969
56 changed files with 133 additions and 128 deletions

View file

@ -12,7 +12,7 @@ import {
findCutPoint,
getLastAssistantUsage,
shouldCompact,
} from "../src/compaction.js";
} from "../src/core/compaction.js";
import {
type CompactionEntry,
createSummaryMessage,
@ -20,7 +20,7 @@ import {
parseSessionEntries,
type SessionEntry,
type SessionMessageEntry,
} from "../src/session-manager.js";
} from "../src/core/session-manager.js";
// ============================================================================
// Test fixtures

View file

@ -1,5 +1,5 @@
import { describe, expect, test } from "vitest";
import { fuzzyFilter, fuzzyMatch } from "../src/fuzzy.js";
import { fuzzyFilter, fuzzyMatch } from "../src/utils/fuzzy.js";
describe("fuzzyMatch", () => {
test("empty query matches everything with score 0", () => {

View file

@ -6,8 +6,8 @@ import * as readline from "node:readline";
import { fileURLToPath } from "node:url";
import type { AgentEvent } from "@mariozechner/pi-agent-core";
import { afterEach, beforeEach, describe, expect, test } from "vitest";
import type { BashExecutionMessage } from "../src/messages.js";
import type { CompactionEntry } from "../src/session-manager.js";
import type { BashExecutionMessage } from "../src/core/messages.js";
import type { CompactionEntry } from "../src/core/session-manager.js";
const __dirname = dirname(fileURLToPath(import.meta.url));

View file

@ -1,4 +1,4 @@
import { initTheme, theme } from "../src/theme/theme.js";
import { initTheme, theme } from "../src/modes/interactive/theme/theme.js";
// Initialize with dark theme explicitly
process.env.COLORTERM = "truecolor";

View file

@ -2,13 +2,13 @@ import { mkdirSync, rmSync, writeFileSync } from "fs";
import { tmpdir } from "os";
import { join } from "path";
import { afterEach, beforeEach, describe, expect, it } from "vitest";
import { bashTool } from "../src/tools/bash.js";
import { editTool } from "../src/tools/edit.js";
import { findTool } from "../src/tools/find.js";
import { grepTool } from "../src/tools/grep.js";
import { lsTool } from "../src/tools/ls.js";
import { readTool } from "../src/tools/read.js";
import { writeTool } from "../src/tools/write.js";
import { bashTool } from "../src/core/tools/bash.js";
import { editTool } from "../src/core/tools/edit.js";
import { findTool } from "../src/core/tools/find.js";
import { grepTool } from "../src/core/tools/grep.js";
import { lsTool } from "../src/core/tools/ls.js";
import { readTool } from "../src/core/tools/read.js";
import { writeTool } from "../src/core/tools/write.js";
// Helper to extract text from content blocks
function getTextOutput(result: any): string {