browser-record
Open a named, traced browser session into an RVF cognitive container with a ruvector trajectory recording every action
npx skills add ruvnet/ruflo --skill browser-record --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# 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 \ --
- When to use
- Steps
- Caveats
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 \
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.