@probelabs/probe 0.6.0-rc211 → 0.6.0-rc212
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/bin/binaries/probe-v0.6.0-rc212-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc212-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc212-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc212-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc212-x86_64-unknown-linux-musl.tar.gz +0 -0
- package/build/agent/ProbeAgent.js +4 -0
- package/build/agent/index.js +3 -0
- package/cjs/agent/ProbeAgent.cjs +3 -0
- package/cjs/index.cjs +3 -0
- package/package.json +1 -1
- package/src/agent/ProbeAgent.js +4 -0
- package/bin/binaries/probe-v0.6.0-rc211-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc211-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc211-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc211-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc211-x86_64-unknown-linux-musl.tar.gz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -2832,6 +2832,10 @@ Follow these instructions carefully:
|
|
|
2832
2832
|
if (this.enableDelegate && this.allowedTools.isEnabled('delegate')) {
|
|
2833
2833
|
validTools.push('delegate');
|
|
2834
2834
|
}
|
|
2835
|
+
// Analyze All tool (for bulk data processing with map-reduce)
|
|
2836
|
+
if (this.allowedTools.isEnabled('analyze_all')) {
|
|
2837
|
+
validTools.push('analyze_all');
|
|
2838
|
+
}
|
|
2835
2839
|
// Task tool (require both enableTasks flag AND allowedTools permission)
|
|
2836
2840
|
if (this.enableTasks && this.allowedTools.isEnabled('task')) {
|
|
2837
2841
|
validTools.push('task');
|
package/build/agent/index.js
CHANGED
|
@@ -71965,6 +71965,9 @@ You are working with a repository located at: ${searchDirectory}
|
|
|
71965
71965
|
if (this.enableDelegate && this.allowedTools.isEnabled("delegate")) {
|
|
71966
71966
|
validTools.push("delegate");
|
|
71967
71967
|
}
|
|
71968
|
+
if (this.allowedTools.isEnabled("analyze_all")) {
|
|
71969
|
+
validTools.push("analyze_all");
|
|
71970
|
+
}
|
|
71968
71971
|
if (this.enableTasks && this.allowedTools.isEnabled("task")) {
|
|
71969
71972
|
validTools.push("task");
|
|
71970
71973
|
}
|
package/cjs/agent/ProbeAgent.cjs
CHANGED
|
@@ -101034,6 +101034,9 @@ You are working with a repository located at: ${searchDirectory}
|
|
|
101034
101034
|
if (this.enableDelegate && this.allowedTools.isEnabled("delegate")) {
|
|
101035
101035
|
validTools.push("delegate");
|
|
101036
101036
|
}
|
|
101037
|
+
if (this.allowedTools.isEnabled("analyze_all")) {
|
|
101038
|
+
validTools.push("analyze_all");
|
|
101039
|
+
}
|
|
101037
101040
|
if (this.enableTasks && this.allowedTools.isEnabled("task")) {
|
|
101038
101041
|
validTools.push("task");
|
|
101039
101042
|
}
|
package/cjs/index.cjs
CHANGED
|
@@ -97945,6 +97945,9 @@ You are working with a repository located at: ${searchDirectory}
|
|
|
97945
97945
|
if (this.enableDelegate && this.allowedTools.isEnabled("delegate")) {
|
|
97946
97946
|
validTools.push("delegate");
|
|
97947
97947
|
}
|
|
97948
|
+
if (this.allowedTools.isEnabled("analyze_all")) {
|
|
97949
|
+
validTools.push("analyze_all");
|
|
97950
|
+
}
|
|
97948
97951
|
if (this.enableTasks && this.allowedTools.isEnabled("task")) {
|
|
97949
97952
|
validTools.push("task");
|
|
97950
97953
|
}
|
package/package.json
CHANGED
package/src/agent/ProbeAgent.js
CHANGED
|
@@ -2832,6 +2832,10 @@ Follow these instructions carefully:
|
|
|
2832
2832
|
if (this.enableDelegate && this.allowedTools.isEnabled('delegate')) {
|
|
2833
2833
|
validTools.push('delegate');
|
|
2834
2834
|
}
|
|
2835
|
+
// Analyze All tool (for bulk data processing with map-reduce)
|
|
2836
|
+
if (this.allowedTools.isEnabled('analyze_all')) {
|
|
2837
|
+
validTools.push('analyze_all');
|
|
2838
|
+
}
|
|
2835
2839
|
// Task tool (require both enableTasks flag AND allowedTools permission)
|
|
2836
2840
|
if (this.enableTasks && this.allowedTools.isEnabled('task')) {
|
|
2837
2841
|
validTools.push('task');
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|