@probelabs/probe 0.6.0-rc245 → 0.6.0-rc246
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-rc246-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/{probe-v0.6.0-rc245-aarch64-unknown-linux-musl.tar.gz → probe-v0.6.0-rc246-aarch64-unknown-linux-musl.tar.gz} +0 -0
- package/bin/binaries/probe-v0.6.0-rc246-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc246-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc246-x86_64-unknown-linux-musl.tar.gz +0 -0
- package/build/agent/index.js +20 -0
- package/build/tools/executePlan.js +22 -0
- package/cjs/agent/ProbeAgent.cjs +20 -0
- package/cjs/index.cjs +8822 -8802
- package/package.json +2 -2
- package/src/tools/executePlan.js +22 -0
- package/bin/binaries/probe-v0.6.0-rc245-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc245-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc245-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc245-x86_64-unknown-linux-musl.tar.gz +0 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/build/agent/index.js
CHANGED
|
@@ -29060,6 +29060,25 @@ function buildToolImplementations(configOptions) {
|
|
|
29060
29060
|
}
|
|
29061
29061
|
}
|
|
29062
29062
|
};
|
|
29063
|
+
if (configOptions.enableBash) {
|
|
29064
|
+
const bashToolInstance = bashTool({
|
|
29065
|
+
bashConfig: configOptions.bashConfig || {},
|
|
29066
|
+
debug: configOptions.debug || false,
|
|
29067
|
+
cwd,
|
|
29068
|
+
allowedFolders: configOptions.allowedFolders || [],
|
|
29069
|
+
workspaceRoot: configOptions.workspaceRoot || cwd,
|
|
29070
|
+
tracer: configOptions.tracer || null
|
|
29071
|
+
});
|
|
29072
|
+
tools2.bash = {
|
|
29073
|
+
execute: async (params) => {
|
|
29074
|
+
try {
|
|
29075
|
+
return await bashToolInstance.execute(params);
|
|
29076
|
+
} catch (e) {
|
|
29077
|
+
return `Bash error: ${e.message}`;
|
|
29078
|
+
}
|
|
29079
|
+
}
|
|
29080
|
+
};
|
|
29081
|
+
}
|
|
29063
29082
|
return tools2;
|
|
29064
29083
|
}
|
|
29065
29084
|
function buildLLMCall(configOptions) {
|
|
@@ -29786,6 +29805,7 @@ var init_executePlan = __esm({
|
|
|
29786
29805
|
init_extract();
|
|
29787
29806
|
init_delegate();
|
|
29788
29807
|
init_esm5();
|
|
29808
|
+
init_bash();
|
|
29789
29809
|
RAW_OUTPUT_START = "<<<RAW_OUTPUT>>>";
|
|
29790
29810
|
RAW_OUTPUT_END = "<<<END_RAW_OUTPUT>>>";
|
|
29791
29811
|
}
|
|
@@ -13,6 +13,7 @@ import { query } from '../query.js';
|
|
|
13
13
|
import { extract } from '../extract.js';
|
|
14
14
|
import { delegate } from '../delegate.js';
|
|
15
15
|
import { glob } from 'glob';
|
|
16
|
+
import { bashTool } from './bash.js';
|
|
16
17
|
|
|
17
18
|
export { executePlanSchema };
|
|
18
19
|
|
|
@@ -156,6 +157,27 @@ function buildToolImplementations(configOptions) {
|
|
|
156
157
|
},
|
|
157
158
|
};
|
|
158
159
|
|
|
160
|
+
// Add bash tool if enabled
|
|
161
|
+
if (configOptions.enableBash) {
|
|
162
|
+
const bashToolInstance = bashTool({
|
|
163
|
+
bashConfig: configOptions.bashConfig || {},
|
|
164
|
+
debug: configOptions.debug || false,
|
|
165
|
+
cwd: cwd,
|
|
166
|
+
allowedFolders: configOptions.allowedFolders || [],
|
|
167
|
+
workspaceRoot: configOptions.workspaceRoot || cwd,
|
|
168
|
+
tracer: configOptions.tracer || null,
|
|
169
|
+
});
|
|
170
|
+
tools.bash = {
|
|
171
|
+
execute: async (params) => {
|
|
172
|
+
try {
|
|
173
|
+
return await bashToolInstance.execute(params);
|
|
174
|
+
} catch (e) {
|
|
175
|
+
return `Bash error: ${e.message}`;
|
|
176
|
+
}
|
|
177
|
+
},
|
|
178
|
+
};
|
|
179
|
+
}
|
|
180
|
+
|
|
159
181
|
return tools;
|
|
160
182
|
}
|
|
161
183
|
|
package/cjs/agent/ProbeAgent.cjs
CHANGED
|
@@ -58512,6 +58512,25 @@ function buildToolImplementations(configOptions) {
|
|
|
58512
58512
|
}
|
|
58513
58513
|
}
|
|
58514
58514
|
};
|
|
58515
|
+
if (configOptions.enableBash) {
|
|
58516
|
+
const bashToolInstance = bashTool({
|
|
58517
|
+
bashConfig: configOptions.bashConfig || {},
|
|
58518
|
+
debug: configOptions.debug || false,
|
|
58519
|
+
cwd,
|
|
58520
|
+
allowedFolders: configOptions.allowedFolders || [],
|
|
58521
|
+
workspaceRoot: configOptions.workspaceRoot || cwd,
|
|
58522
|
+
tracer: configOptions.tracer || null
|
|
58523
|
+
});
|
|
58524
|
+
tools2.bash = {
|
|
58525
|
+
execute: async (params) => {
|
|
58526
|
+
try {
|
|
58527
|
+
return await bashToolInstance.execute(params);
|
|
58528
|
+
} catch (e5) {
|
|
58529
|
+
return `Bash error: ${e5.message}`;
|
|
58530
|
+
}
|
|
58531
|
+
}
|
|
58532
|
+
};
|
|
58533
|
+
}
|
|
58515
58534
|
return tools2;
|
|
58516
58535
|
}
|
|
58517
58536
|
function buildLLMCall(configOptions) {
|
|
@@ -59239,6 +59258,7 @@ var init_executePlan = __esm({
|
|
|
59239
59258
|
init_extract();
|
|
59240
59259
|
init_delegate();
|
|
59241
59260
|
init_esm5();
|
|
59261
|
+
init_bash();
|
|
59242
59262
|
RAW_OUTPUT_START = "<<<RAW_OUTPUT>>>";
|
|
59243
59263
|
RAW_OUTPUT_END = "<<<END_RAW_OUTPUT>>>";
|
|
59244
59264
|
}
|