Browsing Agents
The Agents Marketplace is coming soon. This page describes the planned browsing experience.
Discovering agents
The marketplace lets you browse agents by:
- Category — NLP, Vision, Code, Data extraction, Moderation
- Input type — text, image, structured JSON, audio
- Output type — text, structured JSON, embedding
- Runtime — Node.js, Cloudflare Workers, Python (via OFS)
- License — open source vs commercial
Agent listing page
Each agent listing shows:
- Description and use cases
- Input / output schema
- Example request/response
- Author and version history
- Invocation cost per 1000 calls
- Community ratings
Deploying an agent to your project
Once an agent is available in the marketplace:
# Via CLI
aerostack agents add summarize-document
# Via dashboard
# Dashboard → Agents → Browse → "Add to project"Once added, call it from your Worker:
import { sdk } from '@aerostack/sdk'
const result = await sdk.agents.run('summarize-document', {
text: longArticleText,
maxBullets: 5,
})
// result.summary: string
// result.bullets: string[]
// result.keyEntities: string[]Permissions
Agents run with their own scoped API key. They cannot access your project’s database or secrets unless you explicitly grant access.