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
|
@@ -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
|
-
|
|
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 = '';
|