Developer Resources
Everything to build plugins
From declarative manifest to MCP tools — standardize access to the agent workstation
Quick Start
One manifest, infinite possibilities
Bring vertical capabilities into the agent workstation with declarative config
manifest.json
{
"id": "finance-helper",
"name": "My Finance Helper",
"version": "1.0.0",
"type": "Plugin",
"capabilities": ["agent-tool", "ui"],
"permissionsRequired": ["mcp:read"],
"contributes": {
"ui": [{
"id": "finance-panel",
"container": "RIGHT_SIDE_PANEL",
"entry": "./index.html"
}]
}
}● Simple config, infinite possibilities.