import type { ChatMessage } from "../types.js"; import { AGENT_INSTRUCTIONS_PREFIX } from "../instructions/load.js"; import { ACTIVE_SKILLS_PREFIX } from "../skills/catalog.js"; export { AGENT_INSTRUCTIONS_PREFIX, ACTIVE_SKILLS_PREFIX }; export declare function isAgentInstructionsMessage(content: string): boolean; export declare function isActiveSkillsMessage(content: string): boolean; export declare function upsertAgentInstructionsMessage(messages: ChatMessage[], block: string | undefined): void; export declare function upsertActiveSkillsMessage(messages: ChatMessage[], block: string | undefined): void;