@frockbot/plugin-computer 0.3.2 → 0.3.3
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/package.json +12 -12
- package/src/processes.test.ts +13 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-computer",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -29,21 +29,21 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"@cordisjs/client": "0.8.2",
|
|
32
|
-
"@frockbot/client-core": "0.3.
|
|
33
|
-
"@frockbot/client-ui": "0.3.
|
|
34
|
-
"@frockbot/computer-core": "0.3.
|
|
35
|
-
"@frockbot/computer-host-runtime": "0.3.
|
|
36
|
-
"@frockbot/kernel-agent-loop": "0.3.
|
|
37
|
-
"@frockbot/kernel-contracts": "0.3.
|
|
38
|
-
"@frockbot/plugin-prompt": "0.3.
|
|
39
|
-
"@frockbot/plugin-shell": "0.3.
|
|
40
|
-
"@frockbot/plugin-tools": "0.3.
|
|
32
|
+
"@frockbot/client-core": "0.3.3",
|
|
33
|
+
"@frockbot/client-ui": "0.3.3",
|
|
34
|
+
"@frockbot/computer-core": "0.3.3",
|
|
35
|
+
"@frockbot/computer-host-runtime": "0.3.3",
|
|
36
|
+
"@frockbot/kernel-agent-loop": "0.3.3",
|
|
37
|
+
"@frockbot/kernel-contracts": "0.3.3",
|
|
38
|
+
"@frockbot/plugin-prompt": "0.3.3",
|
|
39
|
+
"@frockbot/plugin-shell": "0.3.3",
|
|
40
|
+
"@frockbot/plugin-tools": "0.3.3",
|
|
41
41
|
"cordis": "4.0.0-rc.8",
|
|
42
42
|
"vue": "3.5.41"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@frockbot/plugin-models": "0.3.
|
|
46
|
-
"@frockbot/plugin-testkit": "0.3.
|
|
45
|
+
"@frockbot/plugin-models": "0.3.3",
|
|
46
|
+
"@frockbot/plugin-testkit": "0.3.3",
|
|
47
47
|
"@types/bun": "1.4.0",
|
|
48
48
|
"@types/node": "26.2.0",
|
|
49
49
|
"@vitejs/plugin-vue": "6.0.8",
|
package/src/processes.test.ts
CHANGED
|
@@ -342,15 +342,25 @@ describe("the Computer tools' subagent roles", () => {
|
|
|
342
342
|
// `browserUse` is "page-level Chrome" (`docs/research/
|
|
343
343
|
// grokbot-computer.md` l.351–356): the browser, and not the shell, the
|
|
344
344
|
// screen, or the processes a shell left behind.
|
|
345
|
-
expect(named("browserUse")).toEqual([
|
|
345
|
+
expect(named("browserUse")).toEqual([
|
|
346
|
+
"computer_browser",
|
|
347
|
+
"get_dynamic_tools",
|
|
348
|
+
"call_dynamic_tool",
|
|
349
|
+
]);
|
|
346
350
|
expect(named("browserUse")).not.toContain("computer_exec");
|
|
347
351
|
expect(named("computerUse")).toContain("computer_exec");
|
|
348
352
|
expect(named("computerUse")).toContain("computer_screenshot");
|
|
349
353
|
expect(named("computerUse")).toContain("computer_browser");
|
|
350
354
|
expect(named("executor")).toContain("computer_exec");
|
|
351
355
|
// The two video roles have no Computer at all.
|
|
352
|
-
expect(named("watchVideo")).toEqual([
|
|
353
|
-
|
|
356
|
+
expect(named("watchVideo")).toEqual([
|
|
357
|
+
"get_dynamic_tools",
|
|
358
|
+
"call_dynamic_tool",
|
|
359
|
+
]);
|
|
360
|
+
expect(named("videoReview")).toEqual([
|
|
361
|
+
"get_dynamic_tools",
|
|
362
|
+
"call_dynamic_tool",
|
|
363
|
+
]);
|
|
354
364
|
await harness.dispose();
|
|
355
365
|
});
|
|
356
366
|
});
|