One config file. Channels, LLM, plugins — everything your agent needs. Push the file, the agent is live. We handle the rest.
Join the waitlistagent "acme-support" {
channel "web_chat" {
source = "agentplatform/channel-webchat"
}
channel "telegram" {
source = "agentplatform/channel-telegram"
bot_token = var.telegram_token
}
llm "anthropic" {
source = "agentplatform/llm-anthropic"
model = "claude-sonnet-4-20250514"
}
plugin "knowledge-base" {
source = "agentplatform/rag"
hook "pre_call" {}
config {
data_source = "https://docs.acme.com/sitemap.xml"
}
}
plugin "hubspot" {
source = "agentplatform/crm-hubspot"
hook "tool_call" {}
}
plugin "guardrails" {
source = "agentplatform/content-filter"
hook "post_response" {}
}
}Skills are static prompts. Plugins are live services with real logic, real APIs, and real data.
| Skills / MCP Servers | agentplatform plugins | |
|---|---|---|
| What it is | A markdown file or local server | A hosted service with real business logic |
| Runtime | Runs in your agent's process | Runs on managed infrastructure, scales independently |
| Integrations | You manage API keys and connections | Pre-built connections to CRMs, databases, APIs — configured, not coded |
| Lifecycle hooks | Can add tools the agent can call | Can intercept, transform, or block any LLM request or response |
| Data access | Limited to what the agent can see | Server-side access to databases, APIs, and services your agent never touches |
| Monetization | None — open source or bundled | Set your price per call. Usage-based revenue from the marketplace. |
| Updates | You pull and reinstall | Automatic — plugins update without touching your config |
We're onboarding the first wave of developers. Early access includes:
Early access is limited. We're starting with a small group to get the plugin API right before opening up.