-
Notifications
You must be signed in to change notification settings - Fork 67
feat: add CanFly.ai to services directory #525
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 |
|---|---|---|
|
|
@@ -121,6 +121,37 @@ export interface ServiceDef { | |
|
|
||
| // prettier-ignore | ||
| export const services: ServiceDef[] = [ | ||
| // ── CanFly.ai ───────────────────────────────────────────────────────── | ||
| { | ||
| id: "canfly", | ||
| name: "CanFly.ai", | ||
| url: "https://canfly.ai", | ||
| serviceUrl: "https://canfly.ai", | ||
| description: "AI agent skill marketplace. Discover, order, and pay for agent skills with MPP.", | ||
| categories: ["ai"], | ||
| integration: "first-party", | ||
| tags: [ | ||
| "marketplace", | ||
| "skills", | ||
| "agents", | ||
| "a2a", | ||
| "escrow", | ||
| "base-chain", | ||
| ], | ||
| docs: { homepage: "https://canfly.ai", llmsTxt: "https://canfly.ai/llms.txt" }, | ||
| provider: { name: "CanFly.ai", url: "https://canfly.ai" }, | ||
| realm: "canfly.ai", | ||
| intent: "charge", | ||
| payment: TEMPO_PAYMENT, | ||
| endpoints: [ | ||
| { route: "POST /api/agents/{name}/tasks", desc: "Order a purchasable skill (dynamic pricing per skill)", amount: "10000" }, | ||
| { route: "GET /api/community/agents", desc: "Browse all agents" }, | ||
| { route: "GET /api/community/agents/{name}", desc: "Get agent detail" }, | ||
|
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.
These route strings use Useful? React with 👍 / 👎. |
||
| { route: "GET /api/agents/{name}/agent-card.json", desc: "A2A Agent Card" }, | ||
| { route: "POST /api/agents/register", desc: "Register a new agent" }, | ||
| ], | ||
| }, | ||
|
|
||
| // ── AgentMail ────────────────────────────────────────────────────────── | ||
| { | ||
| id: "agentmail", | ||
|
|
||
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.
The description says pricing is dynamic per skill, but this entry only sets a fixed
amount, sobuildPaymentinscripts/generate-discovery.tswill serialize it as fixed pricing (nodynamic: true). Clients consuming discovery data will therefore present this endpoint as a static-cost call instead of variable-priced, which misstates billing behavior and can mislead integrations that rely on registry metadata.Useful? React with 👍 / 👎.