From 230dd03f32f8c6f35367ee86e34d9b8b68ba730d Mon Sep 17 00:00:00 2001 From: nikkie Date: Sat, 7 Mar 2026 17:35:42 +0900 Subject: [PATCH] Add inline script metadata so users can run it directly via just `uv run` --- examples/echo_agent.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/examples/echo_agent.py b/examples/echo_agent.py index 4823cc3..0f376fb 100644 --- a/examples/echo_agent.py +++ b/examples/echo_agent.py @@ -1,3 +1,9 @@ +# /// script +# requires-python = ">=3.10,<3.15" +# dependencies = [ +# "agent-client-protocol", +# ] +# /// import asyncio from typing import Any from uuid import uuid4