We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 927cc74 commit fe50b62Copy full SHA for fe50b62
packages/cleo/src/dispatch/engines/orchestrate-engine.ts
@@ -536,7 +536,9 @@ export async function orchestrateSpawnExecute(
536
// created via `cleo orchestrate spawn` with a compiled CANT bundle.
537
// For tasks without an agentDef we use a minimal stub so that the
538
// composer still assembles any available BRAIN context.
539
- const agentDef = spawnContext.agentDef as import('@cleocode/cant').AgentDefinition | undefined;
+ const agentDef = spawnContext.agentDef as
540
+ | import('@cleocode/cant').AgentDefinition
541
+ | undefined;
542
543
if (agentDef) {
544
const provider = brainContextProvider(cwd);
0 commit comments