Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
55 changes: 37 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/__tests__/generated/frame-manager.bench.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import { bench, describe } from 'vitest';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import Database from 'better-sqlite3';
import { join } from 'path';
import { mkdtempSync, rmSync } from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/generated/frame-manager.generated.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import { describe, it, expect, beforeEach, afterEach } from 'vitest';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import Database from 'better-sqlite3';
import { join } from 'path';
import { mkdtempSync, rmSync } from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/integration/fixtures/test-data-generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Creates realistic test data for integration testing
*/

import type { Frame, Event } from '../../../core/context/frame-manager.js';
import type { Frame, Event } from '../../../core/context/index.js';

export interface TestFrameOptions {
count?: number;
Expand Down
2 changes: 1 addition & 1 deletion src/__tests__/integration/helpers/test-environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*/

import { SQLiteAdapter, SQLiteConfig } from '../../../core/database/sqlite-adapter.js';
import { FrameManager } from '../../../core/context/frame-manager.js';
import { FrameManager } from '../../../core/context/index.js';
import { SharedContextLayer } from '../../../core/context/shared-context-layer.js';
import { ContextBridge } from '../../../core/context/context-bridge.js';
import { ContextRetriever } from '../../../core/retrieval/context-retriever.js';
Expand Down
2 changes: 1 addition & 1 deletion src/agents/core/agent-task-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
TaskPriority,
} from '../../features/tasks/linear-task-manager.js';
import { logger } from '../../core/monitoring/logger.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import { TaskError, ErrorCode } from '../../core/errors/index.js';

export interface AgentTaskSession {
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/clear.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as path from 'path';
import Database from 'better-sqlite3';
import { existsSync } from 'fs';
import { ClearSurvival } from '../../core/session/clear-survival.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import { HandoffGenerator } from '../../core/session/handoff-generator.js';
import { sessionManager } from '../../core/session/session-manager.js';
import { getEnv, getOptionalEnv } from '../../utils/env.js';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Command } from 'commander';
import Database from 'better-sqlite3';
import { join } from 'path';
import { existsSync } from 'fs';
import { FrameManager, FrameType } from '../../core/context/frame-manager.js';
import { FrameManager, FrameType } from '../../core/context/index.js';
import { createContextRehydrateCommand } from './context-rehydrate.js';

// Type-safe environment variable access
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import chalk from 'chalk';
import Table from 'cli-table3';
import { SessionManager } from '../../core/session/session-manager.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import Database from 'better-sqlite3';
import { join } from 'path';
import { existsSync } from 'fs';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/discovery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Database from 'better-sqlite3';
import { join } from 'path';
import { existsSync } from 'fs';
import chalk from 'chalk';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import { LLMContextRetrieval } from '../../core/retrieval/index.js';
import { DiscoveryHandlers } from '../../integrations/mcp/handlers/discovery-handlers.js';

Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/handoff.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
import { join } from 'path';
import Database from 'better-sqlite3';
import { z } from 'zod';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import { LinearTaskManager } from '../../features/tasks/linear-task-manager.js';
import { logger } from '../../core/monitoring/logger.js';
import { EnhancedHandoffGenerator } from '../../core/session/enhanced-handoff.js';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Command } from 'commander';
import chalk from 'chalk';
import ora from 'ora';
import { SessionMonitor } from '../../core/monitoring/session-monitor.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import Database from 'better-sqlite3';
// getProjectRoot function will be defined below
import * as fs from 'fs/promises';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/quality.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
PostTaskConfig,
QualityGateResult,
} from '../../integrations/claude-code/post-task-hooks.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import Database from 'better-sqlite3';
// getProjectRoot function will be defined below
import * as fs from 'fs/promises';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/skills.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
} from '../../skills/unified-rlm-orchestrator.js';
import { DualStackManager } from '../../core/context/dual-stack-manager.js';
import { FrameHandoffManager } from '../../core/context/frame-handoff-manager.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import { ContextRetriever } from '../../core/retrieval/context-retriever.js';
import { SQLiteAdapter } from '../../core/database/sqlite-adapter.js';
import { LinearTaskManager } from '../../features/tasks/linear-task-manager.js';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/workflow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import chalk from 'chalk';
import * as path from 'path';
import Database from 'better-sqlite3';
import { existsSync } from 'fs';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import { workflowTemplates } from '../../core/frame/workflow-templates.js';
import { sessionManager } from '../../core/session/session-manager.js';
import { getEnv, getOptionalEnv } from '../../utils/env.js';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/worktree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import { Command } from 'commander';
import { WorktreeManager } from '../../core/worktree/worktree-manager.js';
import { ProjectManager } from '../../core/projects/project-manager.js';
import { FrameManager } from '../../core/context/frame-manager.js';
import { FrameManager } from '../../core/context/index.js';
import chalk from 'chalk';
import Table from 'cli-table3';
import { join } from 'path';
Expand Down
2 changes: 1 addition & 1 deletion src/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ initializeTracing();

import { program } from 'commander';
import { logger } from '../core/monitoring/logger.js';
import { FrameManager } from '../core/context/frame-manager.js';
import { FrameManager } from '../core/context/index.js';
import { sessionManager, FrameQueryMode } from '../core/session/index.js';
import { sharedContextLayer } from '../core/context/shared-context-layer.js';
import { UpdateChecker } from '../core/utils/update-checker.js';
Expand Down
3 changes: 1 addition & 2 deletions src/core/context/__tests__/context-bridge.test.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { describe, it, expect, beforeEach, afterEach, vi } from 'vitest';
import { ContextBridge, contextBridge } from '../context-bridge.js';
import { FrameManager } from '../frame-manager.js';
import { FrameManager, type Frame } from '../index.js';
import { sharedContextLayer } from '../shared-context-layer.js';
import { sessionManager } from '../../session/session-manager.js';
import type { Frame } from '../frame-manager.js';

vi.mock('../shared-context-layer.js');
vi.mock('../../session/session-manager.js');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import { describe, it, expect, beforeEach, afterEach } from 'vitest';
import { DualStackManager } from '../dual-stack-manager.js';
import { FrameManager } from '../frame-manager.js';
import { FrameManager } from '../index.js';
import { SQLiteAdapter } from '../../database/sqlite-adapter.js';
import * as fs from 'fs';
import * as path from 'path';
Expand Down
Loading
Loading