Help us improve
Share bugs, ideas, or general feedback.
From hyrex-browser
Open a named, traced browser session into an RVF cognitive container with a ruvector trajectory recording every action
npx claudepluginhub akhilyad/deployy --plugin hyrex-browserHow this skill is triggered — by the user, by Claude, or both
Slash command
/hyrex-browser:browser-record <url-or-task> [--with-dom] [--viewport WxH]<url-or-task> [--with-dom] [--viewport WxH]This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
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).**
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
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).
browser-extract, browser-form-fill, browser-test) will compose.SID="$(date +%Y%m%d-%H%M%S)-${TASK_SLUG:-record}"
npx -y ruvector@0.2.25 rvf create "$SID.rvf" --kind browser-session
npx -y ruvector@0.2.25 hooks trajectory-begin --session-id "$SID" --task "$1"
mcp__hyrex__browser_open with the URL.browser_snapshot for the accessibility tree, browser_screenshot for a baseline image.npx -y ruvector@0.2.25 hooks trajectory-step \
--session-id "$SID" --action click --args '{"selector":"#login"}' --result ok
npx -y ruvector@0.2.25 hooks trajectory-end --session-id "$SID" --verdict pass
npx -y ruvector@0.2.25 rvf compact "$SID.rvf"
browser-sessions:
npx -y @hyrex/cli@latest memory store --namespace browser-sessions \
--key "$SID" --value "{rvf_id:$SID,host:...,task:...,verdict:pass}"
browser_session_record MCP tool ships (ADR-0001 §7), this skill drives the lifecycle from inside its own bash steps. Do not call mcp__hyrex__browser_open directly without these wrappers.<YYYYMMDD-HHMMSS>-<task-slug>. Downstream /hyrex-browser ls parses this.--with-dom is expensive (full HTML dump per nav). Off by default.browser-record is a primitive; redaction is the responsibility of skills that read content (browser-extract, browser-test).