import { CompatibilityOptions } from "./types.cjs"; import { DomainMcpAllowlist, PluginEntry } from "@agimon-ai/doompi-config/domains"; import { AgentProfile } from "@agimon-ai/doompi-config/profiles"; //#region src/cli/commands/compat/context.d.ts export interface CompatibilityContext { options: CompatibilityOptions; environment: NodeJS.ProcessEnv; plugins: PluginEntry[]; profile?: AgentProfile; personaFile?: string; mcpAllowlist?: DomainMcpAllowlist; mcpConfigPath: string; proxyConfigPath: string; selectedLayers: string[]; hookGroups: string[]; sharedSkills: boolean; cleanup(): Promise; } /** Resolves only the resources shared by Pi and compatibility frontends. */ export declare function buildCompatibilityContext(options: CompatibilityOptions): Promise; //#endregion //# sourceMappingURL=context.d.cts.map