nebula-tv: Agent for Claude Code

.claude/agents/gecko-browser-specialist.md

gecko-browser-specialist is an agent for Claude Code from gsbakshi/nebula-tv. It costs 52 tokens per session (1,294 once invoked), scanned A, original, MPL-2.0.

A specialist guide for integrating GeckoView 141.x, Mozilla’s Android browser engine, into an app built with Jetpack Compose. It covers browser tabs, Firefox account sign-in, and restoring tabs.

In plain words
What is it for?
Use it when building the browser panel, managing or restoring multiple tabs, connecting Firefox Sync through FxA OAuth, or placing GeckoView alongside Compose UI.
Why use it?
It helps avoid layout and integration mistakes when embedding a browser in an Android app, especially because GeckoView’s display surface cannot normally have Compose controls drawn over it.

Agent for Claude Code

Written for Claude Code: installed under .claude/.

This is gsbakshi/nebula-tv's own configuration. It tells Claude Code how to work on nebula-tv itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything nebula-tv configures →

Reuse

Borrowing it

Nothing to install: this file belongs to gsbakshi/nebula-tv. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/gsbakshi/nebula-tv/main/.claude/agents/gecko-browser-specialist.md
Clone the repo
git clone --depth 1 https://github.com/gsbakshi/nebula-tv

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 gecko-browser-specialist

README.md
[![agentmods](https://agentmods.dev/badge/agents/gsbakshi/nebula-tv/gecko-browser-specialist/github.svg)](https://agentmods.dev/agents/gsbakshi/nebula-tv/gecko-browser-specialist)
Your own site
<a href="https://agentmods.dev/agents/gsbakshi/nebula-tv/gecko-browser-specialist"><img src="https://agentmods.dev/badge/agents/gsbakshi/nebula-tv/gecko-browser-specialist/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 gecko-browser-specialist

Your own site · 80×15
<a href="https://agentmods.dev/agents/gsbakshi/nebula-tv/gecko-browser-specialist"><img src="https://agentmods.dev/badge/agents/gsbakshi/nebula-tv/gecko-browser-specialist.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,294 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.00052 $0.01294
Opus 5 $0.00026 $0.00647
Sonnet 5 $0.00010 $0.00259
Haiku 4.5 $0.00005 $0.00129

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

Security

Grade A, and why

gecko-browser-specialist 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 11d 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.

.claude/agents/gecko-browser-specialist.md · 125 lines

How it starts

The opening of the file, as written. The whole thing — 125 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are the Nebula GeckoView Specialist. You know GeckoView 141.x deeply — initialization, session management, Firefox Accounts (FxA) OAuth, and the AndroidView bridge to Compose.

Critical Architecture Facts

GeckoView in Compose — Z-Ordering Warning ⚠️

GeckoView is a SurfaceView — it PUNCHES A HOLE through the Android view hierarchy. It does not participate in normal Compose compositing. This has major consequences:

  1. You cannot overlay Compose UI on top of GeckoView via normal z-order — Compose elements drawn "above" GeckoView will appear behind it visually
  2. The URL bar, tab UI, and any browser chrome MUST be rendered outside the GeckoView area (above/below/beside it in the layout), NOT overlaid on it
  3. If you need overlays (e.g., an in-page search bar), use GeckoView in TextureView mode (slower, but compositable) — or keep overlays as separate Android Views at the Window level

Correct browser panel layout:

Column {
    BrowserToolbar(...)      // ← Compose UI — safe, not on top of GeckoView
    GeckoViewComposable(     // ← takes remaining space
        modifier = Modifier.weight(1f)
    )
    TabBar(...)              // ← Compose UI — safe, below GeckoView
}

GeckoView in Compose — AndroidView Bridge

@Composable
fun GeckoViewComposable(session: GeckoSession, modifier: Modifier = Modifier) {
    AndroidView(
        factory = { context ->
            GeckoView(context).also { view ->
                view.coverUntilFirstPaint = true  // ← prevents flash of blank content
                view.setSession(session)
            }
        },
        update = { view ->
            // Only update if session changed — avoid unnecessary surface resets
            if (view.session !== session) {
                view.releaseSession()
                view.setSession(session)
            }
        },
        modifier = modifier
    )
}

Key: GeckoView.releaseSession() before setting a new session. Not doing so leaks the old session.

Read the full file on GitHub · 125 lines

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. 11d ago First seen · 125 lines · 52 tokens per session scan A b6e352b3bdab

Subscribe to this mod's changes

gecko-browser-specialist is an agent published in the GitHub repository gsbakshi/nebula-tv (5 stars, last pushed 6mo ago), licensed MPL-2.0. It adds 52 tokens to every session and 1,294 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-31.

Related

Other agents, from other repositories

alchemist

Creative technologist who sees the browser as an unexplored physics engine. Consult when building UI that needs to feel alive - scroll-driven reveals, morphing transitions, spatial animation systems, anything where the interaction itself IS the product. Thinks in weight, tension, and breath before thinking in code.…

drobins25/craft · 355 tokens

mobile-ux-optimizer

Use this agent when you need to optimize UI/UX components or interfaces for mobile-first experiences, analyze existing design themes, or ensure mobile usability standards are met. Examples: Context: User has created a desktop-focused component and needs it optimized for mobile. user: 'I've built this navigation…

xbim08/awesome-claude-code-plugins · 0 tokens

e2e-tester

Use for end-to-end and smoke testing of critical user paths across viewports. Pairs with a browser-automation MCP (for example Playwright) when one is available.

mnzralee/claude-multi-agent-architecture · 41 tokens

project-architecture-analyst-android

Architecture analyst for planning new features and core changes. Scans project to infer patterns (MVVM, MVI, Clean Architecture), proposes plan, WAITS for approval. Use for project-wide architecture understanding.

Desquared/agents-rules-skills · 50 tokens

Terminal Integration Specialist

Terminal emulation, text rendering optimization, and SwiftTerm integration for modern Swift applications.

9thLevelSoftware/legion · 20 tokens

security-auditor

Audits iOS app for security vulnerabilities: HealthKit PHI exposure, credential storage, entitlement misuse, Info.plist validation. Use before releases or security reviews.

moasq/ios-dev-agent · 38 tokens