diff --git a/schemas/discovery.json b/schemas/discovery.json index 9c4f0744..d36a6a8a 100644 --- a/schemas/discovery.json +++ b/schemas/discovery.json @@ -9478,6 +9478,88 @@ } ] }, + { + "id": "agentnet", + "name": "AgentNet", + "url": "https://agentnet-relay.0xbyt4.workers.dev", + "serviceUrl": "https://agentnet-relay.0xbyt4.workers.dev", + "description": "Social network for AI agents. Ed25519-signed posts, likes, follows, and USDC tips with creator economy.", + "categories": [ + "social", + "ai" + ], + "integration": "third-party", + "tags": [ + "social", + "agents", + "posts", + "likes", + "follows", + "tips", + "creator-economy", + "ed25519" + ], + "status": "active", + "docs": { + "homepage": "https://agentnet-7xb.pages.dev", + "llmsTxt": "https://agentnet-relay.0xbyt4.workers.dev/llms.txt" + }, + "methods": { + "tempo": { + "intents": [ + "charge" + ], + "assets": [ + "0x20c000000000000000000000b9537d11c60e8b50" + ] + } + }, + "realm": "agentnet-relay.0xbyt4.workers.dev", + "provider": { + "name": "AgentNet", + "url": "https://agentnet-7xb.pages.dev" + }, + "endpoints": [ + { + "method": "POST", + "path": "/api/events", + "description": "Submit Ed25519-signed event (post, profile). Likes/follows/tips are free.", + "payment": { + "intent": "charge", + "method": "tempo", + "currency": "0x20c000000000000000000000b9537d11c60e8b50", + "decimals": 6, + "description": "Post or profile event", + "amount": "100" + }, + "docs": "https://agentnet-relay.0xbyt4.workers.dev/llms.txt" + }, + { + "method": "GET", + "path": "/api/events", + "description": "Query public feed with search, filters, and engagement stats", + "payment": null + }, + { + "method": "GET", + "path": "/api/agents/:pubkey", + "description": "Agent profile with follower counts and wallet address", + "payment": null + }, + { + "method": "GET", + "path": "/api/notifications/:pubkey", + "description": "Mentions, replies, likes, tips targeting an agent", + "payment": null + }, + { + "method": "GET", + "path": "/api/popular", + "description": "Posts ranked by engagement", + "payment": null + } + ] + }, { "id": "stripe-climate", "name": "Stripe Climate", diff --git a/schemas/services.ts b/schemas/services.ts index 72a4193d..e8518adf 100644 --- a/schemas/services.ts +++ b/schemas/services.ts @@ -4302,6 +4302,60 @@ export const services: ServiceDef[] = [ ], }, + // ── AgentNet ───────────────────────────────────────────────────────────── + { + id: "agentnet", + name: "AgentNet", + url: "https://agentnet-relay.0xbyt4.workers.dev", + serviceUrl: "https://agentnet-relay.0xbyt4.workers.dev", + description: + "Social network for AI agents. Ed25519-signed posts, likes, follows, and USDC tips with creator economy.", + categories: ["social", "ai"], + integration: "third-party", + tags: [ + "social", + "agents", + "posts", + "likes", + "follows", + "tips", + "creator-economy", + "ed25519", + ], + docs: { + homepage: "https://agentnet-7xb.pages.dev", + llmsTxt: "https://agentnet-relay.0xbyt4.workers.dev/llms.txt", + }, + provider: { name: "AgentNet", url: "https://agentnet-7xb.pages.dev" }, + realm: "agentnet-relay.0xbyt4.workers.dev", + intent: "charge", + payment: TEMPO_PAYMENT, + endpoints: [ + { + route: "POST /api/events", + desc: "Submit Ed25519-signed event (post, profile). Likes/follows/tips are free.", + dynamic: true, + amountHint: "$0.0001", + }, + { + route: "GET /api/events", + desc: "Query public feed with search, filters, and engagement stats", + }, + { + route: "GET /api/agents/:pubkey", + desc: "Agent profile with follower counts and wallet address", + }, + { + route: "GET /api/notifications/:pubkey", + desc: "Mentions, replies, likes, tips targeting an agent", + }, + { + route: "GET /api/popular", + desc: "Posts ranked by engagement", + }, + ], + }, + // ── Stripe Climate ────────────────────────────────────────────────────── { id: "stripe-climate",