/** The fenced-block language Ken wraps every recommended GG Coder prompt in. * The webview special-cases ```prompt blocks into a "Send to GG Coder" button. */ export declare const KEN_PROMPT_FENCE = "prompt"; /** * Build Ken Kai's system prompt. No tool/work sections of the GG Coder coding * prompt — Ken is an advisor, not a coding agent. His read-only tools (read, * grep, find, ls, source_path, web_fetch, web_search, screenshot, kencode-search) * are listed by the session's own Tools section; this prompt teaches him how to * think and how to format what he hands back. */ export declare function buildKenSystemPrompt(cwd: string): Promise; /** * Build Autopilot Ken's system prompt — a separate, non-chatty mode of the same * Ken. He never talks to the user here; he auto-reviews GG Coder's work and * replies with one of four machine-parseable verdicts (PROMPT / ALL_CLEAR / * IGNORE / HUMAN). Reuses the shared judgment bar (identity, skepticism, taste, * method, UI review, discipline) so his standards are identical to chat Ken, but * swaps the user-facing output contract for the verdict format and drops the * chat-voice sections to save tokens. */ export declare function buildKenAutopilotSystemPrompt(cwd: string): Promise; //# sourceMappingURL=ken-prompt.d.ts.map