browserbase-search

browserbase-search is a skill for Claude Code from strikersam/autonomous-ai-agency. It costs 46 tokens per session (403 once invoked), scanned A, original, MIT.

A web search skill that finds relevant pages and returns their titles, links, authors, and dates in a structured format. It searches without opening a browser.

In plain words
What is it for?
Use it to locate source URLs before fetching their contents, research competitors, or find documentation and articles.
Why use it?
It helps you find the right sources quickly when researching competitors, documentation, or technical topics. The structured results are easier for an agent or script to process than a page of search text.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

Good fit Use it to locate source URLs before fetching their contents, research competitors, or find documentation and articles.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/strikersam/autonomous-ai-agency/browserbase-search
Install

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.

Any agent
npx skills add strikersam/autonomous-ai-agency --skill browserbase-search
Clone the repo
git clone --depth 1 https://github.com/strikersam/autonomous-ai-agency

Made for: Claude Code.

Wrote 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.

agentmods badge for browserbase-search

README.md
[![agentmods](https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/browserbase-search/github.svg)](https://agentmods.dev/skills/strikersam/autonomous-ai-agency/browserbase-search)
Your own site
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/browserbase-search"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/browserbase-search/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for browserbase-search

Your own site · 80×15
<a href="https://agentmods.dev/skills/strikersam/autonomous-ai-agency/browserbase-search"><img src="https://agentmods.dev/badge/skills/strikersam/autonomous-ai-agency/browserbase-search.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 403 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Data Exfiltration · line 33
    Data is being sent to an external URL. This could be legitimate telemetry or data exfiltration. Manual review is recommended.
    Fix: Verify the destination URL is trusted and necessary. Remove or replace with documented APIs. Ensure no secrets, tokens, or PII are transmitted.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.00403
Opus 5 $0.00023 $0.00201
Sonnet 5 $0.00009 $0.00081
Haiku 4.5 $0.00005 $0.00040

Measured 8d ago against content hash 5bcfc9ebecd1, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

browserbase-search scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

import os, json, urllib.request
.claude/skills/browserbase-search/SKILL.md · 59 lines

What it actually says

Setup

export BROWSERBASE_API_KEY="bb_live_..."

Python snippet

import os, json, urllib.request

def bb_search(query: str, num_results: int = 10) -> list[dict]:
    key = os.environ["BROWSERBASE_API_KEY"]
    payload = json.dumps({"query": query, "numResults": num_results}).encode()
    req = urllib.request.Request(
        "https://api.browserbase.com/v1/search",
        data=payload,
        headers={"X-BB-API-Key": key, "Content-Type": "application/json"},
    )
    with urllib.request.urlopen(req, timeout=30) as resp:
        return json.loads(resp.read()).get("results", [])

results = bb_search("local-llm-server autonomous AI agency platform")
for r in results[:5]:
    print(r["title"])
    print(r["url"])
    print()

Best practice: search → fetch → browse

# Step 1: Search to find the right URL
results = bb_search("FastAPI security headers best practices 2025")

# Step 2: Fetch the top result's content (if static)
content = bb_fetch(results[0]["url"])

# Step 3: Only open browser if you need to interact
browse open results[0]["url"] --remote
Changes

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.

  1. 8d ago First seen · 59 lines · 46 tokens per session scan A 5bcfc9ebecd1

Subscribe to this mod's changes

browserbase-search is a skill published in the GitHub repository strikersam/autonomous-ai-agency (8 stars, last pushed yesterday), licensed MIT. It adds 46 tokens to every session and 403 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

assimilate-popular-workflows

This skill should be used when the user asks to "find skills in the wild", "assimilate popular workflows", "discover SKILL.md files in repos", "research external skills", "find workflow patterns", "survey the skill landscape", "what skills exist out there", or wants to investigate public repositories for extractable…

a5c-ai/babysitter · 110 tokens

process-builder

Scaffold new babysitter process definitions following SDK patterns, proper structure, and best practices. Guides the 3-phase workflow from research to implementation.

a5c-ai/babysitter · 32 tokens

mcp-app-verification

Comprehensive verification checklists for MCP Apps. Tests with basic-host reference, validates handler-before-connect, text fallback, resource URI linking, single-file bundling, host styling, CSP, and legacy pattern detection.

a5c-ai/babysitter · 48 tokens

mcp-app-scaffolding

Scaffolds MCP App project structure with correct directory layout, dependencies, entry points, and framework-specific templates. Handles React (useApp hook), Vanilla JS, Vue, Svelte, Preact, and Solid.

a5c-ai/babysitter · 50 tokens

mcp-csp-investigation

Comprehensive Content Security Policy audit for MCP Apps in sandboxed iframes. Discovers all network origins, traces them to source, and generates CSP configuration for registerAppResource.

a5c-ai/babysitter · 43 tokens

frontmatter-parsing

YAML frontmatter parsing and manipulation for .planning/ documents. Provides read, write, update, query, and validation operations on frontmatter blocks in GSD markdown artifacts.

a5c-ai/babysitter · 40 tokens