|
3 | 3 | ## Overview |
4 | 4 |
|
5 | 5 | ARDHF wraps [HuggingFace Discover](https://github.com/huggingface/hf-discover) |
6 | | -(ARD — Agentic Resource Discovery) as an ADK `BaseToolset`. It gives any ADK |
| 6 | +([ARD](https://agenticresourcediscovery.org) — Agentic Resource Discovery) as an ADK `BaseToolset`. It gives any ADK |
7 | 7 | agent the ability to **discover, inspect, and connect to** agents, skills, |
8 | 8 | MCP servers, HuggingFace Spaces, and other agentic resources at runtime. |
9 | 9 |
|
@@ -50,7 +50,7 @@ tools automatically. |
50 | 50 | | `search_ards` | Search ARD registries across all artifact types (agents, skills, MCP servers, Spaces) | |
51 | 51 | | `search_agents` | Search filtered to A2A agents (`application/a2a-agent-card+json`) | |
52 | 52 | | `search_skills` | Search filtered to skills (`application/ai-skill`) | |
53 | | -| `search_tools` | Search filtered to MCP servers (`application/mcp-server+json`) | |
| 53 | +| `search_tools` | Search filtered to MCP servers (`application/mcp-server-card+json`) | |
54 | 54 | | `search_spaces` | Search filtered to HuggingFace Spaces (`application/vnd.huggingface.space+json`) | |
55 | 55 | | `get_agent_card` | Fetch a specific artifact (agent card, skill markdown, MCP descriptor) by URL | |
56 | 56 | | `connect_agent` | Send a message to a remote A2A agent — may return an immediate response or start a long-running task with its own lifecycle | |
@@ -241,7 +241,7 @@ Use multiple toolset instances to search different registries: |
241 | 241 |
|
242 | 242 | ```python |
243 | 243 | hf_toolset = AgentFinderToolset( |
244 | | - registry_url="https://evalstate-hf-discover.hf.space", |
| 244 | + registry_url="https://huggingface-hf-discover.hf.space", |
245 | 245 | tool_name_prefix="hf", |
246 | 246 | ) |
247 | 247 | internal_toolset = AgentFinderToolset( |
@@ -300,8 +300,8 @@ pytest tests/unittests/tools/ardhf/ -v |
300 | 300 |
|
301 | 301 | ## References |
302 | 302 |
|
303 | | -- [ARD Specification](https://github.com/nichochar/ard-spec) — Agentic Resource Discovery specification |
| 303 | +- [ARD — Agentic Resource Discovery](https://agenticresourcediscovery.org) — Official ARD specification and documentation |
| 304 | +- [ARD Specification (GitHub)](https://github.com/ards-project/ard-spec) — ARD spec repository |
304 | 305 | - [HuggingFace Discover](https://github.com/huggingface/hf-discover) — ARD reference implementation |
305 | | -- [ai-catalog](https://github.com/nichochar/ai-catalog) — Curated agentic resource catalog |
306 | 306 | - [ADK Documentation](https://google.github.io/adk-docs/) — Google Agent Development Kit |
307 | | -- [A2A Protocol](https://github.com/a2aproject/a2a-spec) — Agent-to-Agent protocol specification |
| 307 | +- [A2A Protocol](https://github.com/google/A2A) — Agent-to-Agent protocol specification |
0 commit comments