/** * System prompt for Cuneiform MCP Server. * * This prompt is injected into the LLM's context when the MCP server is active, * providing guidance on available tools, incremental processing rules, and * exploration workflows. * * @example * ```typescript * import { CUNEIFORM_SYSTEM_PROMPT } from './config/system-prompts.js'; * * server.setRequestHandler(GetPromptRequestSchema, async () => ({ * description: 'Cuneiform CLI system prompt', * messages: [{ role: 'user', content: { type: 'text', text: CUNEIFORM_SYSTEM_PROMPT } }], * })); * ``` */ export declare const CUNEIFORM_SYSTEM_PROMPT: string;