Borrowing it
Nothing to install: this file belongs to sopyk/docker-mcpilots. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/sopyk/docker-mcpilots/main/.opencode/skills/ui-full-audit/SKILL.mdgit clone --depth 1 https://github.com/sopyk/docker-mcpilotsWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/sopyk/docker-mcpilots/ui-full-audit)<a href="https://agentmods.dev/skills/sopyk/docker-mcpilots/ui-full-audit"><img src="https://agentmods.dev/badge/skills/sopyk/docker-mcpilots/ui-full-audit.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00038 | $0.00452 |
| Opus 5 | $0.00019 | $0.00226 |
| Sonnet 5 | $0.00008 | $0.00090 |
| Haiku 4.5 | $0.00004 | $0.00045 |
Grade A, and why
ui-full-audit scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 7d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -s -o /dev/null -w "%{http_code}" "http://localhost:$PORT/ui/about" What it actually says
流程
步骤 1:校验本地服务
用 bash 检测服务是否运行:
PORT=8900
curl -s -o /dev/null -w "%{http_code}" "http://localhost:$PORT/ui/about"
若返回非 200 则中止并提示启动服务。
步骤 2:功能链接遍历测试(playwright MCP)
操作 playwright MCP 工具:
browser_navigate→ 打开首页http://localhost:${PORT}/ui/loginbrowser_snapshot→ 获取 DOM 快照- 提取站内
<a href="...">,过滤外部域名、锚点、javascript: - 逐一访问,检查
console_logs中 error/warning 及页面 404 关键词 - 记录
【功能-链接】{URL} → {问题}
步骤 3:视觉布局校验(ui-visual-check MCP)
操作 ui-visual-check MCP 工具:
- 若
backstop_data/bitmaps_reference/不存在 → 调用visual_baseline - 调用
visual_check执行像素对比 - 查找 "Mismatch"、"failed" 关键词
- 记录
【视觉-{视口}】{场景} → {差异%}
步骤 4:输出合并缺陷报告
═══════════════════════════════════════
UI 全面审计报告
═══════════════════════════════════════
【功能-链接】/some/broken/link → 404
【视觉-desktop】Login Page → 5.2% mismatch
--- 共发现 N 个缺陷 ---
无缺陷则输出 ✅ 全部通过。
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 7d ago First seen · 51 lines · 38 tokens per session scan A 078bbb27ce92
ui-full-audit is a skill published in the GitHub repository sopyk/docker-mcpilots (3 stars, last pushed 6d ago), licensed MIT. It adds 38 tokens to every session and 452 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
browse
Drive a real browser through Aside: open a page, read it, click through a flow, take screenshots, check console errors. (gstack).
playwright-cli
A command-line tool for controlling Chromium, Firefox, and WebKit browsers, including navigation, page interaction, screenshots, PDFs, and recorded actions.
webapp-testing
Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.
browser-qa
A browser-based quality check for deployed web pages and user flows. It uses browser automation to test rendering, navigation, forms, interactions, responsive behaviour, and accessibility-related issues.
test-electron-app
Drive the real running PostHog Electron app (live tRPC, workspace-server, real data) over CDP with agent-browser. Connect to the running app on port 9222, test desktop changes against a local Django stack, snapshot the accessibility tree, inspect network requests, and screenshot only when explicitly asked. Use when…
smoke-test
Run smoke tests against a deployed or local app based on your git diff. Each test uses Skyvern browser tools (navigate, act, validate, screenshot) with Chrome DevTools MCP as fallback. Posts screenshot evidence as PR comments.