tuna-agent 0.1.171 → 0.1.172
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.
|
@@ -474,10 +474,9 @@ export class ClaudeCodeAdapter {
|
|
|
474
474
|
// Step 1: Planning
|
|
475
475
|
console.log(`[ClaudeCode] Starting planning for task ${task.id}`);
|
|
476
476
|
ws.sendProgress(task.id, 'planning', { startedAt: new Date().toISOString() });
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
});
|
|
477
|
+
// No generic canned "thinking" line — it breaks the agent's persona voice.
|
|
478
|
+
// The agent's own (persona-driven) output leads instead. The 'planning' status
|
|
479
|
+
// above already signals activity to the app/Discord.
|
|
481
480
|
let planFirstChunkIso = '';
|
|
482
481
|
let planChunkCount = 0;
|
|
483
482
|
let planResult = await planTask(task, (event, data) => {
|