@tomflow/proflow-execution-runtime 0.1.12 → 0.1.14

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @tomflow/proflow-execution-runtime
2
2
 
3
+ ## 0.1.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Ship the Phase 3 browser, tunnel, model automation, platform readiness, and documentation closure as one verifiable platform snapshot.
8
+
9
+ ## 0.1.13
10
+
11
+ ### Patch Changes
12
+
13
+ - Distinguish dependency blocking from verified failure, expose Module-owned status diagnostics, remove automatic docs paging, consolidate start checks, add contextual help, and clarify uninstall output.
14
+
3
15
  ## 0.1.12
4
16
 
5
17
  ### Patch Changes
package/SETUP.md CHANGED
@@ -23,6 +23,6 @@ Success condition: `model-runtime.setupStatus=READY`.
23
23
  Responsible: USER
24
24
  Interactive executable: `platform setup --module execution-browser-extension`
25
25
  Non-interactive executable: `platform setup --module execution-browser-extension`
26
- Required inputs: loaded Chrome Extension ID
26
+ Required inputs: none
27
27
  Verify: `platform status`
28
28
  Success condition: `execution-browser-extension.setupStatus=READY`.
@@ -6,7 +6,7 @@ export declare const behaviorAdapter: {
6
6
  ok: true;
7
7
  status: "SUCCEEDED";
8
8
  moduleRef: "execution-runtime";
9
- moduleVersion: "0.1.12";
9
+ moduleVersion: "0.1.14";
10
10
  data: {
11
11
  endpoint: string;
12
12
  transportCredentialFile: string;
@@ -23,7 +23,7 @@ export declare const behaviorAdapter: {
23
23
  readonly ok: true;
24
24
  readonly status: "SUCCEEDED";
25
25
  readonly moduleRef: "execution-runtime";
26
- readonly moduleVersion: "0.1.12";
26
+ readonly moduleVersion: "0.1.14";
27
27
  };
28
28
  observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
29
29
  }>;
@@ -33,10 +33,17 @@ export declare const behaviorAdapter: {
33
33
  ok: true;
34
34
  status: "SUCCEEDED";
35
35
  moduleRef: "execution-runtime";
36
- moduleVersion: "0.1.12";
36
+ moduleVersion: "0.1.14";
37
37
  data: {
38
- setupStatus: "FAILED" | "READY";
38
+ setupStatus: "BLOCKED" | "READY";
39
39
  runtimeStatus: "RUNNING" | "STOPPED";
40
+ issues?: {
41
+ scope: "SETUP";
42
+ code: string;
43
+ message: string;
44
+ relatedModuleRefs: string[];
45
+ nextCommand: string;
46
+ }[];
40
47
  };
41
48
  };
42
49
  observedEffects: never[];
@@ -47,11 +54,11 @@ export declare const behaviorAdapter: {
47
54
  readonly ok: true;
48
55
  readonly status: "SUCCEEDED";
49
56
  readonly moduleRef: "execution-runtime";
50
- readonly moduleVersion: "0.1.12";
57
+ readonly moduleVersion: "0.1.14";
51
58
  } | {
52
59
  contract: "deployment.result.v1";
53
60
  moduleRef: "execution-runtime";
54
- moduleVersion: "0.1.12";
61
+ moduleVersion: "0.1.14";
55
62
  ok: false;
56
63
  status: "FAILED";
57
64
  error: {
@@ -112,7 +119,7 @@ export declare const behaviorAdapter: {
112
119
  ok: true;
113
120
  status: "SUCCEEDED";
114
121
  moduleRef: "execution-runtime";
115
- moduleVersion: "0.1.12";
122
+ moduleVersion: "0.1.14";
116
123
  data: {
117
124
  docs: string;
118
125
  };
@@ -125,7 +132,7 @@ export declare const behaviorAdapter: {
125
132
  ok: true;
126
133
  status: "SUCCEEDED";
127
134
  moduleRef: "execution-runtime";
128
- moduleVersion: "0.1.12";
135
+ moduleVersion: "0.1.14";
129
136
  data: unknown;
130
137
  };
131
138
  observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
@@ -133,7 +140,7 @@ export declare const behaviorAdapter: {
133
140
  result: {
134
141
  contract: "deployment.result.v1";
135
142
  moduleRef: "execution-runtime";
136
- moduleVersion: "0.1.12";
143
+ moduleVersion: "0.1.14";
137
144
  ok: false;
138
145
  status: "FAILED";
139
146
  error: {
@@ -150,7 +157,7 @@ export declare const behaviorAdapter: {
150
157
  readonly ok: true;
151
158
  readonly status: "SUCCEEDED";
152
159
  readonly moduleRef: "execution-runtime";
153
- readonly moduleVersion: "0.1.12";
160
+ readonly moduleVersion: "0.1.14";
154
161
  };
155
162
  observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
156
163
  } | {
@@ -159,11 +166,11 @@ export declare const behaviorAdapter: {
159
166
  readonly ok: true;
160
167
  readonly status: "SUCCEEDED";
161
168
  readonly moduleRef: "execution-runtime";
162
- readonly moduleVersion: "0.1.12";
169
+ readonly moduleVersion: "0.1.14";
163
170
  } | {
164
171
  contract: "deployment.result.v1";
165
172
  moduleRef: "execution-runtime";
166
- moduleVersion: "0.1.12";
173
+ moduleVersion: "0.1.14";
167
174
  ok: false;
168
175
  status: "FAILED";
169
176
  error: {
@@ -173,20 +173,38 @@ export const behaviorAdapter = {
173
173
  : [],
174
174
  };
175
175
  },
176
- status: async (context) => ({
177
- result: {
178
- ...base,
179
- data: {
180
- setupStatus: (await dependencies(context))
181
- ? "READY"
182
- : "FAILED",
183
- runtimeStatus: (await running(context))
184
- ? "RUNNING"
185
- : "STOPPED",
176
+ status: async (context) => {
177
+ const ready = await dependencies(context);
178
+ return {
179
+ result: {
180
+ ...base,
181
+ data: {
182
+ setupStatus: ready ? "READY" : "BLOCKED",
183
+ runtimeStatus: (await running(context))
184
+ ? "RUNNING"
185
+ : "STOPPED",
186
+ ...(ready
187
+ ? {}
188
+ : {
189
+ issues: [
190
+ {
191
+ scope: "SETUP",
192
+ code: "UPSTREAM_NOT_READY",
193
+ message: "等待 platform-host、model-runtime 与 execution-browser-extension 发布运行所需信息",
194
+ relatedModuleRefs: [
195
+ "platform-host",
196
+ "model-runtime",
197
+ "execution-browser-extension",
198
+ ],
199
+ nextCommand: "platform setup --module model-runtime",
200
+ },
201
+ ],
202
+ }),
203
+ },
186
204
  },
187
- },
188
- observedEffects: [],
189
- }),
205
+ observedEffects: [],
206
+ };
207
+ },
190
208
  setup: async (context) => ({
191
209
  result: (await dependencies(context))
192
210
  ? base
@@ -3,7 +3,7 @@ export declare const descriptor: {
3
3
  readonly contractVersion: "1.0.0";
4
4
  readonly moduleRef: "execution-runtime";
5
5
  readonly packageName: "@tomflow/proflow-execution-runtime";
6
- readonly moduleVersion: "0.1.12";
6
+ readonly moduleVersion: "0.1.14";
7
7
  readonly kind: "service";
8
8
  readonly templateVersion: "1.0.0";
9
9
  readonly platformCompatibility: ">=1.0.0 <2.0.0";
@@ -3,7 +3,7 @@ export const descriptor = {
3
3
  contractVersion: "1.0.0",
4
4
  moduleRef: "execution-runtime",
5
5
  packageName: "@tomflow/proflow-execution-runtime",
6
- moduleVersion: "0.1.12",
6
+ moduleVersion: "0.1.14",
7
7
  kind: "service",
8
8
  templateVersion: "1.0.0",
9
9
  platformCompatibility: ">=1.0.0 <2.0.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tomflow/proflow-execution-runtime",
3
- "version": "0.1.12",
3
+ "version": "0.1.14",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -24,14 +24,14 @@
24
24
  "SETUP.md"
25
25
  ],
26
26
  "dependencies": {
27
- "@tomflow/proflow-execution-browser-extension": "^0.1.11",
28
- "@tomflow/proflow-execution-contracts": "^0.1.9",
29
- "@tomflow/proflow-module-contract": "^0.1.11",
30
- "@tomflow/proflow-model-contracts": "^0.1.9",
31
- "@tomflow/proflow-execution-local": "^0.1.10"
27
+ "@tomflow/proflow-module-contract": "^0.1.13",
28
+ "@tomflow/proflow-execution-browser-extension": "^0.1.13",
29
+ "@tomflow/proflow-execution-contracts": "^0.1.10",
30
+ "@tomflow/proflow-model-contracts": "^0.1.10",
31
+ "@tomflow/proflow-execution-local": "^0.1.12"
32
32
  },
33
33
  "devDependencies": {
34
- "@tomflow/proflow-deployment-conformance": "^0.1.9"
34
+ "@tomflow/proflow-deployment-conformance": "^0.1.11"
35
35
  },
36
36
  "description": "Durable, policy-controlled Execution Core orchestration over SQLite and controlled executor ports.",
37
37
  "keywords": [
@@ -3,7 +3,7 @@
3
3
  "contractVersion": "1.0.0",
4
4
  "moduleRef": "execution-runtime",
5
5
  "packageName": "@tomflow/proflow-execution-runtime",
6
- "moduleVersion": "0.1.12",
6
+ "moduleVersion": "0.1.14",
7
7
  "kind": "service",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",