/** * PromptContext factory for the unified adapter. * * When `AGENT_CAPABILITIES_JSON` is set, the context is derived from the * proxy capabilities advertised by hooks-adapter. Otherwise a sensible * default context is returned. */ import type { PromptContext } from "../../prompts/types"; /** * Create a PromptContext for the unified adapter. * * 1. If AGENT_CAPABILITIES_JSON is set, derives context from the proxy. * 2. Otherwise returns a minimal default context. */ export declare function createUnifiedContext(overrides?: Partial): PromptContext; //# sourceMappingURL=promptContext.d.ts.map