@frockbot/plugin-shell 0.3.27 → 0.3.29

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/plugin-shell",
3
- "version": "0.3.27",
3
+ "version": "0.3.29",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -52,42 +52,42 @@
52
52
  },
53
53
  "dependencies": {
54
54
  "@cordisjs/plugin-webui": "0.8.2",
55
- "@frockbot/agent-runtime": "0.3.27",
56
- "@frockbot/application-foundation": "0.3.27",
57
- "@frockbot/catalog-core": "0.3.27",
58
- "@frockbot/client-core": "0.3.27",
59
- "@frockbot/client-ui": "0.3.27",
60
- "@frockbot/computer-core": "0.3.27",
61
- "@frockbot/computer-host-protocol": "0.3.27",
62
- "@frockbot/configuration-core": "0.3.27",
63
- "@frockbot/connection-core": "0.3.27",
64
- "@frockbot/kernel-agent-loop": "0.3.27",
65
- "@frockbot/kernel-composition": "0.3.27",
66
- "@frockbot/kernel-contracts": "0.3.27",
67
- "@frockbot/kernel-do": "0.3.27",
68
- "@frockbot/machine-protocol": "0.3.27",
69
- "@frockbot/plugin-applets": "0.3.27",
70
- "@frockbot/plugin-authoring": "0.3.27",
71
- "@frockbot/plugin-bot-template": "0.3.27",
72
- "@frockbot/plugin-computer": "0.3.27",
73
- "@frockbot/plugin-flock": "0.3.27",
74
- "@frockbot/plugin-image": "0.3.27",
75
- "@frockbot/plugin-machine-messages": "0.3.27",
76
- "@frockbot/plugin-mcp": "0.3.27",
77
- "@frockbot/plugin-memory": "0.3.27",
78
- "@frockbot/plugin-package-catalog": "0.3.27",
79
- "@frockbot/plugin-routines": "0.3.27",
80
- "@frockbot/plugin-skills": "0.3.27",
81
- "@frockbot/plugin-subagents": "0.3.27",
82
- "@frockbot/plugin-user-machine": "0.3.27",
83
- "@frockbot/protocol": "0.3.27",
55
+ "@frockbot/agent-runtime": "0.3.29",
56
+ "@frockbot/application-foundation": "0.3.29",
57
+ "@frockbot/catalog-core": "0.3.29",
58
+ "@frockbot/client-core": "0.3.29",
59
+ "@frockbot/client-ui": "0.3.29",
60
+ "@frockbot/computer-core": "0.3.29",
61
+ "@frockbot/computer-host-protocol": "0.3.29",
62
+ "@frockbot/configuration-core": "0.3.29",
63
+ "@frockbot/connection-core": "0.3.29",
64
+ "@frockbot/kernel-agent-loop": "0.3.29",
65
+ "@frockbot/kernel-composition": "0.3.29",
66
+ "@frockbot/kernel-contracts": "0.3.29",
67
+ "@frockbot/kernel-do": "0.3.29",
68
+ "@frockbot/machine-protocol": "0.3.29",
69
+ "@frockbot/plugin-applets": "0.3.29",
70
+ "@frockbot/plugin-authoring": "0.3.29",
71
+ "@frockbot/plugin-bot-template": "0.3.29",
72
+ "@frockbot/plugin-computer": "0.3.29",
73
+ "@frockbot/plugin-flock": "0.3.29",
74
+ "@frockbot/plugin-image": "0.3.29",
75
+ "@frockbot/plugin-machine-messages": "0.3.29",
76
+ "@frockbot/plugin-mcp": "0.3.29",
77
+ "@frockbot/plugin-memory": "0.3.29",
78
+ "@frockbot/plugin-package-catalog": "0.3.29",
79
+ "@frockbot/plugin-routines": "0.3.29",
80
+ "@frockbot/plugin-skills": "0.3.29",
81
+ "@frockbot/plugin-subagents": "0.3.29",
82
+ "@frockbot/plugin-user-machine": "0.3.29",
83
+ "@frockbot/protocol": "0.3.29",
84
84
  "cordis": "4.0.0-rc.8",
85
85
  "vue": "3.5.41"
86
86
  },
87
87
  "devDependencies": {
88
88
  "@cloudflare/workers-types": "latest",
89
- "@frockbot/plugin-prompt": "0.3.27",
90
- "@frockbot/plugin-tools": "0.3.27",
89
+ "@frockbot/plugin-prompt": "0.3.29",
90
+ "@frockbot/plugin-tools": "0.3.29",
91
91
  "@types/bun": "1.3.6",
92
92
  "@types/node": "26.2.0",
93
93
  "@vitejs/plugin-vue": "6.0.8",
@@ -163,7 +163,7 @@ export interface AppletInstanceBindingV1 {
163
163
  >;
164
164
  /**
165
165
  * `generationId` is the Applet generation the calling Turn pinned. The
166
- * instance runs that generation or refuses the call (ADR 0038).
166
+ * instance runs that generation or refuses the call (ADR 0041).
167
167
  */
168
168
  invokeTool(input: {
169
169
  appletId: string;
@@ -5,7 +5,7 @@
5
5
  // Second, the Applet half. An Applet member contributes no module and nothing
6
6
  // to health-check, so the only thing this seam does with it is register its
7
7
  // tools. What matters is *which* generation those tools reach: the description
8
- // handed to the model names the pinned generation, and ADR 0038 requires the
8
+ // handed to the model names the pinned generation, and ADR 0041 requires the
9
9
  // call to name it too, so the Applet Durable Object executes that generation or
10
10
  // refuses. A DTO that carried only the Applet id let a publish landing mid-Turn
11
11
  // run new code behind the schema and provenance the model was shown.
@@ -188,7 +188,7 @@ export interface ShellIsolateMountOptions {
188
188
  *
189
189
  * `generationId` is the Applet generation this Turn's Composition pinned, and
190
190
  * it is not decoration: the Applet Durable Object runs that generation or
191
- * refuses the call (ADR 0038). Without it a publish landing mid-Turn would
191
+ * refuses the call (ADR 0041). Without it a publish landing mid-Turn would
192
192
  * execute new code behind the schema and provenance the model was shown.
193
193
  */
194
194
  export interface ShellAppletMountOptions {