Input
OpenAPI 3.0 / 3.1 in JSON or YAML.
TimeProofs AgentReady analyzes OpenAPI specs before agent exposure. It produces a score, findings, a human report, and a machine-readable agentready.json.
OpenAPI 3.0 / 3.1 in JSON or YAML.
Static local checks for agent-facing clarity, risk boundaries, parameters, errors, and dangerous actions.
AgentReady Score, recommendations, Markdown report, printable report, and agentready.json.
OpenAPI JSON/YAML → AgentReady analysis → AgentReady Score → endpoint findings → recommended fixes → agentready.json → human report
85-100 : AgentReady 70-84 : Minor fixes 50-69 : Needs fixes 0-49 : Not AgentReady
agentready.json is the machine-readable contract generated from the scan. It gives agents, platforms, or future runtime layers a structured view of tool risks and execution boundaries.
{
"agentready_version": "1.0",
"summary": {
"score": 72,
"status": "Needs fixes"
},
"tools": [
{
"operation_id": "refundCustomer",
"action_type": "REFUND",
"risk_level": "critical",
"requires_human_confirmation": true,
"detected_risks": ["dangerous_action_without_confirmation"]
}
]
}
TimeProofs AgentReady does not guarantee that an AI agent will never fail. It identifies structural risks that may cause AI agents to misuse APIs, tools or MCP servers.