@vooodooo/magic
Version:
Vooodooo - AI orchestration platform
18 lines (17 loc) • 488 B
TypeScript
/**
* 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;
}