aixyz 0.9.0 → 0.10.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/bin.js +1 -1
- package/package.json +4 -4
- package/server/adapters/erc-8004.ts +1 -1
package/bin.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env bun
|
|
2
|
-
|
|
2
|
+
import "@aixyz/cli/bin";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aixyz",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Payment-native SDK for AI Agent",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@a2a-js/sdk": "^0.3.10",
|
|
26
|
-
"@aixyz/cli": "0.
|
|
27
|
-
"@aixyz/config": "0.
|
|
28
|
-
"@aixyz/erc-8004": "0.
|
|
26
|
+
"@aixyz/cli": "0.10.0",
|
|
27
|
+
"@aixyz/config": "0.10.0",
|
|
28
|
+
"@aixyz/erc-8004": "0.10.0",
|
|
29
29
|
"@modelcontextprotocol/sdk": "^1.26.0",
|
|
30
30
|
"@next/env": "^16.1.6",
|
|
31
31
|
"@x402/core": "^2.3.1",
|
|
@@ -21,7 +21,7 @@ export function getAgentRegistrationFile(
|
|
|
21
21
|
if (options.a2a) {
|
|
22
22
|
services.push({
|
|
23
23
|
name: "A2A",
|
|
24
|
-
endpoint: new URL("/agent", config.url).toString(),
|
|
24
|
+
endpoint: new URL("/.well-known/agent-card.json", config.url).toString(),
|
|
25
25
|
version: "0.3.0",
|
|
26
26
|
});
|
|
27
27
|
}
|