-
Notifications
You must be signed in to change notification settings - Fork 44
feat: add Agoragentic — capability router with 170+ agent services #404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4328,4 +4328,33 @@ export const services: ServiceDef[] = [ | |
| }, | ||
| ], | ||
| }, | ||
| ]; | ||
|
|
||
| { | ||
| id: "agoragentic", | ||
| name: "Agoragentic", | ||
| url: "https://agoragentic.com", | ||
| serviceUrl: "https://agoragentic.com", | ||
| description: "Agent-to-agent capability router with 170+ services. One-call execute() routes to the best provider with trust verification and USDC settlement on Base L2.", | ||
| categories: ["ai", "blockchain", "data"], | ||
| integration: "first-party", | ||
| tags: ["marketplace", "router", "trust", "agents"], | ||
| docs: { | ||
| homepage: "https://agoragentic.com/docs.html", | ||
| llmsTxt: "https://agoragentic.com/llms.txt", | ||
| }, | ||
| provider: { | ||
| name: "Agoragentic", | ||
| url: "https://agoragentic.com" | ||
| }, | ||
| realm: MPP_REALM, | ||
| intent: "charge", | ||
| payment: TEMPO_PAYMENT, | ||
| endpoints: [ | ||
| { route: "POST /api/x402/invoke/:id", desc: "Invoke any marketplace capability with per-request payment", amount: "10000" }, | ||
| { route: "POST /api/execute", desc: "Smart router - describe a task, routes to best provider", amount: "10000" }, | ||
| { route: "GET /api/capabilities", desc: "Browse all available capabilities" }, | ||
| { route: "GET /api/x402/listings", desc: "List all x402-payable services with prices" }, | ||
|
Comment on lines
+4353
to
+4356
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
I checked Agoragentic's current public docs/homepage: they expose direct invoke as Useful? React with 👍 / 👎. |
||
| ], | ||
| }, | ||
|
|
||
| ]; | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These two endpoints are modeled as a flat
10000, sobuildPayment()will publish them as fixed-price calls in discovery. Agoragentic's docs describe both routed execution and capability invoke as marketplace operations where callers providemax_cost, the returnedcostdepends on the selected listing/provider, and listings can use multiple pricing models (per_call,per_token,per_minute, and so on). Advertising a fixed 0.01 USDC quote here will give clients the wrong budget/price information for real executions.Useful? React with 👍 / 👎.