find-templates▌
browserbase.com/find-templates-lyrzye · updated May 21, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
List Browserbase's starter templates (TypeScript / Python / Go) and the canonical clone command for each, sourced from the official bb CLI's templates subcommand which reads github.com/browserbase/templates@dev.
| name | find-templates |
| title | Browserbase Find Templates |
| description | >- List Browserbase's starter templates (TypeScript / Python / Go) and the canonical clone command for each, sourced from the official bb CLI's templates subcommand which reads github.com/browserbase/templates@dev. |
| website | browserbase.com |
| category | developer-tools |
| tags | - browserbase - templates - cli - starter-projects - developer-tools |
| source | 'browserbase: agent-runtime 2026-05-18' |
| updated | '2026-05-18' |
| recommended_method | cli |
| alternative_methods | - method: api rationale: >- GitHub Contents API on github.com/browserbase/templates@dev returns the same canonical slug list and additionally surfaces Go templates that the CLI hides. Use as a cross-validation path or when the bb CLI cannot be installed. - method: browser rationale: >- https://www.browserbase.com/templates is the public marketing page over the same repo. Fully JS-rendered (Next.js hydration); the static prerender HTML contains zero template slugs, so a real browser is required — `bb fetch` returns only the shell. ~6x more turns than the CLI path with no additional information. |
| verified | false |
| proxies | false |
Browserbase Find Templates
Purpose
Discover and list the starter templates Browserbase publishes for bootstrapping browser-automation projects — return each template's slug, supported language(s) (TypeScript / Python / Go), and the canonical clone command. Read-only enumeration; no scaffolding occurs unless the caller subsequently invokes bb templates clone.
When to Use
- Answering "what Browserbase templates exist for {use case}?" (e.g. form-filling, scraping, MFA, captchas, proxies, gemini/cua agents).
- Bootstrap-time discovery: a developer asks for a starter project before writing any code.
- Cross-language coverage check: does template X exist in both Python and TypeScript? (Most do; a handful are TS-only.)
- Periodic catalog refresh — the repo's default branch (
dev) is updated weekly; pullingbb templates listis the cheapest way to detect new additions.
Workflow
Browserbase exposes a first-party CLI (@browserbasehq/cli, binary bb) whose templates subcommand reads the canonical catalog directly from github.com/browserbase/templates (default branch dev). The CLI is the recommended path — output is structured, no JS rendering, no anti-bot surface, and BROWSERBASE_API_KEY is not required for templates list/clone (the CLI hits GitHub, not the Browserbase platform API, for this subcommand). The public website https://www.browserbase.com/templates is a JS-rendered marketing surface over the same repo; treat it as a fallback only when the CLI is unavailable.
1. Install the CLI (one-time, ~25 packages)
npm install -g @browserbasehq/cli
# Binary is `bb`. The system-prompt-mentioned `browse` is a separate, optional
# package (`@browserbasehq/browse-cli`) used for driving browser sessions —
# NOT required for the templates subcommand.
2. List all templates
bb templates list
Output (sectioned by language, alphabetical slugs):
typescript (40 templates):
agent-with-human-in-loop
amazon-global-price-comparison
...
website-link-tester
python (36 templates):
amazon-global-price-comparison
...
website-link-tester
Scaffold a template with: bb templates clone <slug> --language <language>
3. Filter by language
bb templates list --language typescript # 40 templates as of 2026-05-18
bb templates list --language python # 36 templates as of 2026-05-18
The --language flag accepts exactly typescript or python. Go templates exist in the repo (go/hackernews) but the CLI does not expose them — see Site-Specific Gotchas.
4. (Optional) Scaffold a chosen template
Once a slug is identified, the user can clone it:
bb templates clone <slug> [--language <python|typescript>] [<destination-path>]
# Defaults: destination = ./<slug>, language = first available match
# Examples:
bb templates clone form-filling --language typescript
bb templates clone amazon-product-scraping --language python ./my-scraper
clone writes a ready-to-run project directory; the skill itself stops at listing.
5. Cross-validate against the source repo (optional integrity check)
The catalog source of truth is https://github.com/browserbase/templates on branch dev. To programmatically verify the list (e.g. detect templates added since the locally-installed CLI version was published):
curl -fsS "https://api.github.com/repos/browserbase/templates/contents/typescript?ref=dev" \
| jq -r '.[] | select(.type=="dir") | .name'
curl -fsS "https://api.github.com/repos/browserbase/templates/contents/python?ref=dev" \
| jq -r '.[] | select(.type=="dir") | .name'
curl -fsS "https://api.github.com/repos/browserbase/templates/contents/go?ref=dev" \
| jq -r '.[] | select(.type=="dir") | .name'
GitHub's unauthenticated API permits 60 req/hour — sufficient for daily catalog sync.
Browser fallback
If the CLI cannot be installed (sandbox restrictions, npm offline, etc.):
- Open
https://www.browserbase.com/templatesin a Browserbase remote session. A bare session is sufficient — Browserbase's own marketing site is not anti-bot-gated and a residential proxy / advanced stealth is not required. - The page is fully client-side rendered (Next.js);
bb fetchreturns the prerender HTML shell (~150 KB) but no template slugs are present in the static HTML — they are hydrated from a runtime JSON payload. You must drive a real browser, notfetch. - Wait for the templates grid to mount, then capture
browse get markdown bodyand split per-card to extract template title, description, andView on GitHubhref. Each card's GitHub link decodes the language: paths under/typescript/<slug>vs/python/<slug>vs/go/<slug>. - As a no-JS alternative: list the GitHub repo directly (Step 5 above) — that requires only
curl/fetchand returns the canonical slug list without rendering.
The browser path costs ~6× more turns and surfaces no information the CLI doesn't already expose. Use only when the CLI is genuinely unavailable.
Site-Specific Gotchas
- CLI binary is
bb, notbrowse. The npm package@browserbasehq/cliinstalls a single binary calledbb. A separate package@browserbasehq/browse-cliinstallsbrowsefor browser-driving verbs. Thetemplatessubcommand lives onbb, notbrowse. templates listdoes NOT requireBROWSERBASE_API_KEY. Unlikebb fetch,bb search, andbb sessions ..., the templates subcommand reads from GitHub, not the Browserbase platform API. It works offline-of-Browserbase as long asapi.github.comis reachable. (Otherbbsubcommands DO require the env var and will exit with"Missing Browserbase API key"otherwise.)- Go templates exist in the repo but the CLI hides them.
bb templates listonly enumeratestypescript/andpython/. The repo also containsgo/hackernews(and may grow). The--languageflag's accepted values are hardcoded topython | typescript; Go templates are reachable only by cloning the repo directly:git clone --depth 1 -b dev https://github.com/browserbase/templates.git. - Default branch is
dev, notmain. Direct GitHub API calls must pass?ref=devor the response will reflect a stalemainsnapshot. (The repo also marksmainasvanta_production_mainfor compliance reasons —devis where templates are actually pushed.) - Counts drift weekly. As of 2026-05-18: 40 TypeScript + 36 Python + 1 Go template. The repo was last pushed 2026-05-15 and is under active development (17 open issues, 12 forks). Do not hard-code counts in downstream consumers — re-run
bb templates listper discovery cycle. https://www.browserbase.com/templatesreturns 200 + ~150 KB of HTML shell, but the template grid is hydrated at runtime.bb fetch <url>(the Browserbase Fetch API, an HTTP-only path) returns the shell with no template slugs in it. The slugs are only visible after JS execution. Don't waste turns onfetch-based scraping of the marketing page — use the CLI or the GitHub API.- Template slugs do NOT always exist in both languages. Cross-language coverage as of 2026-05-18: TypeScript has
agent-with-human-in-loop,browser-agent-demo,dynamic-form-filling,gemini-3-flash,microsoft-cua,puppeteerthat have no Python counterpart. Python hascartesia-form-filling,cerebras-docs-checkerthat have no TypeScript counterpart. The remaining ~35 slugs exist in both. If a user asks for "the X template in Python" and it's TS-only, surface the asymmetry explicitly rather than failing the clone. - CLI's
--languageflag is required forcloneonly if the slug exists in multiple languages. For single-language slugs, the CLI auto-selects. For dual-language slugs, omitting--languagecauses an interactive prompt — pass it explicitly in non-interactive contexts. - No category/tag metadata in the CLI output. Slugs are surfaced as flat alphabetical lists. To classify templates by topic (e.g. "all MFA templates" →
manual-mfa-with-contexts,mfa-handling,playwright-mfa-handling) you must pattern-match the slug itself or fetch each template's README from GitHub.
Expected Output
A canonical structured listing — flatten the CLI's two-section output into a single array, key by slug, attach the languages it supports.
{
"source": "bb templates list",
"cli_version": "0.5.7",
"repo": "github.com/browserbase/templates",
"branch": "dev",
"counts": { "typescript": 40, "python": 36, "go": 1, "unique_slugs": 43 },
"templates": [
{
"slug": "form-filling",
"languages": ["typescript", "python"],
"clone_commands": [
"bb templates clone form-filling --language typescript",
"bb templates clone form-filling --language python"
],
"github_url": "https://github.com/browserbase/templates/tree/dev/typescript/form-filling"
},
{
"slug": "microsoft-cua",
"languages": ["typescript"],
"clone_commands": [
"bb templates clone microsoft-cua --language typescript"
],
"github_url": "https://github.com/browserbase/templates/tree/dev/typescript/microsoft-cua"
},
{
"slug": "cartesia-form-filling",
"languages": ["python"],
"clone_commands": [
"bb templates clone cartesia-form-filling --language python"
],
"github_url": "https://github.com/browserbase/templates/tree/dev/python/cartesia-form-filling"
},
{
"slug": "hackernews",
"languages": ["go"],
"clone_commands": [
"git clone --depth 1 -b dev https://github.com/browserbase/templates.git && cp -r templates/go/hackernews ./hackernews"
],
"github_url": "https://github.com/browserbase/templates/tree/dev/go/hackernews",
"note": "Not surfaced by `bb templates list`; CLI clone unsupported as of v0.5.7."
}
]
}
When the caller only asks "what templates are there?" (no schema specified), a degenerate form is acceptable:
{
"typescript": ["agent-with-human-in-loop", "amazon-global-price-comparison", "..."],
"python": ["amazon-global-price-comparison", "amazon-product-scraping", "..."],
"go": ["hackernews"]
}
How to use find-templates on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add find-templates
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches find-templates from GitHub repository browserbase.com/find-templates-lyrzye and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate find-templates. Access the skill through slash commands (e.g., /find-templates) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
Task Automation & Efficiency
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Knowledge Enhancement
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Quality Improvement
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client with skill support
- ›Clear understanding of task or problem to solve
- ›Willingness to iterate and refine outputs
Time Estimate
15-45 minutes depending on use case complexity
Installation Steps
- 1.Install skill using provided installation command
- 2.Test with simple use case relevant to your work
- 3.Evaluate output quality and relevance
- 4.Iterate on prompts to improve results
- 5.Integrate into regular workflow if valuable
Common Pitfalls
- ⚠Expecting perfect results without iteration
- ⚠Not providing enough context in prompts
- ⚠Using skill for tasks outside its intended scope
- ⚠Accepting outputs without review and validation
Best Practices▌
✓ Do
- +Start with clear, specific prompts
- +Provide relevant context and constraints
- +Review and refine all outputs before using
- +Iterate to improve output quality
- +Document successful prompt patterns
✗ Don't
- −Don't use without understanding skill limitations
- −Don't skip validation of outputs
- −Don't share sensitive information in prompts
- −Don't expect skill to replace human judgment
💡 Pro Tips
- ★Be specific about desired format and style
- ★Ask for multiple options to choose from
- ★Request explanations to understand reasoning
- ★Combine AI efficiency with human expertise
When to Use This▌
✓ Use When
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid When
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
Learning Path▌
- 1Familiarize yourself with skill capabilities and limitations
- 2Start with low-risk, non-critical tasks
- 3Progress to more complex and valuable use cases
- 4Build expertise through regular use and experimentation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.8★★★★★39 reviews- ★★★★★Liam Kapoor· Dec 28, 2024
find-templates has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Pratham Ware· Dec 24, 2024
find-templates is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Layla Diallo· Dec 12, 2024
Useful defaults in find-templates — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Kwame Abbas· Dec 12, 2024
find-templates fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Layla Mensah· Nov 19, 2024
find-templates reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Sakshi Patil· Nov 15, 2024
Keeps context tight: find-templates is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Liam Sharma· Nov 15, 2024
Solid pick for teams standardizing on skills: find-templates is focused, and the summary matches what you get after install.
- ★★★★★Yusuf Bhatia· Nov 3, 2024
I recommend find-templates for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
- ★★★★★Yuki Liu· Nov 3, 2024
Registry listing for find-templates matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Nia Kim· Oct 22, 2024
find-templates reduced setup friction for our internal harness; good balance of opinion and flexibility.
showing 1-10 of 39