Skip to content

Instantly share code, notes, and snippets.

@adyrcz
Created June 7, 2025 09:54
Show Gist options
  • Save adyrcz/6a5e808fa206552accd7c227171fa306 to your computer and use it in GitHub Desktop.
Save adyrcz/6a5e808fa206552accd7c227171fa306 to your computer and use it in GitHub Desktop.
Short gist of the Agent Manifest.json
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://agent-manifest.org/schemas/manifest.schema.json",
"title": "Agent Manifest Schema",
"type": "object",
"required": [
"agent_id",
"name",
"description",
"version",
"author",
"inputs",
"outputs",
"capabilities",
"skills",
"authentication",
"execution"
],
"properties": {
"agent_id": { "type": "string" },
"name": { "type": "string" },
"description": { "type": "string" },
"version": { "type": "string" },
"author": {
"type": "object",
"required": ["name", "organization", "contact"],
"properties": {
"name": { "type": "string" },
"organization": { "type": "string" },
"contact": { "type": "string" }
}
},
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment