repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | /** |
| #2 | * Agent Discovery |
| #3 | * |
| #4 | * Discover other agents via ERC-8004 registry queries. |
| #5 | * Fetch and parse agent cards from URIs. |
| #6 | */ |
| #7 | import type { DiscoveredAgent, AgentCard } from "../types.js"; |
| #8 | type Network = "mainnet" | "testnet"; |
| #9 | /** |
| #10 | * Discover agents by scanning the registry. |
| #11 | * Returns a list of discovered agents with their metadata. |
| #12 | */ |
| #13 | export declare function discoverAgents(limit?: number, network?: Network): Promise<DiscoveredAgent[]>; |
| #14 | /** |
| #15 | * Fetch an agent card from a URI. |
| #16 | */ |
| #17 | export declare function fetchAgentCard(uri: string): Promise<AgentCard | null>; |
| #18 | /** |
| #19 | * Search for agents by name or description. |
| #20 | * Scans recent registrations and filters by keyword. |
| #21 | */ |
| #22 | export declare function searchAgents(keyword: string, limit?: number, network?: Network): Promise<DiscoveredAgent[]>; |
| #23 | export {}; |
| #24 | //# sourceMappingURL=discovery.d.ts.map |