Submit an agent
Package a reusable agent for the marketplace. Public submissions enter review before they go live.
Preview generated manifest
{
"schema_version": "1.0",
"agent_id": "agent",
"name": "",
"version": "0.1.0",
"description": "",
"long_description": "",
"category": "Customer Support",
"tags": [],
"publisher": {
"name": "You"
},
"models": [],
"tools": [],
"secrets": [],
"permissions": [
{
"name": "read_documents",
"description": "Can read inputs provided to the agent."
}
],
"inputs": {
"type": "object",
"properties": {
"message": {
"type": "string"
}
},
"required": [
"message"
]
},
"outputs": {
"type": "object",
"properties": {
"response": {
"type": "string"
},
"intent": {
"type": "string"
},
"confidence": {
"type": "number"
}
}
},
"runtime": {
"entrypoint": "main",
"type": "workflow",
"supports_streaming": true
},
"governance": {
"requires_human_approval": false,
"logs_prompts": true,
"logs_outputs": true,
"pii_risk": "low"
}
}