tycono 0.3.14-beta.25 → 0.3.14-beta.26

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": "tycono",
3
- "version": "0.3.14-beta.25",
3
+ "version": "0.3.14-beta.26",
4
4
  "description": "Build an AI company. Watch them work.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -124,8 +124,7 @@ export function summarizeEvent(event: SSEEvent, allRoleIds: string[]): StreamLin
124
124
  const toolName = (event.data.name as string) ?? 'tool';
125
125
  // Only show Write/Edit (file changes) + Bash (commands). Hide Read/Grep/Glob (noise).
126
126
  const isWrite = ['Write', 'Edit', 'NotebookEdit'].includes(toolName);
127
- const isBash = toolName === 'Bash';
128
- if (!isWrite && !isBash) return null; // Hide read-only tools
127
+ if (!isWrite) return null; // Only show file writes — hide Read/Grep/Glob/Bash
129
128
 
130
129
  const input = event.data.input;
131
130
  let detail = '';