@workbench-ai/workbench 0.0.92 → 0.0.94

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +6 -6
package/dist/index.js CHANGED
@@ -631,7 +631,7 @@ async function handleAgent(parsed, io) {
631
631
  model: stringFlag(parsed, "model"),
632
632
  config,
633
633
  });
634
- return output(agent, parsed, io, () => `Added agent ${formatAgent(agent)}.`);
634
+ return output(agent, parsed, io, () => `Configured agent ${formatAgent(agent)}.`);
635
635
  }
636
636
  if (subcommand === "rm") {
637
637
  const result = await removeWorkbenchAgent(requiredPositional(parsed, 2, "workbench agent rm requires NAME."), await coreOptions(parsed));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workbench-ai/workbench",
3
- "version": "0.0.92",
3
+ "version": "0.0.94",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/workbench-ai/workbench.git",
@@ -21,10 +21,10 @@
21
21
  ],
22
22
  "dependencies": {
23
23
  "yaml": "^2.8.2",
24
- "@workbench-ai/workbench-protocol": "0.0.92",
25
- "@workbench-ai/workbench-contract": "0.0.92",
26
- "@workbench-ai/workbench-built-in-adapters": "0.0.92",
27
- "@workbench-ai/workbench-core": "0.0.92"
24
+ "@workbench-ai/workbench-built-in-adapters": "0.0.94",
25
+ "@workbench-ai/workbench-core": "0.0.94",
26
+ "@workbench-ai/workbench-protocol": "0.0.94",
27
+ "@workbench-ai/workbench-contract": "0.0.94"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@tailwindcss/postcss": "^4.2.2",
@@ -35,7 +35,7 @@
35
35
  "react-dom": "^19.2.0",
36
36
  "typescript": "^5.9.2",
37
37
  "vitest": "^3.2.4",
38
- "@workbench-ai/workbench-ui": "0.0.92"
38
+ "@workbench-ai/workbench-ui": "0.0.94"
39
39
  },
40
40
  "scripts": {
41
41
  "build": "rm -rf dist && tsc -p tsconfig.json && chmod 755 dist/workbench.js && node ./scripts/build-dev-open-assets.mjs",