agent0-sdk 1.0.0__tar.gz → 1.0.1__tar.gz

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 (25) hide show
  1. {agent0_sdk-1.0.0/agent0_sdk.egg-info → agent0_sdk-1.0.1}/PKG-INFO +6 -12
  2. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/README.md +5 -11
  3. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/__init__.py +1 -1
  4. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1/agent0_sdk.egg-info}/PKG-INFO +6 -12
  5. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/pyproject.toml +1 -1
  6. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/LICENSE +0 -0
  7. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/MANIFEST.in +0 -0
  8. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/agent.py +0 -0
  9. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/contracts.py +0 -0
  10. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/endpoint_crawler.py +0 -0
  11. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/feedback_manager.py +0 -0
  12. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/indexer.py +0 -0
  13. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/ipfs_client.py +0 -0
  14. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/models.py +0 -0
  15. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/oasf_validator.py +0 -0
  16. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/sdk.py +0 -0
  17. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/subgraph_client.py +0 -0
  18. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/core/web3_client.py +0 -0
  19. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/taxonomies/all_domains.json +0 -0
  20. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk/taxonomies/all_skills.json +0 -0
  21. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk.egg-info/SOURCES.txt +0 -0
  22. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk.egg-info/dependency_links.txt +0 -0
  23. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk.egg-info/requires.txt +0 -0
  24. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/agent0_sdk.egg-info/top_level.txt +0 -0
  25. {agent0_sdk-1.0.0 → agent0_sdk-1.0.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent0-sdk
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Python SDK for agent portability, discovery and trust based on ERC-8004
5
5
  Author-email: Marco De Rossi <marco@ag0.xyz>
6
6
  License: MIT License
@@ -76,7 +76,7 @@ Agent0 is the SDK for agentic economies. It enables agents to register, advertis
76
76
 
77
77
  ## What Does Agent0 SDK Do?
78
78
 
79
- Agent0 SDK v0.31 enables you to:
79
+ Agent0 SDK enables you to:
80
80
 
81
81
  - **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
82
82
  - **Advertise agent capabilities** - Publish MCP and A2A endpoints, with automated extraction of MCP tools and A2A skills from endpoints
@@ -86,11 +86,7 @@ Agent0 SDK v0.31 enables you to:
86
86
  - **Cross-chain registration** - One-line registration with IPFS nodes, Pinata, Filecoin, or HTTP URIs
87
87
  - **Public indexing** - Subgraph indexing both on-chain and IPFS data for fast search and retrieval
88
88
 
89
- ## ⚠️ Alpha Release
90
-
91
- Agent0 SDK v0.31 is in **alpha** with bugs and is not production ready. We're actively testing and improving it.
92
-
93
- **Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-py/issues) | Telegram: [@marcoderossi](https://t.me/marcoderossi) | Email: marco.derossi@consensys.net
89
+ **Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-py/issues) | Telegram: [@marcoderossi](https://t.me/marcoderossi) | Email: marco@ag0.xyz
94
90
 
95
91
  ## Installation
96
92
 
@@ -156,11 +152,6 @@ agent.addSkill("natural_language_processing/natural_language_generation/summariz
156
152
  agent.addDomain("finance_and_business/investment_services", validate_oasf=True)
157
153
  agent.addDomain("technology/data_science/data_science", validate_oasf=True)
158
154
 
159
- # Configure wallet and trust
160
- # Note: agentWallet is an on-chain verified attribute. setAgentWallet() is on-chain only.
161
- # EOAs: the NEW wallet must sign an EIP-712 message. If you pass new_wallet_signer, the SDK will
162
- # build + sign the typed data automatically.
163
- # If the current SDK signer address matches the new wallet, it can auto-sign without new_wallet_signer.
164
155
  agent.setTrust(reputation=True, cryptoEconomic=True)
165
156
 
166
157
  # Add metadata and set status
@@ -361,6 +352,9 @@ Complete working examples are available in the `tests/` directory:
361
352
  - `test_feedback.py` - Complete feedback flow with IPFS storage
362
353
  - `test_search.py` - Agent search and discovery
363
354
  - `test_transfer.py` - Agent ownership transfer
355
+ - `test_oasf_management.py` - OASF skills/domains management (unit tests)
356
+ - `test_real_public_servers.py` - Endpoint crawler against real public MCP/A2A servers
357
+ - `test_multi_chain.py` - Multi-chain read-only operations (subgraph-based)
364
358
 
365
359
  ## Documentation
366
360
 
@@ -6,7 +6,7 @@ Agent0 is the SDK for agentic economies. It enables agents to register, advertis
6
6
 
7
7
  ## What Does Agent0 SDK Do?
8
8
 
9
- Agent0 SDK v0.31 enables you to:
9
+ Agent0 SDK enables you to:
10
10
 
11
11
  - **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
12
12
  - **Advertise agent capabilities** - Publish MCP and A2A endpoints, with automated extraction of MCP tools and A2A skills from endpoints
@@ -16,11 +16,7 @@ Agent0 SDK v0.31 enables you to:
16
16
  - **Cross-chain registration** - One-line registration with IPFS nodes, Pinata, Filecoin, or HTTP URIs
17
17
  - **Public indexing** - Subgraph indexing both on-chain and IPFS data for fast search and retrieval
18
18
 
19
- ## ⚠️ Alpha Release
20
-
21
- Agent0 SDK v0.31 is in **alpha** with bugs and is not production ready. We're actively testing and improving it.
22
-
23
- **Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-py/issues) | Telegram: [@marcoderossi](https://t.me/marcoderossi) | Email: marco.derossi@consensys.net
19
+ **Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-py/issues) | Telegram: [@marcoderossi](https://t.me/marcoderossi) | Email: marco@ag0.xyz
24
20
 
25
21
  ## Installation
26
22
 
@@ -86,11 +82,6 @@ agent.addSkill("natural_language_processing/natural_language_generation/summariz
86
82
  agent.addDomain("finance_and_business/investment_services", validate_oasf=True)
87
83
  agent.addDomain("technology/data_science/data_science", validate_oasf=True)
88
84
 
89
- # Configure wallet and trust
90
- # Note: agentWallet is an on-chain verified attribute. setAgentWallet() is on-chain only.
91
- # EOAs: the NEW wallet must sign an EIP-712 message. If you pass new_wallet_signer, the SDK will
92
- # build + sign the typed data automatically.
93
- # If the current SDK signer address matches the new wallet, it can auto-sign without new_wallet_signer.
94
85
  agent.setTrust(reputation=True, cryptoEconomic=True)
95
86
 
96
87
  # Add metadata and set status
@@ -291,6 +282,9 @@ Complete working examples are available in the `tests/` directory:
291
282
  - `test_feedback.py` - Complete feedback flow with IPFS storage
292
283
  - `test_search.py` - Agent search and discovery
293
284
  - `test_transfer.py` - Agent ownership transfer
285
+ - `test_oasf_management.py` - OASF skills/domains management (unit tests)
286
+ - `test_real_public_servers.py` - Endpoint crawler against real public MCP/A2A servers
287
+ - `test_multi_chain.py` - Multi-chain read-only operations (subgraph-based)
294
288
 
295
289
  ## Documentation
296
290
 
@@ -30,7 +30,7 @@ except ImportError:
30
30
  Agent = None
31
31
  _sdk_available = False
32
32
 
33
- __version__ = "1.0.0"
33
+ __version__ = "1.0.1"
34
34
  __all__ = [
35
35
  "SDK",
36
36
  "Agent",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: agent0-sdk
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Python SDK for agent portability, discovery and trust based on ERC-8004
5
5
  Author-email: Marco De Rossi <marco@ag0.xyz>
6
6
  License: MIT License
@@ -76,7 +76,7 @@ Agent0 is the SDK for agentic economies. It enables agents to register, advertis
76
76
 
77
77
  ## What Does Agent0 SDK Do?
78
78
 
79
- Agent0 SDK v0.31 enables you to:
79
+ Agent0 SDK enables you to:
80
80
 
81
81
  - **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
82
82
  - **Advertise agent capabilities** - Publish MCP and A2A endpoints, with automated extraction of MCP tools and A2A skills from endpoints
@@ -86,11 +86,7 @@ Agent0 SDK v0.31 enables you to:
86
86
  - **Cross-chain registration** - One-line registration with IPFS nodes, Pinata, Filecoin, or HTTP URIs
87
87
  - **Public indexing** - Subgraph indexing both on-chain and IPFS data for fast search and retrieval
88
88
 
89
- ## ⚠️ Alpha Release
90
-
91
- Agent0 SDK v0.31 is in **alpha** with bugs and is not production ready. We're actively testing and improving it.
92
-
93
- **Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-py/issues) | Telegram: [@marcoderossi](https://t.me/marcoderossi) | Email: marco.derossi@consensys.net
89
+ **Bug reports & feedback:** GitHub: [Report issues](https://github.com/agent0lab/agent0-py/issues) | Telegram: [@marcoderossi](https://t.me/marcoderossi) | Email: marco@ag0.xyz
94
90
 
95
91
  ## Installation
96
92
 
@@ -156,11 +152,6 @@ agent.addSkill("natural_language_processing/natural_language_generation/summariz
156
152
  agent.addDomain("finance_and_business/investment_services", validate_oasf=True)
157
153
  agent.addDomain("technology/data_science/data_science", validate_oasf=True)
158
154
 
159
- # Configure wallet and trust
160
- # Note: agentWallet is an on-chain verified attribute. setAgentWallet() is on-chain only.
161
- # EOAs: the NEW wallet must sign an EIP-712 message. If you pass new_wallet_signer, the SDK will
162
- # build + sign the typed data automatically.
163
- # If the current SDK signer address matches the new wallet, it can auto-sign without new_wallet_signer.
164
155
  agent.setTrust(reputation=True, cryptoEconomic=True)
165
156
 
166
157
  # Add metadata and set status
@@ -361,6 +352,9 @@ Complete working examples are available in the `tests/` directory:
361
352
  - `test_feedback.py` - Complete feedback flow with IPFS storage
362
353
  - `test_search.py` - Agent search and discovery
363
354
  - `test_transfer.py` - Agent ownership transfer
355
+ - `test_oasf_management.py` - OASF skills/domains management (unit tests)
356
+ - `test_real_public_servers.py` - Endpoint crawler against real public MCP/A2A servers
357
+ - `test_multi_chain.py` - Multi-chain read-only operations (subgraph-based)
364
358
 
365
359
  ## Documentation
366
360
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "agent0-sdk"
7
- version = "1.0.0"
7
+ version = "1.0.1"
8
8
  description = "Python SDK for agent portability, discovery and trust based on ERC-8004"
9
9
  authors = [
10
10
  {name = "Marco De Rossi", email = "marco@ag0.xyz"}
File without changes
File without changes
File without changes