@tomflow/proflow-execution-runtime 0.1.7 → 0.1.8
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 +7 -0
- package/SETUP.md +10 -3
- package/dist/deployment/adapter.d.ts +11 -11
- package/dist/deployment/descriptor.d.ts +1 -1
- package/dist/deployment/descriptor.js +1 -1
- package/package.json +7 -7
- package/proflow.module.json +1 -1
package/CHANGELOG.md
ADDED
package/SETUP.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# @tomflow/proflow-execution-runtime — Module Setup
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Goal
|
|
4
|
+
Reach `setupStatus=READY` with zero user configuration.
|
|
4
5
|
|
|
5
|
-
##
|
|
6
|
+
## Step 1 — Resolve producer-owned runtime facts
|
|
7
|
+
**Type:** automatic
|
|
8
|
+
**Executable:** `platform setup --module execution-runtime --workspace <workspace>`
|
|
9
|
+
The Module consumes Platform Host, Model Runtime and Browser Executor shared facts. No database path, endpoint, token or artifact path is user input.
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
## Step 2 — Verify completion
|
|
12
|
+
**Type:** automatic verification
|
|
13
|
+
**Executable:** `platform status --workspace <workspace>`
|
|
14
|
+
**Success condition:** `execution-runtime.setupStatus=READY`. If a producer is not ready, the full `platform setup` result must expose that producer's own setup action or machine failure.
|
|
@@ -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.
|
|
9
|
+
moduleVersion: "0.1.8";
|
|
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.
|
|
26
|
+
readonly moduleVersion: "0.1.8";
|
|
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,7 +33,7 @@ export declare const behaviorAdapter: {
|
|
|
33
33
|
ok: true;
|
|
34
34
|
status: "SUCCEEDED";
|
|
35
35
|
moduleRef: "execution-runtime";
|
|
36
|
-
moduleVersion: "0.1.
|
|
36
|
+
moduleVersion: "0.1.8";
|
|
37
37
|
data: {
|
|
38
38
|
setupStatus: "FAILED" | "READY";
|
|
39
39
|
runtimeStatus: "RUNNING" | "STOPPED";
|
|
@@ -47,11 +47,11 @@ export declare const behaviorAdapter: {
|
|
|
47
47
|
readonly ok: true;
|
|
48
48
|
readonly status: "SUCCEEDED";
|
|
49
49
|
readonly moduleRef: "execution-runtime";
|
|
50
|
-
readonly moduleVersion: "0.1.
|
|
50
|
+
readonly moduleVersion: "0.1.8";
|
|
51
51
|
} | {
|
|
52
52
|
contract: "deployment.result.v1";
|
|
53
53
|
moduleRef: "execution-runtime";
|
|
54
|
-
moduleVersion: "0.1.
|
|
54
|
+
moduleVersion: "0.1.8";
|
|
55
55
|
ok: false;
|
|
56
56
|
status: "FAILED";
|
|
57
57
|
error: {
|
|
@@ -68,7 +68,7 @@ export declare const behaviorAdapter: {
|
|
|
68
68
|
ok: true;
|
|
69
69
|
status: "SUCCEEDED";
|
|
70
70
|
moduleRef: "execution-runtime";
|
|
71
|
-
moduleVersion: "0.1.
|
|
71
|
+
moduleVersion: "0.1.8";
|
|
72
72
|
data: {
|
|
73
73
|
docs: string;
|
|
74
74
|
setup: string;
|
|
@@ -82,7 +82,7 @@ export declare const behaviorAdapter: {
|
|
|
82
82
|
ok: true;
|
|
83
83
|
status: "SUCCEEDED";
|
|
84
84
|
moduleRef: "execution-runtime";
|
|
85
|
-
moduleVersion: "0.1.
|
|
85
|
+
moduleVersion: "0.1.8";
|
|
86
86
|
data: unknown;
|
|
87
87
|
};
|
|
88
88
|
observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
|
|
@@ -90,7 +90,7 @@ export declare const behaviorAdapter: {
|
|
|
90
90
|
result: {
|
|
91
91
|
contract: "deployment.result.v1";
|
|
92
92
|
moduleRef: "execution-runtime";
|
|
93
|
-
moduleVersion: "0.1.
|
|
93
|
+
moduleVersion: "0.1.8";
|
|
94
94
|
ok: false;
|
|
95
95
|
status: "FAILED";
|
|
96
96
|
error: {
|
|
@@ -107,7 +107,7 @@ export declare const behaviorAdapter: {
|
|
|
107
107
|
readonly ok: true;
|
|
108
108
|
readonly status: "SUCCEEDED";
|
|
109
109
|
readonly moduleRef: "execution-runtime";
|
|
110
|
-
readonly moduleVersion: "0.1.
|
|
110
|
+
readonly moduleVersion: "0.1.8";
|
|
111
111
|
};
|
|
112
112
|
observedEffects: ("Persists execution state, output references and evidence in WAL SQLite" | "Runs the single backend Execution Runtime service")[];
|
|
113
113
|
} | {
|
|
@@ -116,11 +116,11 @@ export declare const behaviorAdapter: {
|
|
|
116
116
|
readonly ok: true;
|
|
117
117
|
readonly status: "SUCCEEDED";
|
|
118
118
|
readonly moduleRef: "execution-runtime";
|
|
119
|
-
readonly moduleVersion: "0.1.
|
|
119
|
+
readonly moduleVersion: "0.1.8";
|
|
120
120
|
} | {
|
|
121
121
|
contract: "deployment.result.v1";
|
|
122
122
|
moduleRef: "execution-runtime";
|
|
123
|
-
moduleVersion: "0.1.
|
|
123
|
+
moduleVersion: "0.1.8";
|
|
124
124
|
ok: false;
|
|
125
125
|
status: "FAILED";
|
|
126
126
|
error: {
|
|
@@ -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.
|
|
6
|
+
readonly moduleVersion: "0.1.8";
|
|
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.
|
|
6
|
+
moduleVersion: "0.1.8",
|
|
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.
|
|
3
|
+
"version": "0.1.8",
|
|
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-
|
|
28
|
-
"@tomflow/proflow-execution-browser-extension": "^0.1.
|
|
29
|
-
"@tomflow/proflow-
|
|
30
|
-
"@tomflow/proflow-model-contracts": "^0.1.
|
|
31
|
-
"@tomflow/proflow-execution-
|
|
27
|
+
"@tomflow/proflow-execution-local": "^0.1.6",
|
|
28
|
+
"@tomflow/proflow-execution-browser-extension": "^0.1.6",
|
|
29
|
+
"@tomflow/proflow-module-contract": "^0.1.5",
|
|
30
|
+
"@tomflow/proflow-model-contracts": "^0.1.5",
|
|
31
|
+
"@tomflow/proflow-execution-contracts": "^0.1.5"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@tomflow/proflow-deployment-conformance": "^0.1.
|
|
34
|
+
"@tomflow/proflow-deployment-conformance": "^0.1.5"
|
|
35
35
|
},
|
|
36
36
|
"description": "Durable, policy-controlled Execution Core orchestration over SQLite and controlled executor ports.",
|
|
37
37
|
"keywords": [
|
package/proflow.module.json
CHANGED
|
@@ -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.
|
|
6
|
+
"moduleVersion": "0.1.8",
|
|
7
7
|
"kind": "service",
|
|
8
8
|
"templateVersion": "1.0.0",
|
|
9
9
|
"platformCompatibility": ">=1.0.0 <2.0.0",
|