一键导入
upload-screenshot
Upload an existing screenshot, chart, or generated image to the Open-Inspect session
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Upload an existing screenshot, chart, or generated image to the Open-Inspect session
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Deploy your own Open-Inspect instance. Use when the user wants to set up, deploy, or onboard to Open-Inspect. Guides through repository setup, credential collection, Terraform deployment, and verification with user handoffs.
Record and upload a short browser interaction video artifact
Verify application UI changes with uploaded screenshot or video artifacts
基于 SOC 职业分类
| name | upload-screenshot |
| description | Upload an existing screenshot, chart, or generated image to the Open-Inspect session |
Use this skill when you already have an image file on disk and need to upload it to the Open-Inspect
session. The image may be a screenshot captured by Playwright MCP or agent-browser, a generated
chart or diagram, a manual file, or output from another tool.
For the full browser-open + capture + upload workflow, use visual-verification instead.
upload-media is a bash command installed on PATH. Run it with your Bash tool. It is not an MCP
tool or a tool binding.
upload-media via Bash with the file path and metadata flags.artifactId to the user.upload-media <file-path> \
--caption "Description of screenshot" \
--source-url "https://example.com" \
[--full-page] \
[--annotated] \
[--viewport '{"width":1512,"height":982}']
All flags except the file path are optional. Include whichever metadata you know:
--caption — what the screenshot shows--source-url — the URL that was captured--full-page — set if the screenshot is a full-page capture--annotated — set if the screenshot has annotations--viewport — JSON object with width and height of the viewport usedFor generated images that do not depict a browser page, omit browser-specific flags such as
--source-url, --full-page, and --viewport.
.png, .jpg / .jpeg, .webp
The task is not complete until:
upload-media returned a JSON response containing an artifactId.artifactId is reported to the user.Uploaded screenshot of the homepage.
Source: https://example.com
Uploaded artifact: abc123def456
Generated chart:
upload-media /tmp/revenue-chart.png \
--caption "Monthly recurring revenue by quarter"
upload-media returned an artifact ID.upload-media
whenever the user asks for a generated image or chart they can review.visual-verification instead.