Agent skill

browser-record

Open a named, traced browser session into an RVF cognitive container with a ruvector trajectory recording every action

rUv71,307★ · +1,002/wk · 3 repos on radarProfile →
claude-codecodexcan modify filesMIT
Install
npx skills add ruvnet/ruflo --skill browser-record --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_session-listmcp__plugin_ruflo-core_ruflo__browser_screenshotmcp__plugin_ruflo-core_ruflo__browser_snapshotmcp__plugin_ruflo-core_ruflo__browser_waitmcp__plugin_ruflo-core_ruflo__aidefence_has_piimcp__plugin_ruflo-core_ruflo__aidefence_scanBashReadWrite
Path: plugins/ruflo-browser/skills/browser-record/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 Record Primitive on which every other browser skill composes. Opens a named browser session, allocates an RVF container for it, and binds every action to a ruvector trajectory step. **You do not run a browser session in this plugin without invoking this skill (or one that wraps it).** ## When to use - Starting any browser interaction that is not a one-off throwaway probe. - Exploring a site interactively while preserving the trace for later replay or analysis. - Establishing a reusable session that downstream skills (`browser-extract`, `browser-form-fill`, `browser-test`) will compose. ## Steps 1. **Allocate session id and RVF container**: ```bash SID="$(date +%Y%m%d-%H%M%S)-${TASK_SLUG:-record}" npx -y ruvector@0.2.25 rvf create "$SID.rvf" --dimension 384 npx -y ruvector@0.2.25 hooks trajectory-begin --session-id "$SID" --task "$1" ``` 2. **Open the browser** via `mcp__plugin_ruflo-core_ruflo__browser_open` with the URL. 3. **Snapshot the initial state**: `browser_snapshot` for the accessibility tree, `browser_screenshot` for a baseline image. 4. **For each interaction**, record a trajectory step before and after: ```bash npx -y ruvector@0.2.25 hooks trajectory-step \ --

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 create "$SID.rvf" --dimension 384
npx -y ruvector@0.2.25 hooks trajectory-begin --session-id "$SID" --task "$1"
npx -y ruvector@0.2.25 hooks trajectory-step \
npx -y ruvector@0.2.25 hooks trajectory-end --session-id "$SID" --verdict pass
npx -y ruvector@0.2.25 rvf compact "$SID.rvf"
npx -y @claude-flow/cli@latest memory store --namespace browser-sessions \
More from ruflo
All skills →
About this skill
What does the browser-record skill do?

Open a named, traced browser session into an RVF cognitive container with a ruvector trajectory recording every action

How do I install it?

Run `npx skills add ruvnet/ruflo --skill browser-record --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