/** * Relative path to the local agent source used by the agent folder convention. * * @public exported from `@promptbook/node` */ export declare const AGENT_BOOK_FILE_PATH = "agent.book"; /** * Relative path to the message queue root used by the agent folder convention. * * @public exported from `@promptbook/node` */ export declare const AGENT_MESSAGES_DIRECTORY_PATH = "messages"; /** * Relative path to queued user messages consumed by the agent runner. * * @public exported from `@promptbook/node` */ export declare const AGENT_QUEUED_MESSAGES_DIRECTORY_PATH: string; /** * Relative path to answered messages written by the agent runner. * * @public exported from `@promptbook/node` */ export declare const AGENT_FINISHED_MESSAGES_DIRECTORY_PATH: string; /** * Relative path to messages that the agent runner stopped retrying. * * @public exported from `@promptbook/node` */ export declare const AGENT_FAILED_MESSAGES_DIRECTORY_PATH: string;