@a5c-ai/cloud 5.0.1-staging.69cb593ea536 → 5.0.1-staging.6ab464ce4307
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 +1 -1
- package/SPEC.md +10 -10
- package/package.json +7 -1
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@ This package implements the spec in [SPEC.md](./SPEC.md) with:
|
|
|
7
7
|
- environment-aware config loading and validation
|
|
8
8
|
- deployment plan construction
|
|
9
9
|
- Terraform rendering for Minikube, existing clusters, EKS, AKS, and GKE
|
|
10
|
-
- Kubernetes manifest rendering for `kanban`, `agent-mux-gateway`, and optional `
|
|
10
|
+
- Kubernetes manifest rendering for `kanban`, `agent-mux-gateway`, and optional `agent-platform`
|
|
11
11
|
- install, upgrade, status, auth bootstrap, provider configuration, and agent install workflows
|
|
12
12
|
- a `cloud` CLI built on the SDK
|
|
13
13
|
|
package/SPEC.md
CHANGED
|
@@ -23,14 +23,14 @@ The package is responsible for making the repo's deployable utilities work toget
|
|
|
23
23
|
- newly created managed cluster on EKS, AKS, or GKE
|
|
24
24
|
3. Support install, upgrade, reconfigure, and drift-aware reconciliation.
|
|
25
25
|
4. Make `agent-mux` Kubernetes mode a first-class deployment option.
|
|
26
|
-
5. Optionally configure `
|
|
26
|
+
5. Optionally configure `agent-platform` providers and model routing.
|
|
27
27
|
6. Optionally install agent binaries and their Babysitter plugins when the target runtime needs them.
|
|
28
28
|
7. Provide a non-local authentication bootstrap path, including a default admin password flow.
|
|
29
29
|
8. Fit existing repo CI/release conventions with staging and production automation.
|
|
30
30
|
|
|
31
31
|
## 3. Non-Goals
|
|
32
32
|
|
|
33
|
-
- Replacing deep runtime logic that belongs in `agent-mux`, `kanban`, or `
|
|
33
|
+
- Replacing deep runtime logic that belongs in `agent-mux`, `kanban`, or `agent-platform`
|
|
34
34
|
- Becoming a general-purpose IaC framework outside this monorepo
|
|
35
35
|
- Owning application business logic for kanban, gateway, or Babysitter orchestration
|
|
36
36
|
- Hiding provider credentials inside the repo; secrets must come from the environment, secret stores, or explicit config files
|
|
@@ -41,7 +41,7 @@ The package is responsible for making the repo's deployable utilities work toget
|
|
|
41
41
|
|
|
42
42
|
- `@a5c-ai/kanban`
|
|
43
43
|
- `@a5c-ai/agent-mux-gateway`
|
|
44
|
-
- `@a5c-ai/
|
|
44
|
+
- `@a5c-ai/agent-platform` as an optional service/runtime
|
|
45
45
|
- optional observer and supporting runtime components when enabled
|
|
46
46
|
|
|
47
47
|
The baseline topology is:
|
|
@@ -134,7 +134,7 @@ packages/cloud/
|
|
|
134
134
|
adapters/
|
|
135
135
|
kanban.ts
|
|
136
136
|
agent-mux-gateway.ts
|
|
137
|
-
|
|
137
|
+
agent-platform.ts
|
|
138
138
|
tests/
|
|
139
139
|
unit/
|
|
140
140
|
integration/
|
|
@@ -271,7 +271,7 @@ The deployment package must own the cross-service wiring:
|
|
|
271
271
|
|
|
272
272
|
- kanban receives the gateway base URL automatically
|
|
273
273
|
- gateway receives storage paths and auth bootstrap config automatically
|
|
274
|
-
- optional
|
|
274
|
+
- optional agent-platform receives gateway URL, provider config, and model config automatically
|
|
275
275
|
- agent-mux Kubernetes invocation mode is selectable in generated runtime config
|
|
276
276
|
|
|
277
277
|
### 10.3 Auth Bootstrap
|
|
@@ -308,7 +308,7 @@ Upgrade sequence:
|
|
|
308
308
|
|
|
309
309
|
## 12. Provider and Model Configuration
|
|
310
310
|
|
|
311
|
-
Optional `
|
|
311
|
+
Optional `agent-platform` setup should support:
|
|
312
312
|
|
|
313
313
|
- provider credentials references
|
|
314
314
|
- provider enable/disable lists
|
|
@@ -320,7 +320,7 @@ This should be represented as declarative config, not one-off shell scripts.
|
|
|
320
320
|
|
|
321
321
|
Open dependency:
|
|
322
322
|
|
|
323
|
-
- some provider/model automation may require new non-interactive config surfaces in `
|
|
323
|
+
- some provider/model automation may require new non-interactive config surfaces in `agent-platform` and/or `agent-mux`
|
|
324
324
|
|
|
325
325
|
## 13. Optional Agent + Plugin Installation
|
|
326
326
|
|
|
@@ -400,7 +400,7 @@ Suggested minimum scripts:
|
|
|
400
400
|
|
|
401
401
|
- gateway auth/runtime semantics
|
|
402
402
|
- kanban application behavior
|
|
403
|
-
-
|
|
403
|
+
- agent-platform orchestration/runtime behavior
|
|
404
404
|
- agent-mux adapter capabilities and installation semantics
|
|
405
405
|
|
|
406
406
|
## 17. Dependency Gaps Identified During Spec
|
|
@@ -411,7 +411,7 @@ The following areas should be tracked outside `packages/cloud` implementation:
|
|
|
411
411
|
Tracking: `ACA-234`
|
|
412
412
|
2. `kanban` needs cloud bootstrap behavior so it can connect to a provisioned gateway without manual local-storage token pasting as the only path.
|
|
413
413
|
Tracking: `ACA-235`
|
|
414
|
-
3. `
|
|
414
|
+
3. `agent-platform` and/or `agent-mux` need stronger non-interactive provider/model and harness/plugin installation/configuration surfaces.
|
|
415
415
|
Tracking: `ACA-236`
|
|
416
416
|
4. Root CI/release automation needs explicit support for the new cloud workspace.
|
|
417
417
|
Tracking: `ACA-237`
|
|
@@ -433,7 +433,7 @@ The following areas should be tracked outside `packages/cloud` implementation:
|
|
|
433
433
|
|
|
434
434
|
### Phase 3
|
|
435
435
|
|
|
436
|
-
- add optional
|
|
436
|
+
- add optional agent-platform provider/model setup
|
|
437
437
|
- add optional harness/plugin install flow
|
|
438
438
|
- wire staging/prod pipelines
|
|
439
439
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a5c-ai/cloud",
|
|
3
|
-
"version": "5.0.1-staging.
|
|
3
|
+
"version": "5.0.1-staging.6ab464ce4307",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Deployment SDK and CLI for Babysitter Kubernetes environments.",
|
|
@@ -72,5 +72,11 @@
|
|
|
72
72
|
"rimraf": "^6.1.3",
|
|
73
73
|
"typescript": "^5.4.2",
|
|
74
74
|
"vitest": "^4.0.18"
|
|
75
|
+
},
|
|
76
|
+
"atlas": {
|
|
77
|
+
"layers": [
|
|
78
|
+
"L10"
|
|
79
|
+
],
|
|
80
|
+
"muxes": []
|
|
75
81
|
}
|
|
76
82
|
}
|