feat(capabilities): document verbs with descriptions and field docs

This commit is contained in:
CREDO23 2026-07-02 00:16:55 +02:00
parent b1bd35c082
commit 23802a74bb
6 changed files with 64 additions and 16 deletions

View file

@ -26,6 +26,7 @@ async def _echo_executor(payload: _EchoInput) -> _EchoOutput:
_ECHO = Capability(
name="test.echo",
description="Echo the input back for tests.",
input_schema=_EchoInput,
output_schema=_EchoOutput,
executor=_echo_executor,