@tomflow/proflow-agent-gateway 0.1.6 → 0.1.7

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 ADDED
@@ -0,0 +1,7 @@
1
+ # @tomflow/proflow-agent-gateway
2
+
3
+ ## 0.1.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Align all Modules to the seven-command setup contract with executable package-owned setup guidance and full Platform setup aggregation.
package/SETUP.md CHANGED
@@ -1,7 +1,14 @@
1
1
  # @tomflow/proflow-agent-gateway — Module Setup
2
2
 
3
- No user or external setup is required by the current frozen Module contract. `Module.install` completes deterministic preparation; `Module.setup` only re-observes current reality and must not ask the user to supply private paths, loopback endpoints, tokens or cross-Module facts.
3
+ ## Goal
4
+ Reach `setupStatus=READY` with zero user configuration.
4
5
 
5
- ## Completion
6
+ ## Step 1 — Resolve producer-owned dependencies
7
+ **Type:** automatic
8
+ **Executable:** `platform setup --module agent-gateway --workspace <workspace>`
9
+ The Module reads the Dev Tunnel public URL and Platform Host endpoint/credentials from producer-owned shared facts. No path, token, endpoint or credential is copied by the user.
6
10
 
7
- Setup is complete only when the Module's own `status` reports `setupStatus=READY`. Re-running setup must re-observe reality; it must not resume from a blind historical step index.
11
+ ## Step 2 Verify completion
12
+ **Type:** automatic verification
13
+ **Executable:** `platform status --workspace <workspace>`
14
+ **Success condition:** `agent-gateway.setupStatus=READY`. If a producer is not READY, the full `platform setup` output must expose that producer's own setup action instead of asking the user to configure Agent Gateway internals.
@@ -6,7 +6,7 @@ export declare const behaviorAdapter: {
6
6
  ok: true;
7
7
  status: "SUCCEEDED";
8
8
  moduleRef: "agent-gateway";
9
- moduleVersion: "0.1.6";
9
+ moduleVersion: "0.1.7";
10
10
  data: {
11
11
  localBaseUrl: string;
12
12
  publicBaseUrl?: string;
@@ -20,7 +20,7 @@ export declare const behaviorAdapter: {
20
20
  readonly ok: true;
21
21
  readonly status: "SUCCEEDED";
22
22
  readonly moduleRef: "agent-gateway";
23
- readonly moduleVersion: "0.1.6";
23
+ readonly moduleVersion: "0.1.7";
24
24
  };
25
25
  observedEffects: string[];
26
26
  }>;
@@ -30,7 +30,7 @@ export declare const behaviorAdapter: {
30
30
  ok: true;
31
31
  status: "SUCCEEDED";
32
32
  moduleRef: "agent-gateway";
33
- moduleVersion: "0.1.6";
33
+ moduleVersion: "0.1.7";
34
34
  data: {
35
35
  setupStatus: "FAILED" | "READY";
36
36
  runtimeStatus: "RUNNING" | "STOPPED";
@@ -44,11 +44,11 @@ export declare const behaviorAdapter: {
44
44
  readonly ok: true;
45
45
  readonly status: "SUCCEEDED";
46
46
  readonly moduleRef: "agent-gateway";
47
- readonly moduleVersion: "0.1.6";
47
+ readonly moduleVersion: "0.1.7";
48
48
  } | {
49
49
  contract: "deployment.result.v1";
50
50
  moduleRef: "agent-gateway";
51
- moduleVersion: "0.1.6";
51
+ moduleVersion: "0.1.7";
52
52
  ok: false;
53
53
  status: "FAILED";
54
54
  error: {
@@ -65,7 +65,7 @@ export declare const behaviorAdapter: {
65
65
  ok: true;
66
66
  status: "SUCCEEDED";
67
67
  moduleRef: "agent-gateway";
68
- moduleVersion: "0.1.6";
68
+ moduleVersion: "0.1.7";
69
69
  data: {
70
70
  docs: string;
71
71
  setup: string;
@@ -79,7 +79,7 @@ export declare const behaviorAdapter: {
79
79
  ok: true;
80
80
  status: "SUCCEEDED";
81
81
  moduleRef: "agent-gateway";
82
- moduleVersion: "0.1.6";
82
+ moduleVersion: "0.1.7";
83
83
  data: {
84
84
  host: string;
85
85
  port: number;
@@ -90,7 +90,7 @@ export declare const behaviorAdapter: {
90
90
  result: {
91
91
  contract: "deployment.result.v1";
92
92
  moduleRef: "agent-gateway";
93
- moduleVersion: "0.1.6";
93
+ moduleVersion: "0.1.7";
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: "agent-gateway";
110
- readonly moduleVersion: "0.1.6";
110
+ readonly moduleVersion: "0.1.7";
111
111
  };
112
112
  observedEffects: string[];
113
113
  } | {
@@ -116,11 +116,11 @@ export declare const behaviorAdapter: {
116
116
  readonly ok: true;
117
117
  readonly status: "SUCCEEDED";
118
118
  readonly moduleRef: "agent-gateway";
119
- readonly moduleVersion: "0.1.6";
119
+ readonly moduleVersion: "0.1.7";
120
120
  } | {
121
121
  contract: "deployment.result.v1";
122
122
  moduleRef: "agent-gateway";
123
- moduleVersion: "0.1.6";
123
+ moduleVersion: "0.1.7";
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: "agent-gateway";
5
5
  readonly packageName: "@tomflow/proflow-agent-gateway";
6
- readonly moduleVersion: "0.1.6";
6
+ readonly moduleVersion: "0.1.7";
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: "agent-gateway",
5
5
  packageName: "@tomflow/proflow-agent-gateway",
6
- moduleVersion: "0.1.6",
6
+ moduleVersion: "0.1.7",
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-agent-gateway",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -25,18 +25,18 @@
25
25
  ],
26
26
  "dependencies": {
27
27
  "zod": "4.1.12",
28
- "@tomflow/proflow-module-contract": "^0.1.4"
28
+ "@tomflow/proflow-module-contract": "^0.1.5"
29
29
  },
30
30
  "devDependencies": {
31
- "@tomflow/proflow-agent-runtime": "^0.1.4",
32
- "@tomflow/proflow-execution-browser-extension": "^0.1.5",
33
- "@tomflow/proflow-platform-host": "^0.1.6",
34
- "@tomflow/proflow-execution-local": "^0.1.5",
35
- "@tomflow/proflow-task-migration-runner": "^0.1.4",
36
- "@tomflow/proflow-execution-runtime": "^0.1.7",
37
- "@tomflow/proflow-deployment-conformance": "^0.1.4",
38
- "@tomflow/proflow-task-store-sqlite": "^0.1.4",
39
- "@tomflow/proflow-task-orchestration": "^0.1.3"
31
+ "@tomflow/proflow-deployment-conformance": "^0.1.5",
32
+ "@tomflow/proflow-execution-runtime": "^0.1.8",
33
+ "@tomflow/proflow-execution-browser-extension": "^0.1.6",
34
+ "@tomflow/proflow-agent-runtime": "^0.1.5",
35
+ "@tomflow/proflow-execution-local": "^0.1.6",
36
+ "@tomflow/proflow-platform-host": "^0.1.7",
37
+ "@tomflow/proflow-task-migration-runner": "^0.1.5",
38
+ "@tomflow/proflow-task-store-sqlite": "^0.1.5",
39
+ "@tomflow/proflow-task-orchestration": "^0.1.4"
40
40
  },
41
41
  "description": "The sole Custom GPT Actions HTTP ingress and OpenAI transport anti-corruption layer.",
42
42
  "keywords": [
@@ -3,7 +3,7 @@
3
3
  "contractVersion": "1.0.0",
4
4
  "moduleRef": "agent-gateway",
5
5
  "packageName": "@tomflow/proflow-agent-gateway",
6
- "moduleVersion": "0.1.6",
6
+ "moduleVersion": "0.1.7",
7
7
  "kind": "service",
8
8
  "templateVersion": "1.0.0",
9
9
  "platformCompatibility": ">=1.0.0 <2.0.0",