From 05c2cbf0e9199e5b35ebdcd4fc400ab9cc03e80c Mon Sep 17 00:00:00 2001 From: Vincent Koc Date: Fri, 6 Mar 2026 10:51:11 -0500 Subject: [PATCH] Skills/nano-banana-pro: clarify MEDIA token comment (#38063) --- skills/nano-banana-pro/scripts/generate_image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/skills/nano-banana-pro/scripts/generate_image.py b/skills/nano-banana-pro/scripts/generate_image.py index be9821a947e..796022adfba 100755 --- a/skills/nano-banana-pro/scripts/generate_image.py +++ b/skills/nano-banana-pro/scripts/generate_image.py @@ -219,8 +219,8 @@ def main(): if image_saved: full_path = output_path.resolve() print(f"\nImage saved: {full_path}") - # OpenClaw parses MEDIA: tokens (line-start, no space after colon) - # and will attach the file on supported chat providers. + # OpenClaw parses MEDIA: tokens and will attach the file on + # supported chat providers. Emit the canonical MEDIA: form. print(f"MEDIA:{full_path}") else: print("Error: No image was generated in the response.", file=sys.stderr)