/**
 * Interface for an agent persona
 */
export interface AgentPersona {
    /** Name of the agent */
    name: string;
    /** Description of the agent's purpose */
    description: string;
    /** The agent's role in the development process */
    role: string;
    /** The development phase the agent specializes in */
    phase: string;
    /** Full content of the agent file including front matter */
    content: string;
    /** Path to the agent's file */
    filePath: string;
}
