agent-bios 0.8.0 → 0.9.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.
@@ -125,6 +125,13 @@ depends on it, pin it explicitly instead of trusting the environment.
125
125
  leaving stale, unreferenced definitions live. After updating, re-read the
126
126
  resource, check definitions and active references separately, and remove
127
127
  the orphans explicitly.
128
+ - **A new revision is not live traffic**: on a runtime that pins traffic to a
129
+ named revision (e.g. Cloud Run with a fixed split), `gcloud run deploy` (or
130
+ the equivalent) creates the new revision but shifts no traffic to it — the
131
+ previous revision keeps serving until an explicit `gcloud run services
132
+ update-traffic`. Read the "deploy succeeded" message as "a revision exists",
133
+ not "the new code is serving"; verify the live traffic split before
134
+ concluding the deploy took effect.
128
135
  - **Perimeter controls need the enforcement point's own logs**: an agent-side
129
136
  fetch is not an independent external observer — its egress IP and caching
130
137
  path are opaque, and it may share the protected network or serve a stale
@@ -125,6 +125,13 @@ depends on it, pin it explicitly instead of trusting the environment.
125
125
  leaving stale, unreferenced definitions live. After updating, re-read the
126
126
  resource, check definitions and active references separately, and remove
127
127
  the orphans explicitly.
128
+ - **A new revision is not live traffic**: on a runtime that pins traffic to a
129
+ named revision (e.g. Cloud Run with a fixed split), `gcloud run deploy` (or
130
+ the equivalent) creates the new revision but shifts no traffic to it — the
131
+ previous revision keeps serving until an explicit `gcloud run services
132
+ update-traffic`. Read the "deploy succeeded" message as "a revision exists",
133
+ not "the new code is serving"; verify the live traffic split before
134
+ concluding the deploy took effect.
128
135
  - **Perimeter controls need the enforcement point's own logs**: an agent-side
129
136
  fetch is not an independent external observer — its egress IP and caching
130
137
  path are opaque, and it may share the protected network or serve a stale
@@ -1,4 +1,12 @@
1
1
  {
2
2
  "version": 1,
3
- "promotions": []
3
+ "promotions": [
4
+ {
5
+ "learning_id": "a6feee41-2aeb-4fb6-acc6-4584c5c1336c",
6
+ "tier": "domain",
7
+ "domains": [
8
+ "builder-base"
9
+ ]
10
+ }
11
+ ]
4
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-bios",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "A thin, low-level instruction layer for LLM CLI agents: one set of principles and behavior whichever model you run. Deploys into $HOME by copy via an explicit `agent-bios install`.",
5
5
  "bin": {
6
6
  "agent-bios": "scripts/install.sh"