Created
June 7, 2025 09:54
-
-
Save adyrcz/6a5e808fa206552accd7c227171fa306 to your computer and use it in GitHub Desktop.
Short gist of the Agent Manifest.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$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