Files
AICC-Protocol/conformance/scenarios/core-04-tool-unknown.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

28 lines
610 B
JSON

{
"id": "core-04-tool-unknown",
"title": "Unknown tool returns tool_unknown",
"category": "core",
"version": "aicc/0.1",
"description": "Calling a tool that is not in the manifest must fail with error code tool_unknown and retryable:false.",
"steps": [
{
"send": {
"type": "tool_call",
"tool": "definitely_not_a_tool",
"input": {}
}
},
{
"expect": {
"type": "tool_result",
"ok": false,
"call_id_echo": true,
"error": {
"code": "tool_unknown",
"retryable": false
}
}
}
]
}