Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计提醒

verify验证

Agent Skill

verify 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,364

周安装

58

GitHub Stars

公开资料未说明

下载量

478
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:verify(验证)
来源仓库:https://github.com/shiplightai/agent-skills
仓库路径:skills/verify
安装命令:
npx skills add https://github.com/shiplightai/agent-skills --skill verify
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/shiplightai/agent-skills --skill verify

简介

verify 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用于研究检索类任务,通过 npx skills add 命令从指定 GitHub 仓库安装。
  • verify 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Verify UI Changes

Use the Shiplight MCP browser tools to visually verify that your code changes look and behave correctly in a real browser.

When to use

Use /verify after making UI changes to confirm they render correctly. This is useful for:

  • Checking layout, styling, or component changes visually
  • Verifying interactive behavior (clicks, form inputs, navigation)
  • Pre-commit sanity checks on UI work
  • Debugging visual regressions

When NOT to use

Skip /verify when changes don't affect UI rendering:

  • Backend-only changes (API logic, database, config)
  • Dependency version bumps with no UI impact
  • Documentation, comments, or test-only changes

Steps

The following steps are a general guideline — adapt based on what makes sense for the specific changes:

  1. Understand what changed — analyze the code changes and build a verification plan: This is the most important step — it determines your test coverage. Balance thoroughness with cost.

- What files/components changed - What pages and interactions to check - Pass/fail criteria (what "correct" looks like)

  1. Start the dev server (if not already running) — check if the app's dev server is running. If not, start it in the background using the appropriate command (e.g. npm run dev, yarn dev). Wait a few seconds for it to be ready.
  2. Open a browser session — call new_session with the starting_url pointing to the page you want to verify. If you want to generate a report afterwards, set record_evidence: true. Multiple concurrent sessions are supported — you can open several to compare different pages or states.
  3. Inspect the page — call inspect_page to get the DOM tree with element indices and a screenshot. Always read the DOM file first — it provides the element indices needed for act and consumes far fewer tokens. Only view the screenshot when you specifically need visual information (layout, colors, images), as screenshots consume significantly more tokens than DOM.
  4. Interact and verify — use act to simulate user actions based on the element indices from inspect_page. Use act with verify actions to assert expected UI state (e.g. text is visible, element exists).
  5. Check for errors — call get_browser_console_logs to check for any JavaScript errors that may have been introduced.
  6. Report findings — summarize what you verified:

- What pages/components were checked - Whether the UI renders correctly - Any console errors or visual issues found - Screenshots showing the verified state

  1. Close the session — call close_session when done. It returns local_video_path and local_trace_path.
  2. Generate the report — if the session was started with record_evidence: true, call generate_html_report with the local paths: {"session_id": "<session_id>", "local_video_path": "<local_video_path from close_session>", "local_trace_path": "<local_trace_path from close_session>", "title": "...", "summary": "...", "checks": [...]} Show the returned file_path to the user so they can open and review it.
  3. Upload the report for sharing — when the user wants a shareable link (e.g. to attach to a PR), and upload_html_report is available: {"report_path": "<file_path from generate_html_report>", "local_video_path": "<local_video_path from close_session>", "local_trace_path": "<local_trace_path from close_session>"} This uploads the video, trace, and report HTML to Shiplight cloud, patches the HTML with cloud URLs, and returns a permanent shareable report_url.

Apps that require login

If the app requires authentication, log in once and save the session so future sessions skip the login step:

  1. Open a browser session with new_session at the app's login page.
  2. Ask the user to switch to the browser and log in manually. Wait for them to confirm.
  3. Call save_storage_state to save cookies and localStorage to ~/.shiplight/<site_url>/storage-state.json (e.g. ~/.shiplight/http_localhost_3000/storage-state.json).
  4. For all future sessions, pass the same path as storage_state_path to new_session to restore the authenticated state instantly.

If a saved storage state file already exists, use it automatically. If authentication fails with a saved state (page redirects to login, auth errors in console), the state is likely expired — ask the user to log in again and re-save.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.8%
按下载量换算171

Claude

28.09%
按下载量换算134

Cursor

18.83%
按下载量换算90

Gemini CLI

9.1%
按下载量换算43

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills