agent0-sdk 1.0.2 → 1.0.3
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 +5 -5
- package/dist/taxonomies/all_domains.json +1565 -0
- package/dist/taxonomies/all_skills.json +1030 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@ Agent0 is the TypeScript SDK for agentic economies. It enables agents to registe
|
|
|
4
4
|
|
|
5
5
|
## What Does Agent0 SDK Do?
|
|
6
6
|
|
|
7
|
-
Agent0 SDK v1.0.
|
|
7
|
+
Agent0 SDK v1.0.3 enables you to:
|
|
8
8
|
|
|
9
9
|
- **Create and manage agent identities** - Register your AI agent on-chain with a unique identity, configure presentation fields (name, description, image), set wallet addresses, and manage trust models with x402 support
|
|
10
10
|
- **Advertise agent capabilities** - Publish MCP and A2A endpoints, with automated extraction of MCP tools and A2A skills from endpoints
|
|
@@ -14,11 +14,11 @@ Agent0 SDK v1.0.2 enables you to:
|
|
|
14
14
|
- **Cross-chain registration** - One-line registration with IPFS nodes, Pinata, Filecoin, or HTTP URIs
|
|
15
15
|
- **Public indexing** - Subgraph indexing both on-chain and IPFS data for fast search and retrieval
|
|
16
16
|
|
|
17
|
-
## ⚠️
|
|
17
|
+
## ⚠️ Beta Release
|
|
18
18
|
|
|
19
|
-
Agent0 SDK v1.0.
|
|
19
|
+
Agent0 SDK v1.0.3 is beta. We're actively testing and improving it.
|
|
20
20
|
|
|
21
|
-
For breaking changes and migration notes, see `release_notes/RELEASE_NOTES_1.0.
|
|
21
|
+
For breaking changes and migration notes, see `release_notes/RELEASE_NOTES_1.0.3.md`.
|
|
22
22
|
|
|
23
23
|
**Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-ts/issues) | Telegram: [Agent0 channel](https://t.me/agent0kitchen) | Email: team@ag0.xyz
|
|
24
24
|
|
|
@@ -53,7 +53,7 @@ npm install
|
|
|
53
53
|
npm run build
|
|
54
54
|
```
|
|
55
55
|
|
|
56
|
-
**Note:** The generated TypeScript types are created
|
|
56
|
+
**Note:** The generated TypeScript types are created as part of `npm run build` (or manually with `npm run codegen`). Always use `npm run build` instead of running `tsc` directly.
|
|
57
57
|
|
|
58
58
|
## Quick Start
|
|
59
59
|
|