/** * Build a markdown section describing the platform context in which the * agent is running. Rendered into the system prompt alongside resource and environment sections. */ import type { AgentContextConfig } from "@skaile/workspaces/core"; /** * Build a markdown section describing the platform context in which the * agent is running. Rendered into the system prompt alongside resource * and environment sections. * * @param context - Platform context configuration (platform, multi_user, session_model) * @returns Markdown section string, or undefined when no context is configured * @docLink packages/runner/dev-guide#flow-execution-turn-based-model */ export declare function buildContextSection(context: AgentContextConfig | undefined): string | undefined; //# sourceMappingURL=context.d.ts.map