respect subagent in command, add subtask flag (#2569)

This commit is contained in:
Aiden Cline
2025-09-13 12:47:18 -05:00
committed by GitHub
parent 6506e48c54
commit 16d66c209d
3 changed files with 122 additions and 6 deletions

View File

@@ -10,6 +10,7 @@ export namespace Command {
agent: z.string().optional(),
model: z.string().optional(),
template: z.string(),
subtask: z.boolean().optional(),
})
.openapi({
ref: "Command",
@@ -28,6 +29,7 @@ export namespace Command {
model: command.model,
description: command.description,
template: command.template,
subtask: command.subtask,
}
}