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
- // Skills/scheduled tasks use MCP tools (knowledge sync) → disable agentTeam
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: 50,
215
+ maxTurns: 200,
218
216
  resumeSessionId: round > 0 ? sessionId : undefined,
219
217
  signal,
220
218
  inputFiles: currentInputFiles,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuna-agent",
3
- "version": "0.1.66",
3
+ "version": "0.1.68",
4
4
  "description": "Tuna Agent - Run AI coding tasks on your machine",
5
5
  "bin": {
6
6
  "tuna-agent": "dist/cli/index.js"