@workbench-ai/workbench 0.0.69 → 0.0.70
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/dist/index.d.ts.map +1 -1
- package/dist/index.js +1024 -568
- package/dist/install-targets.js +2 -2
- package/package.json +5 -4
package/dist/install-targets.js
CHANGED
|
@@ -15,7 +15,7 @@ export function resolveInstallTargets(options) {
|
|
|
15
15
|
const agent = rawAgent.trim().toLowerCase();
|
|
16
16
|
if (agent !== "codex" && agent !== "claude") {
|
|
17
17
|
throw new WorkbenchCodedError("usage", `Unsupported install agent: ${rawAgent}`, {
|
|
18
|
-
remediation: "Use --
|
|
18
|
+
remediation: "Use --to codex, --to claude, or --to local.",
|
|
19
19
|
exitCode: 2,
|
|
20
20
|
});
|
|
21
21
|
}
|
|
@@ -34,7 +34,7 @@ export function resolveInstallTargets(options) {
|
|
|
34
34
|
}
|
|
35
35
|
if (targets.length === 0) {
|
|
36
36
|
throw new WorkbenchCodedError("install_target_required", "workbench install requires an explicit target.", {
|
|
37
|
-
remediation: "Run workbench install
|
|
37
|
+
remediation: "Run workbench install OWNER/SKILL --to codex, workbench install OWNER/SKILL --to claude, or workbench install OWNER/SKILL --to local.",
|
|
38
38
|
exitCode: 2,
|
|
39
39
|
});
|
|
40
40
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workbench-ai/workbench",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.70",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/workbench-ai/workbench.git",
|
|
@@ -21,9 +21,10 @@
|
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"yaml": "^2.8.2",
|
|
24
|
-
"@workbench-ai/workbench-
|
|
25
|
-
"@workbench-ai/workbench-
|
|
26
|
-
"@workbench-ai/workbench-
|
|
24
|
+
"@workbench-ai/workbench-contract": "0.0.70",
|
|
25
|
+
"@workbench-ai/workbench-built-in-adapters": "0.0.70",
|
|
26
|
+
"@workbench-ai/workbench-protocol": "0.0.70",
|
|
27
|
+
"@workbench-ai/workbench-core": "0.0.70"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
30
|
"@tailwindcss/postcss": "^4.2.2",
|