feat(KB-614): reduce CLI tool call logging noise

- Remove tool call logging from dashboard.ts CLI command
- Remove tool call logging from task.ts CLI command
- Add changeset documenting the reduced logging behavior
This commit is contained in:
gsxdsm
2026-03-31 17:47:45 -07:00
parent 9030eeebd7
commit 36bdb62783
3 changed files with 5 additions and 2 deletions

View File

@@ -289,7 +289,6 @@ export async function runDashboard(port: number, opts: { paused?: boolean; dev?:
pool,
usageLimitPauser,
onAgentText: (delta) => process.stdout.write(delta),
onAgentTool: (name) => console.log(`[merger] tool: ${name}`),
onSession: (session) => { activeMergeSession = session; },
});

View File

@@ -368,7 +368,6 @@ export async function runTaskMerge(id: string) {
try {
const result = await aiMergeTask(store, cwd, id, {
onAgentText: (delta) => process.stdout.write(delta),
onAgentTool: (name) => console.log(` [merge] tool: ${name}`),
});
console.log();