- CompactionEntry<T> and CompactionResult<T> now have optional details?: T - appendCompaction() accepts optional details parameter - Hooks can return compaction.details to store custom data - Enables structured compaction with ArtifactIndex (see #314) - Fix CompactionResult export location (now from compaction.ts) - Update plan with remaining compaction refactor items
38 lines
853 B
TypeScript
38 lines
853 B
TypeScript
/**
|
|
* Core modules shared between all run modes.
|
|
*/
|
|
|
|
export {
|
|
AgentSession,
|
|
type AgentSessionConfig,
|
|
type AgentSessionEvent,
|
|
type AgentSessionEventListener,
|
|
type ModelCycleResult,
|
|
type PromptOptions,
|
|
type SessionStats,
|
|
} from "./agent-session.js";
|
|
export { type BashExecutorOptions, type BashResult, executeBash } from "./bash-executor.js";
|
|
export type { CompactionResult } from "./compaction.js";
|
|
export {
|
|
type CustomAgentTool,
|
|
type CustomToolFactory,
|
|
type CustomToolsLoadResult,
|
|
discoverAndLoadCustomTools,
|
|
type ExecResult,
|
|
type LoadedCustomTool,
|
|
loadCustomTools,
|
|
type RenderResultOptions,
|
|
type ToolAPI,
|
|
type ToolUIContext,
|
|
} from "./custom-tools/index.js";
|
|
export {
|
|
type HookAPI,
|
|
type HookError,
|
|
type HookEvent,
|
|
type HookEventContext,
|
|
type HookFactory,
|
|
HookRunner,
|
|
type HookUIContext,
|
|
loadHooks,
|
|
} from "./hooks/index.js";
|