用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Dicklesworthstone/pi_agent_rust --skill minimax-image-understanding命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | minimax-image-understanding |
| description | Analyze images using AI with the understand_image tool |
Use this skill when you need to analyze, describe, or extract information from images.
Call the understand_image tool directly with a prompt and image URL:
understand_image({
prompt: "Your question about the image",
image_url: "https://example.com/image.png"
})
Use understand_image when:
Do NOT use understand_image when:
understand_image({
prompt: "What do you see in this image?",
image_url: "https://example.com/screenshot.png"
})
Endpoint: POST {api_host}/v1/coding_plan/vlm
Request Body:
{
"prompt": "Your question about the image",
"image_url": "data:image/jpeg;base64,/9j/4AAQ..."
}
Response Format:
{
"content": "AI analysis of the image...",
"base_resp": {
"status_code": 0,
"status_msg": "success"
}
}
The tool automatically handles three types of image inputs:
HTTP/HTTPS URLs: Downloads the image and converts to base64
https://example.com/image.jpgLocal file paths: Reads local files and converts to base64
/Users/username/Documents/image.pngimages/photo.png@ prefix if presentBase64 data URLs: Passes through existing base64 data
data:image/png;base64,iVBORw0KGgo...Supported:
Not supported:
understand_image({
prompt: "What is the error message and where is it located in this screenshot?",
image_url: "./error-screenshot.png"
})
understand_image({
prompt: "What code is shown in this screenshot? Please transcribe it exactly.",
image_url: "https://example.com/code.png"
})
understand_image({
prompt: "Analyze this UI design. What is working well and what could be improved?",
image_url: "https://example.com/mockup.png"
})
understand_image({
prompt: "Extract all text from this image",
image_url: "/Users/username/Documents/scan.png"
})