@frockbot/plugin-shell 0.1.2 → 0.1.4
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 +28 -28
- package/src/backend-composition.ts +4 -4
- package/src/backend-configuration.test.ts +366 -1451
- package/src/backend-execution.ts +0 -4
- package/src/backend-image.test.ts +8 -8
- package/src/backend-image.ts +13 -13
- package/src/backend-isolate.test.ts +181 -35
- package/src/backend-isolate.ts +110 -72
- package/src/backend-recovery-integration.test.ts +17 -67
- package/src/backend-routines.ts +1 -1
- package/src/backend.ts +335 -1659
- package/src/client/FrockBotApp.vue +6 -73
- package/src/client/index.test.ts +320 -380
- package/src/client/index.ts +85 -256
- package/src/client/model-presentation.test.ts +21 -8
- package/src/client/model-presentation.ts +14 -7
- package/src/client/styles.css +0 -27
- package/src/settings-links.test.ts +2 -10
- package/src/settings-links.ts +1 -13
- package/src/shared.ts +0 -13
- package/src/backend-assignment.test.ts +0 -161
- package/src/backend-assignment.ts +0 -274
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-shell",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -45,38 +45,38 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@cordisjs/plugin-webui": "0.8.2",
|
|
48
|
-
"@frockbot/agent-runtime": "0.1.
|
|
49
|
-
"@frockbot/application-foundation": "0.1.
|
|
50
|
-
"@frockbot/catalog-core": "0.1.
|
|
51
|
-
"@frockbot/client-core": "0.1.
|
|
52
|
-
"@frockbot/client-ui": "0.1.
|
|
53
|
-
"@frockbot/computer-core": "0.1.
|
|
54
|
-
"@frockbot/computer-host-protocol": "0.1.
|
|
55
|
-
"@frockbot/configuration-core": "0.1.
|
|
56
|
-
"@frockbot/connection-core": "0.1.
|
|
57
|
-
"@frockbot/kernel-agent-loop": "0.1.
|
|
58
|
-
"@frockbot/kernel-composition": "0.1.
|
|
59
|
-
"@frockbot/kernel-contracts": "0.1.
|
|
60
|
-
"@frockbot/kernel-do": "0.1.
|
|
61
|
-
"@frockbot/machine-protocol": "0.1.
|
|
62
|
-
"@frockbot/plugin-authoring": "0.1.
|
|
63
|
-
"@frockbot/plugin-bot-template": "0.1.
|
|
64
|
-
"@frockbot/plugin-flock": "0.1.
|
|
65
|
-
"@frockbot/plugin-image": "0.1.
|
|
66
|
-
"@frockbot/plugin-machine-messages": "0.1.
|
|
67
|
-
"@frockbot/plugin-mcp": "0.1.
|
|
68
|
-
"@frockbot/plugin-memory": "0.1.
|
|
69
|
-
"@frockbot/plugin-routines": "0.1.
|
|
70
|
-
"@frockbot/plugin-skills": "0.1.
|
|
71
|
-
"@frockbot/plugin-subagents": "0.1.
|
|
72
|
-
"@frockbot/plugin-user-machine": "0.1.
|
|
73
|
-
"@frockbot/protocol": "0.1.
|
|
48
|
+
"@frockbot/agent-runtime": "0.1.4",
|
|
49
|
+
"@frockbot/application-foundation": "0.1.4",
|
|
50
|
+
"@frockbot/catalog-core": "0.1.4",
|
|
51
|
+
"@frockbot/client-core": "0.1.4",
|
|
52
|
+
"@frockbot/client-ui": "0.1.4",
|
|
53
|
+
"@frockbot/computer-core": "0.1.4",
|
|
54
|
+
"@frockbot/computer-host-protocol": "0.1.4",
|
|
55
|
+
"@frockbot/configuration-core": "0.1.4",
|
|
56
|
+
"@frockbot/connection-core": "0.1.4",
|
|
57
|
+
"@frockbot/kernel-agent-loop": "0.1.4",
|
|
58
|
+
"@frockbot/kernel-composition": "0.1.4",
|
|
59
|
+
"@frockbot/kernel-contracts": "0.1.4",
|
|
60
|
+
"@frockbot/kernel-do": "0.1.4",
|
|
61
|
+
"@frockbot/machine-protocol": "0.1.4",
|
|
62
|
+
"@frockbot/plugin-authoring": "0.1.4",
|
|
63
|
+
"@frockbot/plugin-bot-template": "0.1.4",
|
|
64
|
+
"@frockbot/plugin-flock": "0.1.4",
|
|
65
|
+
"@frockbot/plugin-image": "0.1.4",
|
|
66
|
+
"@frockbot/plugin-machine-messages": "0.1.4",
|
|
67
|
+
"@frockbot/plugin-mcp": "0.1.4",
|
|
68
|
+
"@frockbot/plugin-memory": "0.1.4",
|
|
69
|
+
"@frockbot/plugin-routines": "0.1.4",
|
|
70
|
+
"@frockbot/plugin-skills": "0.1.4",
|
|
71
|
+
"@frockbot/plugin-subagents": "0.1.4",
|
|
72
|
+
"@frockbot/plugin-user-machine": "0.1.4",
|
|
73
|
+
"@frockbot/protocol": "0.1.4",
|
|
74
74
|
"cordis": "4.0.0-rc.8",
|
|
75
75
|
"vue": "3.5.41"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
78
|
"@cloudflare/workers-types": "latest",
|
|
79
|
-
"@frockbot/plugin-tools": "0.1.
|
|
79
|
+
"@frockbot/plugin-tools": "0.1.4",
|
|
80
80
|
"@types/bun": "1.3.6",
|
|
81
81
|
"@types/node": "26.2.0",
|
|
82
82
|
"@vitejs/plugin-vue": "6.0.8",
|
|
@@ -71,10 +71,10 @@ export interface ShellIsolateMountOptions {
|
|
|
71
71
|
*/
|
|
72
72
|
capabilitiesFor(member: CompositionMemberV1): BotCapabilitiesStub;
|
|
73
73
|
/**
|
|
74
|
-
* Content address of the
|
|
75
|
-
*
|
|
76
|
-
*
|
|
77
|
-
*
|
|
74
|
+
* Content address of the User-enabled bindings this isolate is granted — the
|
|
75
|
+
* enabled set *and* the Composition generation whose `CAPABILITIES` stub is
|
|
76
|
+
* baked into its `env`. Required: it is what keeps a cached isolate from
|
|
77
|
+
* answering under stale authority (ADR 0019).
|
|
78
78
|
*/
|
|
79
79
|
bindingDigest: string;
|
|
80
80
|
compatibilityDate: string;
|