auto-ui-explorer

auto-ui-explorer is a skill for Claude Code from willnie9/agent-skills. It costs 75 tokens per session (12,092 once invoked), scanned A, original, MIT.

A workflow for end-to-end UI testing, which checks complete user journeys across a web application in a browser.

In plain words
What is it for?
It helps test full business flows, integration scenarios, and all the screens or forms in a module using Playwright.
Why use it?
It reduces the manual work of scanning a module, refining test steps, connecting actions across pages, and running individual checks.

Skill for Claude Code

Written for Claude Code: PostToolUse hook event. Also seen: reads .claude/ paths.

Good fit It helps test full business flows, integration scenarios, and all the screens or forms in a module using Playwright.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/willnie9/agent-skills/auto-ui-explorer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add willnie9/agent-skills --skill auto-ui-explorer
Clone the repo
git clone --depth 1 https://github.com/willnie9/agent-skills

Made for: Claude Code.

Wrote 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.

agentmods badge for auto-ui-explorer

README.md
[![agentmods](https://agentmods.dev/badge/skills/willnie9/agent-skills/auto-ui-explorer/github.svg)](https://agentmods.dev/skills/willnie9/agent-skills/auto-ui-explorer)
Your own site
<a href="https://agentmods.dev/skills/willnie9/agent-skills/auto-ui-explorer"><img src="https://agentmods.dev/badge/skills/willnie9/agent-skills/auto-ui-explorer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for auto-ui-explorer

Your own site · 80×15
<a href="https://agentmods.dev/skills/willnie9/agent-skills/auto-ui-explorer"><img src="https://agentmods.dev/badge/skills/willnie9/agent-skills/auto-ui-explorer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 75 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 12,092 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00075 $0.12092
Opus 5 $0.00037 $0.06046
Sonnet 5 $0.00015 $0.02418
Haiku 4.5 $0.00007 $0.01209

Measured 9d ago against content hash 8d4497e3b361, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

auto-ui-explorer scanned grade A with 0 findings 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 9d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (scripts/analyze-module.mjs, scripts/diff-baseline.mjs, scripts/validate-dictionary.mjs, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

auto-ui-explorer/SKILL.md · 739 lines

How it starts

The opening of the file, as written. The whole thing — 739 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Auto UI Explorer · 全模块 E2E 测试编排大师

本 skill 依赖 playwright-skill 执行浏览器操作。所有浏览器参数从 playwright-skill/config/playwright-skill.config.json 读取,不写死。 噪音黑名单和表单组件类型从 config/auto-ui-explorer.config.json 读取,可按项目定制。

目录结构

.claude/skills/auto-ui-explorer/
├── SKILL.md                                       本文件
│
├── config/                                        项目适配层
│   └── auto-ui-explorer.config.json                噪音黑名单 + 点击事件模式 + 表单组件类型
│
├── schemas/                                       硬契约
│   ├── ui-dictionary.schema.json                   Step 1 词典输出的 JSON Schema
│   ├── baseline.schema.json                        ★ baseline 结构校验
│   └── experience.schema.json                      ★ experience 结构校验
│
├── scripts/                                       脚本工具
│   ├── analyze-module.mjs                          全目录递归扫盘器(读 config)
│   ├── validate-dictionary.mjs                     Step 1 产物校验(校验 schema)
│   ├── validate-flow-plan.mjs                      Step 2.6 产物校验(SP 引用/覆盖率/空值拦截)
│   └── diff-baseline.mjs                           ★ Step 0.7 增量判断脚本
│
├── references/                                    子文档(详细规范)
│   ├── single-point-spec.md                        单点测试用例编写规范
│   ├── failure-tags.md                             失败分类标签定义
│   ├── form-data-generation.md                     表单测试数据生成规则
│   └── status-markers.md                           ★ 状态标记体系与责任归属
│
└── output/                                        ⚠️ gitignore — 运行产物
    ├── <module>-ui-dictionary.json                  Step 1 的词典
    ├── <module>-E2E-FLOW-PLAN.md                    Step 2 的剧本
    ├── <module>-API-AUDIT.md                        Step 0.9 的 API 对接审计报告
    ├── <module>-E2E-REPORT.md                       Step 6 的最终测试报告
    ├── <module>-baseline.json                       ★ 增量执行基线(断点续跑依据)
    └── <module>-experience.json                     ★ 操作经验库(跨对话复用)

测试模式 (Test Mode) ★★★

用户启动测试时必须选择模式,或从输入关键词自动推断。模式贯穿全流程,影响 Step 0.9 / Step 4 / Step 5 / Step 6 的行为。

模式一:mock — 测试 Mock 拦截层

Read the full file on GitHub · 739 lines

Changes

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.

  1. 9d ago First seen · 739 lines · 75 tokens per session scan A 8d4497e3b361

Subscribe to this mod's changes

auto-ui-explorer is a skill published in the GitHub repository willnie9/agent-skills (2 stars, last pushed 2mo ago), licensed MIT. It adds 75 tokens to every session and 12,092 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.