Agent skill

browser-replay

Replay a recorded session trajectory against the same URL or a mutated variant; uses browser-selectors embedding similarity to recover from DOM drift

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexread-onlyMIT
Install
npx skills add ruvnet/ruflo --skill browser-replay --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 3 KB
Bundled scripts: none
Allowed tools: mcp__plugin_ruflo-core_ruflo__browser_openmcp__plugin_ruflo-core_ruflo__browser_closemcp__plugin_ruflo-core_ruflo__browser_clickmcp__plugin_ruflo-core_ruflo__browser_fillmcp__plugin_ruflo-core_ruflo__browser_typemcp__plugin_ruflo-core_ruflo__browser_pressmcp__plugin_ruflo-core_ruflo__browser_selectmcp__plugin_ruflo-core_ruflo__browser_checkmcp__plugin_ruflo-core_ruflo__browser_uncheckmcp__plugin_ruflo-core_ruflo__browser_hovermcp__plugin_ruflo-core_ruflo__browser_waitmcp__plugin_ruflo-core_ruflo__browser_screenshot
Path: plugins/ruflo-browser/skills/browser-replay/SKILL.md
Open the folder on GitHub →
Where it comes from
Source: ruvnet/ruflo
Stars: 67,015 · +629 this week
Language: TypeScript
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Browser Replay Re-drive a recorded session trajectory. Used for regression testing, deterministic re-runs, and as the verification path that `browser-record` plus `browser-selectors` actually produces something replayable. > **This skill is the load-bearing assumption of the v0.2.0 architecture.** ADR-0001 Verification §4 requires ≥80% replay success across 10 distinct sites of varying drift profiles before the proposal moves from `Proposed` → `Accepted`. If you find replay unreliable, capture the failure modes in `findings.md` and report them up the ADR. ## When to use - Regression-testing a UI flow after a deploy. - Reproducing a bug captured in a prior session. - Comparing two runs of the same flow for `browser-screenshot-diff`. - Forking a session (`/ruflo-browser fork`) and replaying the parent before mutating. ## Steps 1. **Locate the source session**: ```bash npx -y ruvector@0.2.25 rvf status <session-id>.rvf ``` 2. **Load the trajectory**: ```bash Read .../trajectory.ndjson ``` Each line is `{ts, action, args, selector, result}`. 3. **Open a fresh browser** via `mcp__plugin_ruflo-core_ruflo__browser_open` (target URL = original or `--url` override). 4. **For each trajecto

What's inside
Steps it walks through
  1. When to use
  2. Steps
  3. Caveats
Commands it runs
npx -y ruvector@0.2.25 rvf status <session-id>.rvf
Read .../trajectory.ndjson
npx -y @claude-flow/cli@latest memory search --namespace browser-selectors \
More from ruflo
All skills →
About this skill
What does the browser-replay skill do?

Replay a recorded session trajectory against the same URL or a mutated variant; uses browser-selectors embedding similarity to recover from DOM drift

How do I install it?

Run `npx skills add ruvnet/ruflo --skill browser-replay --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ruvnet/ruflo, a repository with 67,015 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going