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
- ws.sendPMMessage(task.id, {
478
- sender: 'pm',
479
- content: 'Đang xem xét yêu cầu…',
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) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuna-agent",
3
- "version": "0.1.171",
3
+ "version": "0.1.172",
4
4
  "description": "Tuna Agent - Run AI coding tasks on your machine",
5
5
  "bin": {
6
6
  "tuna-agent": "dist/cli/index.js"