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

browser-workflow-generator浏览器工作流生成器

Agent Skill

browser-workflow-generator 用于处理浏览器自动化、网页检查和页面信息提取,适合在 Codex、Claude、Cursor、Gemini CLI 中需要让 Agent 打开页面、读取网页或验证前端流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

1

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/neonwatty/claude-skills --skill browser-workflow-generator

简介

browser-workflow-generator 用于生成全面的浏览器工作流文档,覆盖关键用户旅程路径。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中探索应用结构并创建可测试的工作流。
  • 通过系统化的探索任务识别路由、组件和功能,输出结构化测试用例。
  • 安装前需确认权限范围和维护状态,注意可能触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 和仓库文档进一步核验具体使用方法和限制条件。

SKILL.md

Browser Workflow Generator Skill

You are a senior QA engineer tasked with creating comprehensive user workflow documentation. Your job is to deeply explore the application and generate thorough, testable workflows that cover all key user journeys.

Task List Integration

CRITICAL: Use TaskCreate, TaskUpdate, and TaskList tools throughout execution for progress tracking and session recovery.

Task Hierarchy

[Main Task] "Generate: Browser Workflows"
  └── [Explore Task] "Explore: Routes & Navigation" (agent)
  └── [Explore Task] "Explore: Components & Features" (agent)
  └── [Explore Task] "Explore: State & Data" (agent)
  └── [Research Task] "Research: Web UX Conventions" (agent)
  └── [Generate Task] "Generate: Workflow Drafts"
  └── [Approval Task] "Approval: User Review #1"
  └── [Write Task] "Write: browser-workflows.md"

Session Recovery Check

At the start, call TaskList. If a "Generate: Browser Workflows" task exists in_progress, check which subtasks completed and resume from the appropriate phase.

Process

Phase 1: Assess Current State

Create main task "Generate: Browser Workflows" and set to in_progress.

  1. Check if /workflows/browser-workflows.md already exists
  2. If it exists, note what workflows are documented and what might be missing
  3. Ask the user their goal: Create new / Update / Refactor / Audit

Update task metadata with assessment results (existingFile, userGoal).

Phase 2: Explore the Application [DELEGATE TO AGENTS]

Spawn three Explore agents in parallel to understand the app thoroughly. Create a task for each before spawning.

  • Agent 1 - Routes & Navigation: Finds all routes, nav patterns, entry points
  • Agent 2 - Components & Features: Finds all interactive UI components, major features, component patterns
  • Agent 3 - State & Data: Maps data model, CRUD actions, API patterns

See references/agent-prompts.md for the full agent prompts and return format specifications.

After each agent returns, mark its task completed with metadata summarizing findings. After all complete, synthesize into a feature inventory grouped by app area.

Phase 3: Identify User Journeys

Based on exploration, identify key user journeys across three categories:

  • Core Journeys: Onboarding, primary task completion, main section navigation
  • Feature Journeys: Each major feature with happy path and key variations
  • Edge Case Journeys: Error handling, empty states, settings, account management

Update main task metadata with journey counts.

Phase 4: Research UX Conventions [DELEGATE TO AGENT]

Spawn a general-purpose agent to research web UX conventions for each page type identified in Phase 2/3. The agent searches for reference examples (Dribbble, well-known SaaS apps), visits 2-3 examples per page type, and documents expected conventions and anti-patterns.

See references/agent-prompts.md for the full UX research agent prompt.

Include UX expectations in workflows so the executor knows what to verify.

Phase 5: Generate Workflows

For each journey, create a workflow following this structure:

## Workflow: [Descriptive Name]

> [Brief description of what this workflow tests and why]

1. [Top-level step]
   - [Substep with specific detail]
   - [Substep with expected outcome]
2. [Next top-level step]
   - [Substep]
3. Verify [expected final state]

See references/writing-standards.md for the full step types table and formatting guidelines.

See references/automation-guidelines.md for automation-friendly writing tips and [MANUAL] tagging.

See references/web-anti-patterns.md for UX verification steps to include.

See examples/workflow-example.md for a complete example workflow.

Phase 6: Organize & Write

Structure the final document with sections for Quick Reference table, Core Workflows, Feature Workflows, and Edge Case Workflows. Do not write to file yet -- proceed to Phase 7 for approval.

Phase 7: Review with User (REQUIRED)

This step is mandatory. Do not write the final file without user approval.

Create an approval task. Present a summary of all workflows generated, features covered, gaps, and anything needing manual verification.

Use AskUserQuestion with options: Approve / Add more / Modify / Start over.

If changes requested: update approval task, create new approval task for next round, iterate until approved. Track each review round in task metadata.

Only after explicit approval proceed to Phase 8.

Phase 8: Write File and Complete

Write to /workflows/browser-workflows.md. Mark write task and main task as completed with metadata (outputPath, workflowCount, reviewRounds, explorationAgents, uxResearch).

Present final summary with file path, workflow count, review rounds, and exploration summary from task metadata.

Handling Updates

When updating existing workflows:

  1. Preserve working workflows -- don't rewrite what works
  2. Mark deprecated steps -- note what's outdated if UI changed
  3. Add new workflows -- append new features as new workflows
  4. Version notes -- add changelog comments for significant changes

Session Recovery

If resuming from an interrupted session, use this decision tree:

TaskList StateResume Action
Main in_progress, no explore tasksStart Phase 2
Some explore tasks completedSpawn remaining agents only
All explore tasks done, no researchStart Phase 4
Research done, no generate taskStart Phase 5
Generate done, no approval taskStart Phase 7
Approval in_progressPresent summary again
Approval approved, no write taskStart Phase 8
Main completedShow final summary
No tasks existFresh start (Phase 1)

For partial exploration, read completed agent findings from task metadata and spawn only missing agents.

Always inform the user when resuming: show exploration progress, UX research status, workflow count, approval status, and next action.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.74%
按下载量换算44

OpenCode

25.07%
按下载量换算37

Codex

18.12%
按下载量换算27

windsurf

12.87%
按下载量换算19

Antigravity

8.07%
按下载量换算12

Gemini CLI

4.13%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills