xtrm-tools 0.6.0 → 0.7.0
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/.claude-plugin/plugin.json +1 -1
- package/cli/dist/index.cjs +530 -74
- package/cli/dist/index.cjs.map +1 -1
- package/cli/package.json +1 -1
- package/config/pi/extensions/xtrm-ui/index.ts +1 -1
- package/hooks/tsconfig-cache.json +2 -12
- package/package.json +1 -1
- package/plugins/xtrm-tools/.claude-plugin/plugin.json +1 -1
- package/plugins/xtrm-tools/hooks/tsconfig-cache.json +2 -12
package/cli/package.json
CHANGED
|
@@ -749,7 +749,7 @@ function registerXtrmUiTools(pi: ExtensionAPI): void {
|
|
|
749
749
|
activeSignatureCounts.has(stableToolSignature(toolName, args));
|
|
750
750
|
|
|
751
751
|
const renderPendingCallIfActive = (toolName: string, args: Record<string, unknown>, theme: any) =>
|
|
752
|
-
isToolCallActive(toolName, args) ? renderPendingCall(toolName, args, theme) :
|
|
752
|
+
isToolCallActive(toolName, args) ? renderPendingCall(toolName, args, theme) : new Text("", 0, 0);
|
|
753
753
|
|
|
754
754
|
pi.on("tool_call", async (event) => {
|
|
755
755
|
trackToolCallStart(event.toolCallId, event.toolName, event.input as Record<string, unknown>);
|
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hashes": {
|
|
3
|
-
|
|
4
|
-
},
|
|
5
|
-
"mappings": {
|
|
6
|
-
"src/**/*": {
|
|
7
|
-
"configPath": "/home/dawid/projects/specialists/tsconfig.json",
|
|
8
|
-
"excludes": [
|
|
9
|
-
"node_modules",
|
|
10
|
-
"dist"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
}
|
|
2
|
+
"hashes": {},
|
|
3
|
+
"mappings": {}
|
|
14
4
|
}
|
package/package.json
CHANGED
|
@@ -1,14 +1,4 @@
|
|
|
1
1
|
{
|
|
2
|
-
"hashes": {
|
|
3
|
-
|
|
4
|
-
},
|
|
5
|
-
"mappings": {
|
|
6
|
-
"src/**/*": {
|
|
7
|
-
"configPath": "/home/dawid/projects/specialists/tsconfig.json",
|
|
8
|
-
"excludes": [
|
|
9
|
-
"node_modules",
|
|
10
|
-
"dist"
|
|
11
|
-
]
|
|
12
|
-
}
|
|
13
|
-
}
|
|
2
|
+
"hashes": {},
|
|
3
|
+
"mappings": {}
|
|
14
4
|
}
|