Skip to content
← Registry
Trust Report

Agent Browser

A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.

75
CONDITIONAL
Format: openclawScanner: v0.8.0Duration: 6msScanned: 7d ago · Jun 1, 3:40 AMSource →
Embed this badge
AgentVerus CONDITIONAL 75AgentVerus CONDITIONAL 75AgentVerus CONDITIONAL 75
[![AgentVerus](https://agentverus.ai/api/v1/skill/f59b3714-7c1a-4996-9ffb-9b6779c5a00f/badge)](https://agentverus.ai/skill/f59b3714-7c1a-4996-9ffb-9b6779c5a00f)
Community Discussion

Community Comments

Public comments are the active feedback surface on skill reports right now. Use them to share implementation notes, edge cases, and operator context.

0 comments

Sign in to comment on this skill

No comments yet. Be the first to share your thoughts.

Continue the workflow

Keep this report moving through the activation path: rescan from the submit flow, capture real-world interactions, and wire the trust endpoint into your automation.

https://agentverus.ai/api/v1/skill/f59b3714-7c1a-4996-9ffb-9b6779c5a00f/trust
Personalized next commands

Use these current-skill command blocks to keep this exact report moving through your workflow.

Record an interaction
curl -X POST https://agentverus.ai/api/v1/interactions \
  -H "Authorization: Bearer at_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"agentPlatform":"openclaw","skillId":"f59b3714-7c1a-4996-9ffb-9b6779c5a00f","interactedAt":"2026-03-15T12:00:00Z","outcome":"success"}'
Fetch trust JSON
curl https://agentverus.ai/api/v1/skill/f59b3714-7c1a-4996-9ffb-9b6779c5a00f/trust

Category Scores

22
Permissions
100
Injection
92
Dependencies
59
Behavioral
65
Content
100
Code Safety

Findings (15)

mediumUnknown external reference-8

The skill references an unknown external domain which is classified as medium risk.

https://star-swap.com

Verify that this external dependency is trustworthy and necessary.

dependenciesASST-04
highCapability contract mismatch: inferred command execution is not declared-12

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: npm install

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred file write is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: screenshot page.png

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred network access is not declared-6

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: https://github.com/vercel-labs/agent-browser

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-04
mediumCapability contract mismatch: inferred browser automation is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: browser automation

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred content extraction is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: screenshot

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-02
mediumCapability contract mismatch: inferred local service access is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: port=9222

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred UI state access is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: snapshot -i

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumCapability contract mismatch: inferred local input control is not declared-8

The scanner inferred a risky capability from the skill content/metadata, but no matching declaration was found. Add a declaration with a clear justification, or remove the behavior.

Content pattern: click @e2

Declare this capability explicitly in frontmatter permissions with a specific justification, or remove the risky behavior.

permissionsASST-03
mediumSystem modification detected (inside code block)-6

Found system modification pattern: "npm install -g"

npm install -g agent-browser

Skills should not modify system configuration or install packages globally. Bundle required dependencies.

behavioralASST-03
mediumBrowser JavaScript evaluation detected (inside code block)-5

Found browser javascript evaluation pattern: "agent-browser eval"

agent-browser eval <js>

Treat browser-side JavaScript evaluation as privileged execution. Constrain the origin, review the expression, and avoid combining it with authenticated sessions unless necessary.

behavioralASST-03
mediumHigh-risk workflow lacks explicit safety boundaries-15

The skill performs or enables higher-risk operations but does not define explicit safety boundaries describing what it must not do.

No safety boundary patterns found alongside high-risk capability language

Add a 'Safety Boundaries' section listing what the skill must NOT do (e.g., no file deletion, no network access beyond needed APIs).

contentASST-09
mediumFederated auth flow detected-10

Found federated auth flow pattern: "OAuth" Related auth/profile context: - auth/session capability-contract context — Capability contract mismatch: inferred browser session attachment is not declared

## Using Real Chrome Profile (for OAuth/Logged-in Sessions)

Treat OAuth, 2FA, and token-refresh guidance as authentication-sensitive workflows. Explain scope, storage, and refresh behavior clearly so agents do not handle more credential material than necessary.

behavioralASST-05
mediumUI state enumeration detected (inside code block)-5

Found ui state enumeration pattern: "snapshot -i"

agent-browser --cdp 9222 snapshot -i

Treat DOM/accessibility snapshots and clickable-element inventories as sensitive page-state extraction. Be explicit about when UI enumeration is allowed, especially on authenticated or local-only apps.

behavioralASST-02
mediumBrowser content extraction detected-5

Found browser content extraction pattern: "get html" Merged overlapping signals from the repeated finding family: - Browser content extraction detected

agent-browser get html <sel>

Treat browser page capture and HTML/text extraction as potential data-access operations, especially when sessions may be authenticated. Make the data-access scope explicit and avoid collecting more page content than needed.

behavioralASST-02