@agnishc/edb-compact-tools 0.10.4 → 0.10.5
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/CHANGELOG.md +9 -0
- package/package.json +1 -1
- package/src/index.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.10.5] - 2026-05-15
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- Brightened call label and status summary colors (`dim`/`muted` → `toolOutput`) for improved legibility
|
|
7
|
+
- Removed background fill from expanded body lines — output now renders on terminal background for better contrast
|
|
8
|
+
- Added blank line after separator and after closing box border for visual breathing room
|
|
9
|
+
- Reduced max line width from 180 to 120 characters
|
|
10
|
+
- Added `promptSnippet` forwarded from built-in tool definitions so overridden tools (`bash`, `read`, `grep`, `find`, `ls`, `edit`, `write`) still appear in the system prompt's Available tools section
|
|
11
|
+
|
|
3
12
|
## 0.1.0
|
|
4
13
|
|
|
5
14
|
- Initial compact outlined renderers for `read`, `bash`, `grep`, `find`, and `ls`.
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -488,6 +488,7 @@ function registerDelegatingTool(
|
|
|
488
488
|
name,
|
|
489
489
|
label: name,
|
|
490
490
|
description: original.description,
|
|
491
|
+
promptSnippet: (original as any).promptSnippet,
|
|
491
492
|
parameters: original.parameters as any,
|
|
492
493
|
renderShell: "self",
|
|
493
494
|
async execute(id: string, params: unknown, signal?: AbortSignal, onUpdate?: unknown, ctx?: any) {
|