@probelabs/probe 0.6.0-rc283 → 0.6.0-rc285
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-rc285-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc285-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc285-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc285-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc285-x86_64-unknown-linux-musl.tar.gz +0 -0
- package/build/agent/ProbeAgent.d.ts +1 -1
- package/build/agent/ProbeAgent.js +333 -486
- package/build/agent/contextCompactor.js +17 -10
- package/build/agent/index.js +301 -702
- package/build/agent/schemaUtils.js +10 -11
- package/build/agent/shared/prompts.js +2 -2
- package/build/agent/tasks/taskTool.js +3 -3
- package/build/agent/tools.js +0 -2
- package/build/index.js +0 -2
- package/build/tools/analyzeAll.js +4 -4
- package/build/tools/common.js +55 -55
- package/build/tools/index.js +0 -1
- package/build/tools/vercel.js +3 -3
- package/cjs/agent/ProbeAgent.cjs +33158 -42860
- package/cjs/index.cjs +31325 -41082
- package/package.json +8 -8
- package/src/agent/ProbeAgent.d.ts +1 -1
- package/src/agent/ProbeAgent.js +333 -486
- package/src/agent/contextCompactor.js +17 -10
- package/src/agent/index.js +8 -2
- package/src/agent/schemaUtils.js +10 -11
- package/src/agent/shared/prompts.js +2 -2
- package/src/agent/tasks/taskTool.js +3 -3
- package/src/agent/tools.js +0 -2
- package/src/index.js +0 -2
- package/src/tools/analyzeAll.js +4 -4
- package/src/tools/common.js +55 -55
- package/src/tools/index.js +0 -1
- package/src/tools/vercel.js +3 -3
- package/bin/binaries/probe-v0.6.0-rc283-aarch64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc283-aarch64-unknown-linux-musl.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc283-x86_64-apple-darwin.tar.gz +0 -0
- package/bin/binaries/probe-v0.6.0-rc283-x86_64-pc-windows-msvc.zip +0 -0
- package/bin/binaries/probe-v0.6.0-rc283-x86_64-unknown-linux-musl.tar.gz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@probelabs/probe",
|
|
3
|
-
"version": "0.6.0-
|
|
3
|
+
"version": "0.6.0-rc285",
|
|
4
4
|
"description": "Node.js wrapper for the probe code search tool",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -73,10 +73,10 @@
|
|
|
73
73
|
"author": "probelabs",
|
|
74
74
|
"license": "ISC",
|
|
75
75
|
"dependencies": {
|
|
76
|
-
"@ai-sdk/amazon-bedrock": "^
|
|
77
|
-
"@ai-sdk/anthropic": "^
|
|
78
|
-
"@ai-sdk/google": "^3.0.
|
|
79
|
-
"@ai-sdk/openai": "^
|
|
76
|
+
"@ai-sdk/amazon-bedrock": "^4.0.77",
|
|
77
|
+
"@ai-sdk/anthropic": "^3.0.58",
|
|
78
|
+
"@ai-sdk/google": "^3.0.43",
|
|
79
|
+
"@ai-sdk/openai": "^3.0.41",
|
|
80
80
|
"@anthropic-ai/claude-agent-sdk": "^0.1.46",
|
|
81
81
|
"@modelcontextprotocol/sdk": "^1.0.0",
|
|
82
82
|
"@nyariv/sandboxjs": "github:probelabs/SandboxJS",
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"acorn": "^8.15.0",
|
|
85
85
|
"acorn-walk": "^8.3.4",
|
|
86
86
|
"adm-zip": "^0.5.16",
|
|
87
|
-
"ai": "^
|
|
87
|
+
"ai": "^6.0.121",
|
|
88
88
|
"ajv": "^8.17.1",
|
|
89
89
|
"astring": "^1.9.0",
|
|
90
90
|
"axios": "^1.8.3",
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
"gpt-tokenizer": "^3.0.1",
|
|
95
95
|
"tar": "^6.2.0",
|
|
96
96
|
"yaml": "^2.6.1",
|
|
97
|
-
"zod": "^3.
|
|
97
|
+
"zod": "^3.25.76"
|
|
98
98
|
},
|
|
99
99
|
"devDependencies": {
|
|
100
100
|
"@jest/globals": "^29.7.0",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"typescript": "^5.9.2"
|
|
107
107
|
},
|
|
108
108
|
"peerDependencies": {
|
|
109
|
-
"ai": "^
|
|
109
|
+
"ai": "^6.0.0"
|
|
110
110
|
},
|
|
111
111
|
"engines": {
|
|
112
112
|
"node": ">=14.16.0"
|
|
@@ -98,7 +98,7 @@ export interface ProbeAgentOptions {
|
|
|
98
98
|
disableSkills?: boolean;
|
|
99
99
|
/** Skill directories to scan relative to repo root */
|
|
100
100
|
skillDirs?: string[];
|
|
101
|
-
/** Custom prompt to run after
|
|
101
|
+
/** Custom prompt to run after completion for validation/review (runs before mermaid/JSON validation) */
|
|
102
102
|
completionPrompt?: string;
|
|
103
103
|
/** Enable task management system for tracking multi-step progress */
|
|
104
104
|
enableTasks?: boolean;
|