@tomflow/proflow-agent-gateway 0.1.0
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/README.md +5 -0
- package/conformance.json +1 -0
- package/dist/deployment/adapter.d.ts +452 -0
- package/dist/deployment/adapter.js +240 -0
- package/dist/deployment/descriptor.d.ts +77 -0
- package/dist/deployment/descriptor.js +88 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +51 -0
- package/dist/src/index.d.ts +99 -0
- package/dist/src/index.js +430 -0
- package/dist/src/process.d.ts +70 -0
- package/dist/src/process.js +193 -0
- package/package.json +61 -0
- package/proflow.module.json +106 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@tomflow/proflow-agent-gateway",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"exports": {
|
|
9
|
+
".": "./dist/src/index.js",
|
|
10
|
+
"./process": "./dist/src/process.js",
|
|
11
|
+
"./deployment/adapter": "./dist/deployment/adapter.js",
|
|
12
|
+
"./deployment/descriptor": "./dist/deployment/descriptor.js",
|
|
13
|
+
"./cli": "./dist/src/cli.js"
|
|
14
|
+
},
|
|
15
|
+
"bin": {
|
|
16
|
+
"proflow-agent-gateway": "./dist/src/cli.js"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"proflow.module.json",
|
|
21
|
+
"conformance.json",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"dependencies": {
|
|
25
|
+
"zod": "4.1.12"
|
|
26
|
+
},
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@tomflow/proflow-agent-runtime": "^0.1.0",
|
|
29
|
+
"@tomflow/proflow-deployment-conformance": "^0.1.0",
|
|
30
|
+
"@tomflow/proflow-module-contract": "^0.1.0",
|
|
31
|
+
"@tomflow/proflow-execution-browser-extension": "^0.1.0",
|
|
32
|
+
"@tomflow/proflow-platform-host": "^0.1.0",
|
|
33
|
+
"@tomflow/proflow-execution-runtime": "^0.1.0",
|
|
34
|
+
"@tomflow/proflow-execution-local": "^0.1.0",
|
|
35
|
+
"@tomflow/proflow-task-migration-runner": "^0.1.0",
|
|
36
|
+
"@tomflow/proflow-task-orchestration": "^0.1.0",
|
|
37
|
+
"@tomflow/proflow-task-store-sqlite": "^0.1.0"
|
|
38
|
+
},
|
|
39
|
+
"description": "The sole Custom GPT Actions HTTP ingress and OpenAI transport anti-corruption layer.",
|
|
40
|
+
"keywords": [
|
|
41
|
+
"proflow",
|
|
42
|
+
"proflow-module",
|
|
43
|
+
"agent-runtime-collaboration"
|
|
44
|
+
],
|
|
45
|
+
"proflow": {
|
|
46
|
+
"module": true,
|
|
47
|
+
"installClass": "core",
|
|
48
|
+
"descriptor": "./dist/deployment/descriptor.js",
|
|
49
|
+
"installRequires": [
|
|
50
|
+
"@tomflow/proflow-agent-runtime",
|
|
51
|
+
"@tomflow/proflow-task-orchestration",
|
|
52
|
+
"@tomflow/proflow-execution-runtime",
|
|
53
|
+
"@tomflow/proflow-platform-host"
|
|
54
|
+
],
|
|
55
|
+
"manifest": "./proflow.module.json"
|
|
56
|
+
},
|
|
57
|
+
"scripts": {
|
|
58
|
+
"test": "node --test tests/**/*.test.ts",
|
|
59
|
+
"typecheck": "tsc --noEmit"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"contract": "module",
|
|
3
|
+
"contractVersion": "1.0.0",
|
|
4
|
+
"moduleRef": "agent-gateway",
|
|
5
|
+
"packageName": "@tomflow/proflow-agent-gateway",
|
|
6
|
+
"moduleVersion": "0.1.0",
|
|
7
|
+
"kind": "service",
|
|
8
|
+
"templateVersion": "1.0.0",
|
|
9
|
+
"platformCompatibility": ">=1.0.0 <2.0.0",
|
|
10
|
+
"installClass": "core",
|
|
11
|
+
"identity": {
|
|
12
|
+
"domain": "agent-runtime-collaboration",
|
|
13
|
+
"summary": "The sole Custom GPT Actions HTTP ingress and OpenAI transport anti-corruption layer."
|
|
14
|
+
},
|
|
15
|
+
"provides": [
|
|
16
|
+
{
|
|
17
|
+
"contractRef": "custom-gpt-actions-gateway",
|
|
18
|
+
"version": "1.0.0"
|
|
19
|
+
}
|
|
20
|
+
],
|
|
21
|
+
"requires": [
|
|
22
|
+
{
|
|
23
|
+
"contractRef": "agent-runtime",
|
|
24
|
+
"versionRange": ">=1.0.0 <2.0.0"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"contractRef": "task-orchestration",
|
|
28
|
+
"versionRange": ">=1.0.0 <2.0.0"
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"contractRef": "execution",
|
|
32
|
+
"versionRange": ">=1.0.0 <2.0.0"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"requirements": [
|
|
36
|
+
{
|
|
37
|
+
"kind": "runtime",
|
|
38
|
+
"runtime": "node",
|
|
39
|
+
"versionRange": ">=24.19.0"
|
|
40
|
+
}
|
|
41
|
+
],
|
|
42
|
+
"configSlots": [
|
|
43
|
+
{
|
|
44
|
+
"key": "localBaseUrl",
|
|
45
|
+
"type": "url",
|
|
46
|
+
"required": true,
|
|
47
|
+
"description": "Loopback HTTP listener URL owned by Agent Gateway and targeted by the public ingress resource"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"key": "publicBaseUrl",
|
|
51
|
+
"type": "url",
|
|
52
|
+
"required": true,
|
|
53
|
+
"description": "Public HTTPS URL supplied by the dev-tunnel resource"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"key": "downstreamCredentialFile",
|
|
57
|
+
"type": "path",
|
|
58
|
+
"required": true,
|
|
59
|
+
"sensitive": true,
|
|
60
|
+
"description": "File containing the dedicated Gateway-to-platform-host transport credential"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"key": "publicIngressModuleRef",
|
|
64
|
+
"type": "moduleRef",
|
|
65
|
+
"required": false,
|
|
66
|
+
"description": "External resource module governing the public ingress",
|
|
67
|
+
"default": "dev-tunnel"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"lifecycle": {
|
|
71
|
+
"supported": [
|
|
72
|
+
"describe",
|
|
73
|
+
"preflight",
|
|
74
|
+
"status",
|
|
75
|
+
"verify",
|
|
76
|
+
"doctor",
|
|
77
|
+
"start",
|
|
78
|
+
"stop",
|
|
79
|
+
"restart",
|
|
80
|
+
"uninstall"
|
|
81
|
+
]
|
|
82
|
+
},
|
|
83
|
+
"verification": {
|
|
84
|
+
"checks": [
|
|
85
|
+
{
|
|
86
|
+
"id": "gateway-readiness",
|
|
87
|
+
"description": "Gateway dependencies and transport guards are ready",
|
|
88
|
+
"lifecycle": "verify"
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"effects": [
|
|
93
|
+
{
|
|
94
|
+
"kind": "process",
|
|
95
|
+
"description": "Manage the declared service process",
|
|
96
|
+
"retention": "remove"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"documentation": [
|
|
100
|
+
{
|
|
101
|
+
"id": "overview",
|
|
102
|
+
"path": "./README.md",
|
|
103
|
+
"description": "Agent Gateway package overview"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
}
|