/** * Function ID for creating a new task context (implementation plan). * Creates a task context with auto-generated metadata and opens it in the editor. */ export declare const CREATE_TASK_CONTEXT_FUNCTION_ID = "createTaskContext"; /** * Function ID for reading the current task context. * Returns the content of the task context for the current session or a specified ID. */ export declare const GET_TASK_CONTEXT_FUNCTION_ID = "getTaskContext"; /** * Function ID for editing a task context with string replacement. * Applies targeted edits to the task context and opens it in the editor. */ export declare const EDIT_TASK_CONTEXT_FUNCTION_ID = "editTaskContext"; /** * Function ID for listing all task contexts for the current session. * Useful when the agent has created multiple plans and needs to see what exists. */ export declare const LIST_TASK_CONTEXTS_FUNCTION_ID = "listTaskContexts"; /** * Function ID for completely rewriting a task context. * Fallback when edits fail repeatedly - replaces the entire content. */ export declare const REWRITE_TASK_CONTEXT_FUNCTION_ID = "rewriteTaskContext"; //# sourceMappingURL=task-context-function-ids.d.ts.map