ワンクリックで
image
// Unified tool for analyzing and displaying images (vision analysis and image display).
// Unified tool for analyzing and displaying images (vision analysis and image display).
Integrate a new robot into the PhyAgentOS ReKep plugin when the user says things like "帮我接入新机器人 XXX", "接入 ReKep 新机器人", or "help me onboard a new robot into ReKep". Inspect the SDK dropped into the ReKep plugin runtime, generate or update the adapter/factory/docs, and finish with deployment and startup instructions.
Unified tool for managing agent LLM modes (add, remove, update, list, switch).
Search and install agent skills from ClawHub, the public skill registry.
Schedule reminders and recurring tasks.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
| name | image |
| description | Unified tool for analyzing and displaying images (vision analysis and image display). |
| metadata | {"nanobot":{"emoji":"🖼️"}} |
Unified tool for analyzing and displaying images. Supports two modes: vision analysis using multimodal LLM models and displaying images to users through the frontend.
This skill provides the following tool:
imageUnified tool for image analysis, display, and generation.
Parameters:
mode (string, required): The operation mode - vision for image analysis, display for showing images to users, generate for creating images from text promptsimage_path (string, required):
texttext (string, optional):
Example for vision - Describe an image at image.png:
<tool>image</tool>
<parameter name="mode">vision</parameter>
<parameter name="text">Describe this image</parameter>
<parameter name="image_path">image.png</parameter>
Example for vision - Extract text from image image.jpeg:
<tool>image</tool>
<parameter name="mode">vision</parameter>
<parameter name="text">Get words in this image</parameter>
<parameter name="image_path">image.jpeg</parameter>
Example for vision - How many birds in image image.png:
<tool>image</tool>
<parameter name="mode">vision</parameter>
<parameter name="text">How many birds in image?</parameter>
<parameter name="image_path">image.png</parameter>
Example for display - Display image at image.png with title "The image":
<tool>image</tool>
<parameter name="mode">display</parameter>
<parameter name="text">The image</parameter>
<parameter name="image_path">image.png</parameter>
Example for display - Display image at image.png:
<tool>image</tool>
<parameter name="mode">display</parameter>
<parameter name="image_path">image.png</parameter>
Example for generate - Create an image of a cute orange cat:
<tool>image</tool>
<parameter name="mode">generate</parameter>
<parameter name="text">A sitting orange cat with happy expression</parameter>
<parameter name="image_path">sitting_orange_cat.png</parameter>
Example for generate - Create a landscape painting:
<tool>image</tool>
<parameter name="mode">generate</parameter>
<parameter name="text">A beautiful sunset over mountains in oil painting style</parameter>
<parameter name="image_path">sunset_painting_style.png</parameter>