codemini-cli 0.1.11 → 0.1.13

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": "codemini-cli",
3
- "version": "0.1.11",
3
+ "version": "0.1.13",
4
4
  "description": "Coding CLI optimized for small-model workflows and Windows PowerShell",
5
5
  "keywords": [
6
6
  "cli",
@@ -96,6 +96,23 @@ function formatToolDisplayName(name, args) {
96
96
  const command = trimInline(args?.command || '', 96);
97
97
  return command ? `${name}(${command})` : name;
98
98
  }
99
+ if (
100
+ name === 'locate' ||
101
+ name === 'open_target' ||
102
+ name === 'edit_target' ||
103
+ name === 'search_code' ||
104
+ name === 'read_block' ||
105
+ name === 'read_symbol_context' ||
106
+ name === 'validate_edit' ||
107
+ name === 'replace_block' ||
108
+ name === 'replace_text' ||
109
+ name === 'insert_before' ||
110
+ name === 'insert_after' ||
111
+ name === 'generate_diff'
112
+ ) {
113
+ const target = trimInline(args?.path || args?.query || args?.symbol || '', 96);
114
+ return target ? `${name}(${target})` : name;
115
+ }
99
116
  return name;
100
117
  }
101
118