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.
curl -O https://raw.githubusercontent.com/gsbakshi/nebula-tv/main/.claude/agents/gecko-browser-specialist.mdgit clone --depth 1 https://github.com/gsbakshi/nebula-tvWrote 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/gsbakshi/nebula-tv/gecko-browser-specialist)<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.
<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>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.1 | $0.00052 | $0.01294 |
| Opus 5 | $0.00026 | $0.00647 |
| Sonnet 5 | $0.00010 | $0.00259 |
| Haiku 4.5 | $0.00005 | $0.00129 |
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.
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:
- You cannot overlay Compose UI on top of GeckoView via normal z-order — Compose elements drawn "above" GeckoView will appear behind it visually
- 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
- If you need overlays (e.g., an in-page search bar), use
GeckoViewinTextureViewmode (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.
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.
- 11d ago First seen · 125 lines · 52 tokens per session scan A b6e352b3bdab
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.
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.…
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…
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.
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.
Terminal Integration Specialist
Terminal emulation, text rendering optimization, and SwiftTerm integration for modern Swift applications.
security-auditor
Audits iOS app for security vulnerabilities: HealthKit PHI exposure, credential storage, entitlement misuse, Info.plist validation. Use before releases or security reviews.