@agentproto/runtime 2.5.0 → 2.6.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.
@@ -322,19 +322,6 @@ interface ResolveAuthSpecInput {
322
322
  * derived or fixed provider. */
323
323
  routeGateway?: string;
324
324
  }
325
- /**
326
- * THE billing-auth resolver (DECISIONS 4, 6, 9, 10). Pure: given the adapter
327
- * descriptor + raw config material + (caller-fetched) store key, it decides
328
- * the provider, the mode (ordered — subscription over api-key when a
329
- * subscription credential is present; a requested-but-unsupported mode throws
330
- * `unsupported_auth_mode`), the env var to SET, the derived SCRUB set, and the
331
- * credential + its source. Returns the driver `spec` + the observable `echo`,
332
- * or `undefined` when no provider resolves (⇒ ambient, no injection — never
333
- * guess). NEVER falls back to a default provider/model. Fail-loud on a
334
- * configured-but-missing credential is deferred to the driver's mechanical
335
- * apply (it engages then throws `missing_auth_credential`), so the `explicit`
336
- * / `enforce` signals are carried through on the spec.
337
- */
338
325
  declare function resolveAuthSpec(input: ResolveAuthSpecInput): {
339
326
  spec: ResolvedAuthSpec;
340
327
  echo: AuthEcho;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentproto/runtime",
3
- "version": "2.5.0",
3
+ "version": "2.6.0",
4
4
  "description": "@agentproto/runtime — long-running gateway that turns an agentproto workspace into a live runtime. Composes @agentproto/mcp-server (CRUD verbs) with HTTP transport, HEARTBEAT.md autonomy loop, and append-only conversation persistence. Drop a workspace dir, point your MCP client at it, and the agent ticks on its own.",
5
5
  "keywords": [
6
6
  "agentproto",
@@ -35,6 +35,11 @@
35
35
  "import": "./dist/catalog-models.mjs",
36
36
  "default": "./dist/catalog-models.mjs"
37
37
  },
38
+ "./command-allowlist": {
39
+ "types": "./dist/command-allowlist.d.ts",
40
+ "import": "./dist/command-allowlist.mjs",
41
+ "default": "./dist/command-allowlist.mjs"
42
+ },
38
43
  "./conversations": {
39
44
  "types": "./dist/conversations.d.ts",
40
45
  "import": "./dist/conversations.mjs",
@@ -111,32 +116,33 @@
111
116
  "gray-matter": "^4.0.3",
112
117
  "ws": "^8.21.3",
113
118
  "zod": "^4.4.3",
114
- "@agentproto/acp": "0.7.0",
115
119
  "@agentproto/agent": "0.2.1",
116
- "@agentproto/app-kit": "0.5.1",
120
+ "@agentproto/acp": "0.7.1",
121
+ "@agentproto/app-kit": "0.6.0",
117
122
  "@agentproto/auth": "1.0.0",
118
123
  "@agentproto/command-sandbox": "0.2.0",
119
- "@agentproto/driver": "0.2.0",
120
- "@agentproto/driver-agent-cli": "2.2.1",
124
+ "@agentproto/driver-agent-cli": "2.2.2",
121
125
  "@agentproto/eval-reporters": "0.2.6",
122
126
  "@agentproto/manifest": "0.2.1",
123
127
  "@agentproto/mcp-server": "0.2.5",
124
- "@agentproto/model-catalog": "0.8.2",
128
+ "@agentproto/model-catalog": "0.8.3",
125
129
  "@agentproto/provider-kit": "0.4.1",
126
130
  "@agentproto/provider-presets": "0.5.1",
127
- "@agentproto/providers-store": "0.3.5",
131
+ "@agentproto/providers-store": "0.3.6",
128
132
  "@agentproto/redaction": "0.2.1",
129
- "@agentproto/routine": "0.2.0",
130
- "@agentproto/sandbox": "0.2.2",
131
133
  "@agentproto/secrets": "0.2.2",
132
134
  "@agentproto/telemetry-langfuse": "0.2.4",
133
135
  "@agentproto/tool": "0.2.1",
134
136
  "@agentproto/workflow": "0.2.0",
135
137
  "@agentproto/workflow-loader": "0.1.3",
136
- "@agentproto/workflow-runtime": "0.7.0"
138
+ "@agentproto/workflow-runtime": "0.7.0",
139
+ "@agentproto/routine": "0.2.0",
140
+ "@agentproto/workspace-brain": "0.2.0",
141
+ "@agentproto/driver": "0.2.0",
142
+ "@agentproto/sandbox": "0.2.3"
137
143
  },
138
144
  "optionalDependencies": {
139
- "@agentproto/sandbox-e2b": "0.3.3"
145
+ "@agentproto/sandbox-e2b": "0.3.4"
140
146
  },
141
147
  "devDependencies": {
142
148
  "@types/node": "^25.6.2",