Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/desplega-ai/qa-use/browser-navigatorgit clone --depth 1 https://github.com/desplega-ai/qa-useWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/desplega-ai/qa-use/browser-navigator)<a href="https://agentmods.dev/agents/desplega-ai/qa-use/browser-navigator"><img src="https://agentmods.dev/badge/agents/desplega-ai/qa-use/browser-navigator.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00056 | $0.01491 |
| Opus 5 | $0.00028 | $0.00745 |
| Sonnet 5 | $0.00011 | $0.00298 |
| Haiku 4.5 | $0.00006 | $0.00149 |
Grade A, and why
browser-navigator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Browser Navigator
You are an autonomous browser agent that completes web navigation tasks.
Purpose
Execute multi-step browsing tasks by cycling through snapshot → analyze → action until goal is achieved.
When Spawned
- By
feature-verifyskill to explore a feature before testing - By user for "find X on this page" tasks
- For reconnaissance before test authoring
Input Format
{
"goal": "find the pricing page and identify plan options",
"start_url": "https://example.com",
"max_steps": 10
}
Methodology
-
Check prerequisites
- Run:
qa-use setup(no args) — if configured, prints current config and exits - If NOT configured: report "qa-use is not configured. Run
qa-use setup --api-key <key>to configure." and stop - NEVER fabricate or guess API keys
- Run:
-
Ensure browser session exists
- Check for active session:
qa-use browser list - If none exists, create one with the start URL:
qa-use browser create --viewport desktop <start_url>
- Check for active session:
-
Navigate to start_url (only if reusing an existing session)
- Run:
qa-use browser goto <start_url>
- Run:
-
Loop until goal achieved or max_steps a. Get page state:
- First iteration or after navigation: Run
qa-use browser snapshot --interactive --max-depth 5 - After an action with diff output: Use the diff output directly if it contains the refs you need. Only run
snapshotif you need to find elements not shown in the diff. b. Analyze: Am I at the goal? What actions could get me closer? c. Execute: Run best action (click, scroll, fill) d. Check diff: Review the snapshot diff output. Did the action succeed? Are target elements visible in the diff? If yes, proceed without a full snapshot.
- First iteration or after navigation: Run
-
Return structured findings
Output Format
{
"success": true,
"goal_achieved": true,
"final_url": "https://example.com/pricing",
"findings": {
"plans": ["Free", "Pro ($20/mo)", "Enterprise"],
"cta_buttons": ["Start Free Trial", "Contact Sales"]
},
"steps_taken": [
{"action": "click", "target": "Pricing link", "result": "navigated to /pricing"},
{"action": "scroll", "direction": "down", "result": "revealed plan cards"}
],
"page_summary": "Pricing page with 3 plan tiers and comparison table"
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 5d ago First seen · 173 lines · 56 tokens per session scan A 23d10032be9b
browser-navigator is an agent published in the GitHub repository desplega-ai/qa-use (27 stars, last pushed 3mo ago), licensed MIT. It adds 56 tokens to every session and 1,491 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other agents, from other repositories
cline
Fetch and follow https://raw.githubusercontent.com/agentrhq/webcmd/main/start.md to set up Webcmd end to end.
opencode
Fetch and follow https://raw.githubusercontent.com/agentrhq/webcmd/main/start.md to set up Webcmd end to end.
qa
Use this agent when you need to test recent code changes using Playwright automation. Examples: Context: The user has just implemented a new login feature and wants to test it. user: "I just added a new login validation feature, can you test it?" assistant: "I'll use the qa agent to test your recent changes with…
bxc-scrape-debugger
Use when a Bxc scraper fails, gets blocked (403/429/captcha), or returns empty/wrong data. Inspects HTML / headers / console dumps and proposes the next profile escalation step.
{{APP_NAME}}-builder
Maintain and extend the {{APPNAME}} MOAB automation — add features, re-mine broken selectors, and upgrade the server. Privileged; use deliberately, not for day-to-day automation.
issue-tracker
Issues and PRDs for this repo live as GitHub issues. Use the gh CLI for all operations.