mirror of
https://github.com/getcompanion-ai/co-mono.git
synced 2026-04-17 06:04:51 +00:00
feat(mom): add arrow prefix to tool labels for visual distinction
Closes #65
This commit is contained in:
parent
effb4d0b7c
commit
5fcdf0cfd8
2 changed files with 9 additions and 1 deletions
|
|
@ -2,6 +2,14 @@
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Reduced tool verbosity in main Slack messages (#65)
|
||||||
|
- During execution: show tool labels (with → prefix), thinking, and text
|
||||||
|
- After completion: replace main message with only final assistant response
|
||||||
|
- Full audit trail preserved in thread (tool details, thinking, text)
|
||||||
|
- Added promise queue to ensure message updates execute in correct order
|
||||||
|
|
||||||
## [0.10.0] - 2025-11-27
|
## [0.10.0] - 2025-11-27
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
||||||
|
|
@ -421,7 +421,7 @@ export function createAgentRunner(sandboxConfig: SandboxConfig): AgentRunner {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Show label in main message only
|
// Show label in main message only
|
||||||
queue.enqueue(() => ctx.respond(`_${label}_`));
|
queue.enqueue(() => ctx.respond(`_→ ${label}_`));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue