tuna-agent 0.1.66 → 0.1.68
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -206,15 +206,13 @@ export class ClaudeCodeAdapter {
|
|
|
206
206
|
}
|
|
207
207
|
}).catch(() => { });
|
|
208
208
|
}
|
|
209
|
-
|
|
210
|
-
// Manual chat tasks may spawn sub-agents → keep agentTeam enabled
|
|
211
|
-
const useAgentTeam = task.source !== 'skill' && task.source !== 'scheduled';
|
|
209
|
+
const useAgentTeam = true;
|
|
212
210
|
const result = await runClaude({
|
|
213
211
|
prompt: userMessage,
|
|
214
212
|
cwd,
|
|
215
213
|
outputFormat: 'stream-json',
|
|
216
214
|
includePartialMessages: true,
|
|
217
|
-
maxTurns:
|
|
215
|
+
maxTurns: 200,
|
|
218
216
|
resumeSessionId: round > 0 ? sessionId : undefined,
|
|
219
217
|
signal,
|
|
220
218
|
inputFiles: currentInputFiles,
|