add agent description

This commit is contained in:
Arjun 2026-02-04 16:34:22 +05:30
parent 7670c48867
commit d59c8d53c6
2 changed files with 18 additions and 2 deletions

View file

@ -36,6 +36,7 @@ export const AgentScheduleEntry = z.object({
schedule: ScheduleDefinition,
enabled: z.boolean().optional().default(true),
startingMessage: z.string().optional(), // Message sent to agent when run starts (defaults to "go")
description: z.string().optional(), // Brief description of what the agent does (for UI display)
});
export const AgentScheduleConfig = z.object({