@frockbot/plugin-computer 0.1.4 → 0.2.1
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/process-records.ts +3 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frockbot/plugin-computer",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
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.1
|
|
33
|
-
"@frockbot/client-ui": "0.1
|
|
34
|
-
"@frockbot/computer-core": "0.1
|
|
35
|
-
"@frockbot/computer-host-runtime": "0.1
|
|
36
|
-
"@frockbot/kernel-agent-loop": "0.1
|
|
37
|
-
"@frockbot/kernel-contracts": "0.1
|
|
38
|
-
"@frockbot/plugin-prompt": "0.1
|
|
39
|
-
"@frockbot/plugin-shell": "0.1
|
|
40
|
-
"@frockbot/plugin-tools": "0.1
|
|
32
|
+
"@frockbot/client-core": "0.2.1",
|
|
33
|
+
"@frockbot/client-ui": "0.2.1",
|
|
34
|
+
"@frockbot/computer-core": "0.2.1",
|
|
35
|
+
"@frockbot/computer-host-runtime": "0.2.1",
|
|
36
|
+
"@frockbot/kernel-agent-loop": "0.2.1",
|
|
37
|
+
"@frockbot/kernel-contracts": "0.2.1",
|
|
38
|
+
"@frockbot/plugin-prompt": "0.2.1",
|
|
39
|
+
"@frockbot/plugin-shell": "0.2.1",
|
|
40
|
+
"@frockbot/plugin-tools": "0.2.1",
|
|
41
41
|
"cordis": "4.0.0-rc.8",
|
|
42
42
|
"vue": "3.5.41"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@frockbot/plugin-models": "0.1
|
|
46
|
-
"@frockbot/plugin-testkit": "0.1
|
|
45
|
+
"@frockbot/plugin-models": "0.2.1",
|
|
46
|
+
"@frockbot/plugin-testkit": "0.2.1",
|
|
47
47
|
"@types/bun": "1.4.0",
|
|
48
48
|
"@types/node": "26.2.0",
|
|
49
49
|
"@vitejs/plugin-vue": "6.0.8",
|
package/src/process-records.ts
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
// anything a second time.
|
|
9
9
|
//
|
|
10
10
|
// Versioned, exact-field, and decoded at the seam it crosses, in the shape
|
|
11
|
-
// `@frockbot/plugin-routines`'s records use.
|
|
12
|
-
//
|
|
13
|
-
//
|
|
11
|
+
// `@frockbot/plugin-routines`'s records use. A previous stored shape must cross
|
|
12
|
+
// an explicit forward migration before decoding; an unknown shape remains a
|
|
13
|
+
// visible failure.
|
|
14
14
|
|
|
15
15
|
/** The Bot Durable Object key one process record is stored under. */
|
|
16
16
|
export const COMPUTER_PROCESS_PREFIX = "computer-process:";
|