一键导入
vision-image-reader
Use a saved model tagged with the vision capability to inspect images when the active model cannot reliably read image content.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use a saved model tagged with the vision capability to inspect images when the active model cannot reliably read image content.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Release ACECode from a user-provided version number. Use when Codex is asked to publish an ACECode version, update the Windows self-upgrade server, build and verify the updater package, commit release code, create an annotated Git version tag, or push release commits/tags.
说明 ACECode Desktop 原生桌面应用的用法,包括工作区、任务、会话、输入框、权限、可选 Git worktree、搜索、文件与差异面板、设置、技能、MCP、循环任务、通知、更新和故障排查。当用户询问 Windows、macOS 或 Linux 图形界面的操作方法时使用。不要用终端 TUI 的命令代替 Desktop 界面操作。
Explain how to use ACECode in a terminal, including the interactive TUI, headless prompt mode, sessions, worktrees, permission modes, keyboard controls, slash commands, skills, MCP, memory, and troubleshooting. Use when a user asks how to start, control, configure, or recover ACECode from a shell. Do not use for the native ACECode Desktop interface.
ACECode WebUI 的统一视觉规则 — 写设置 / 管理 / 配置 / 状态展示类页面或面板前必读。提炼自 SettingsPage 的「常规」「外观」section,覆盖容器、标题层级、卡片行、单选卡片、小型 input、状态指示、分隔线等。新 section 直接套这套 className,不要重新造视觉风格。
ACECode WebUI 的统一视觉规则 — 写设置 / 管理 / 配置 / 状态展示类页面或面板前必读。提炼自 SettingsPage 的「常规」「外观」section,覆盖容器、标题层级、卡片行、单选卡片、小型 input、状态指示、分隔线等。新 section 直接套这套 className,不要重新造视觉风格。
Use the mcporter CLI to inspect, configure, authenticate, and call MCP servers before wiring them into ACECode.
| name | vision-image-reader |
| description | Use a saved model tagged with the vision capability to inspect images when the active model cannot reliably read image content. |
当任务需要理解图片内容,而当前模型没有可靠视觉能力时,使用这个 skill。
vision_analyze 工具。prompt 写清楚要视觉模型回答什么。保持通用,不要把业务流程写死在 skill 里。image_path。相对路径相对当前工作目录解析,绝对路径可以在 workspace 之外。工具会读取并校验它是图片,再保存为会话附件后发送。attachment_id。model_name;该保存模型必须带 vision 能力标签。未指定时工具会从带 vision 标签的保存模型里选择一个。vision_analyze 的内部调用当作可 resume 或可在界面里切换的会话。{
"prompt": "Describe the screenshot and identify the visible error.",
"image_path": "optional/path/to/screenshot.png",
"attachment_id": "optional-image-attachment-id",
"model_name": "optional-saved-model-name"
}
vision_analyze 分析。按这个提示走即可。vision_analyze 返回 NO_VISION_MODEL(没有可用视觉模型),提示用户到模型设置里给一个保存模型勾选 视觉 能力,不要反复重试。NO_IMAGE_ATTACHMENT(没有图片附件),请用户上传图片,或提供明确的 attachment_id / image_path。vision_analyze:image_path 指向不存在的路径、目录、超大文件或非图片文件(包括 PDF、SVG 等非栅格图)会被清晰拒绝。不要把普通文档 / 二进制文件当成视觉输入。