Files
AICC-Protocol/conformance/scenarios/core-06-protocol-mismatch.json
T
Emil Shanaty fa5ef35bff feat: conformance scenarios (core-01..core-09)
Declarative conformance scenarios for aicc/0.1 covering: handshake,
manifest_request, tool call ok/unknown/execution-failed, protocol
mismatch, heartbeat, session close, event delivery. Plus runner
documentation (conformance/README.md).
2026-08-08 03:27:20 +03:00

27 lines
552 B
JSON

{
"id": "core-06-protocol-mismatch",
"title": "Protocol mismatch is rejected",
"category": "core",
"version": "aicc/0.1",
"description": "A message with a wrong protocol version must be rejected with protocol_mismatch.",
"steps": [
{
"send": {
"protocol": "aicc/0.2",
"type": "tool_call",
"tool": "echo",
"input": {}
}
},
{
"expect": {
"type": "error",
"error": {
"code": "protocol_mismatch",
"retryable": false
}
}
}
]
}