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

qa-exploring-application-ui质量保证探索应用程序 UI

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

188

周安装

8

GitHub Stars

5

下载量

66
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:qa-exploring-application-ui(质量保证探索应用程序 UI)
来源仓库:https://github.com/wizeline/sdlc-agents
仓库路径:skills/qa-exploring-application-ui
安装命令:
npx skills add https://github.com/wizeline/sdlc-agents --skill qa-exploring-application-ui
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/wizeline/sdlc-agents --skill qa-exploring-application-ui

简介

qa-exploring-application-ui 用于辅助界面设计、视觉规范和交互体验优化,适合生成 UI 方案或检查一致性。

  • 适用于页面结构整理、组件层级改进和响应式表现检查。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装使用。
  • 需结合品牌和设计系统,避免仅堆装饰元素。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Exploring Application UI

This skill drives autonomous exploration of web applications using visual AI to understand and interact with UI elements semantically — the way a human tester would see and navigate them.

When to Use

  • No scripted tests exist yet and you need to assess application quality
  • You want to discover "unknown unknown" bugs that scripted tests miss
  • You're validating a new feature's integration with existing UI
  • You need a quick health check of a staging environment

Navigation Strategy

Element Identification

Use visual analysis (screenshots + Claude Vision) to identify interactive elements. Do NOT rely on DOM selectors as the primary identification method.

Identification hierarchy:

  1. Visible text labels ("Sign In", "Add to Cart")
  2. Placeholder text ("Enter your email...")
  3. Iconography (search icon, hamburger menu, close X)
  4. Visual affordances (raised buttons, underlined links, input fields)
  5. Spatial context (sidebar navigation, header menu, footer links)

State Tracking

Maintain a state machine as you explore:

exploration_state = {
    "visited_urls": set(),        # Pages we've been to
    "visited_states": set(),      # URL + key UI state (e.g., modal open, tab selected)
    "action_queue": [],           # Planned next actions, ordered by priority
    "dead_ends": [],              # States with no forward navigation
    "errors_seen": [],            # Collected error states
    "coverage_estimate": 0.0,    # Rough % of app explored
}

Exploration Priorities

When deciding what to explore next, use this priority order:

  1. Unexplored navigation items — breadth first for top-level nav
  2. Forms and inputs — fill with various inputs, submit, observe
  3. Error states — intentionally trigger errors (empty submits, invalid data)
  4. Edge navigation — back button, direct URL entry, bookmark behavior
  5. Authentication boundaries — access control, session management
  6. Responsive behavior — resize viewport, check layout integrity

Interaction Patterns

For each page, execute these interaction patterns:

Forms:

1. Submit completely empty → check error handling
2. Fill one field at a time → check progressive validation
3. Fill all fields correctly → check success path
4. Fill with edge-case values → check robustness
5. Submit, then back-button → check data persistence

Navigation:

1. Click every visible link/button → map the navigation graph
2. Right-click → check context menu behavior
3. Middle-click → check new-tab behavior
4. Keyboard navigation (Tab, Enter, Escape) → check accessibility
5. Browser back/forward → check history state management

Dynamic Content:

1. Scroll to bottom → check lazy loading
2. Wait 30 seconds → check for memory leaks or stale data
3. Toggle between tabs/views rapidly → check race conditions
4. Open multiple instances → check concurrent state

Bug Detection Heuristics

Use these rules to identify potential bugs during exploration:

Definite Bugs (always report)

  • Page returns HTTP 4xx or 5xx
  • JavaScript error in console
  • Visible "undefined", "null", "NaN", or "[object Object]" in UI
  • Form submits successfully with invalid/empty required data
  • Click on element produces no visible response
  • Page layout is visibly broken (overlapping elements, text cutoff)

Probable Bugs (report with lower severity)

  • Loading spinner that never resolves (>10s)
  • Flash of unstyled content (FOUC)
  • Inconsistent button/link styling
  • Missing favicon or broken images
  • Placeholder text left in production ("Lorem ipsum", "TODO")
  • Console warnings about deprecated APIs

UX Issues (report as info)

  • Confusing navigation (>3 clicks to reach common actions)
  • Missing confirmation dialogs for destructive actions
  • Error messages that don't explain how to fix the issue
  • No loading indicator during async operations
  • Missing empty states (blank page when no data exists)

Using the Exploration Script

python skills/qa-exploring-application-ui/scripts/explore.py \
  --url https://staging.example.com \
  --duration 30 \
  --output exploration-results/ \
  --credentials user:pass

The script handles browser setup, screenshot capture, and state tracking. You drive the exploration decisions by analyzing each screenshot and choosing the next action.

Output Format

Produce a structured session log and a narrative summary. See the bug report skill (skills/qa-generating-bug-reports/SKILL.md) for bug formatting standards.

The narrative summary should be written for a human QA lead — cover what you explored, what you found, what areas you couldn't reach, and your overall assessment of the application's quality.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.41%
按下载量换算25

Claude

27.1%
按下载量换算18

Cursor

20.12%
按下载量换算13

Gemini CLI

9.28%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

操作浏览器

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

安装前确认

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

来源信息

继续浏览同类 Skills