@agent-link/server 0.1.29 → 0.1.30

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agent-link/server",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "AgentLink relay server",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -74,7 +74,7 @@ export function createConnection(deps) {
74
74
  id: streaming.nextId(), role: 'tool',
75
75
  toolId: tool.id, toolName: tool.name || 'unknown',
76
76
  toolInput: tool.input ? JSON.stringify(tool.input, null, 2) : '',
77
- hasResult: false, expanded: (tool.name === 'Edit'), timestamp: new Date(),
77
+ hasResult: false, expanded: (tool.name === 'Edit' || tool.name === 'TodoWrite'), timestamp: new Date(),
78
78
  });
79
79
  }
80
80
  scrollToBottom();
@@ -267,7 +267,7 @@ export function createConnection(deps) {
267
267
  id: streaming.nextId(), role: 'tool',
268
268
  toolId: h.toolId || '', toolName: h.toolName || 'unknown',
269
269
  toolInput: h.toolInput || '', hasResult: true,
270
- expanded: h.toolName === 'Edit', timestamp: h.timestamp ? new Date(h.timestamp) : new Date(),
270
+ expanded: (h.toolName === 'Edit' || h.toolName === 'TodoWrite'), timestamp: h.timestamp ? new Date(h.timestamp) : new Date(),
271
271
  });
272
272
  }
273
273
  }