@absolutejs/agent 0.23.13 → 0.23.14

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -7,6 +7,12 @@ independently installable and replaceable; this package provides one documented
7
7
  golden path, typed subpath exports, production-readiness checks, and an
8
8
  AbsoluteJS manifest that lets coding agents discover the whole stack.
9
9
 
10
+ The facade is the single Agency runtime owner. A2A, MCP, Agent Control, Wallet,
11
+ and other extensions declare Agency as a required peer, externalize it from
12
+ their builds, and test a conservative compatibility window. The facade installs
13
+ the matching real Agency dependency, so one application cannot silently create
14
+ parallel action types or ledgers.
15
+
10
16
  ```ts
11
17
  import { assertProductionReady, defineAgentStack } from "@absolutejs/agent";
12
18
  import { createAgentRuntime } from "@absolutejs/agent/runtime";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/agent",
3
- "version": "0.23.13",
3
+ "version": "0.23.14",
4
4
  "description": "The production-grade, provider-neutral agent stack for AbsoluteJS: auth, actions, runtime, sandboxing, trust, memory, inbox, discovery, MCP, A2A, policy, wallet limits, controls, and conformance.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -136,10 +136,10 @@
136
136
  "release": "bun run format && bun run check:package && npm publish --access public"
137
137
  },
138
138
  "dependencies": {
139
- "@absolutejs/a2a": "^0.3.2",
139
+ "@absolutejs/a2a": "^0.3.3",
140
140
  "@absolutejs/agency": "^0.7.1",
141
141
  "@absolutejs/agent-conformance": "^0.14.0",
142
- "@absolutejs/agent-control": "^0.5.3",
142
+ "@absolutejs/agent-control": "^0.5.4",
143
143
  "@absolutejs/agent-discovery": "^0.2.1",
144
144
  "@absolutejs/agent-inbox": "^0.3.3",
145
145
  "@absolutejs/agent-memory": "^0.1.5",
@@ -150,9 +150,9 @@
150
150
  "@absolutejs/auth": "^0.56.17",
151
151
  "@absolutejs/execution": "0.14.4",
152
152
  "@absolutejs/manifest": "^0.4.0",
153
- "@absolutejs/mcp": "^0.11.0",
153
+ "@absolutejs/mcp": "^0.11.1",
154
154
  "@absolutejs/policy": "^0.2.0",
155
- "@absolutejs/wallet": "^0.8.6",
155
+ "@absolutejs/wallet": "^0.9.1",
156
156
  "@absolutejs/webmcp": "^0.1.3",
157
157
  "@sinclair/typebox": "^0.34.0"
158
158
  },