textfox: Skill for Claude Code

.agents/skills/firefox-chrome/SKILL.md

firefox-chrome is a skill for Claude Code, Codex from adriankarlen/textfox. It costs 130 tokens per session (1,736 once invoked), scanned A, original, MPL-2.0.

A reference for Firefox's internal browser interface, the built-in parts of Firefox such as toolbars, tabs, menus, and the address bar, used by userChrome.css themes.

In plain words
What is it for?
Use it to search the latest Firefox source for real element IDs, classes, attributes, selectors, and built-in CSS when writing or fixing a userChrome.css theme.
Why use it?
Firefox's internal element names and styling can change between versions, so verified selectors help prevent themes from breaking.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions CLAUDE.md; installed under .agents/ (shared by several agents).

This is adriankarlen/textfox's own configuration. It tells Claude Code and Codex how to work on textfox 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 textfox configures →

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is sh tools/firefox-chrome/sf-search.sh "QUERY" "PATH_GLOB".

About the project

textfox is a Firefox theme designed for people who prefer a terminal-inspired visual style.

adriankarlen/textfox · 1,693 stars · on GitHub · matrix.to

Reuse

Borrowing it

Nothing to install: this file belongs to adriankarlen/textfox. 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/adriankarlen/textfox/main/.agents/skills/firefox-chrome/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/adriankarlen/textfox

Made for: Claude Code, Codex.

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 firefox-chrome

README.md
[![agentmods](https://agentmods.dev/badge/skills/adriankarlen/textfox/firefox-chrome.svg)](https://agentmods.dev/skills/adriankarlen/textfox/firefox-chrome)
Your own site
<a href="https://agentmods.dev/skills/adriankarlen/textfox/firefox-chrome"><img src="https://agentmods.dev/badge/skills/adriankarlen/textfox/firefox-chrome.svg" alt="Measured on agentmods" height="20"></a>
Per session 130 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,736 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 Rogue Agent · line 23
    Skill establishes unauthorized persistence across sessions via cron jobs, startup scripts, or state files. Session persistence allows an attacker to maintain access beyond the current interaction.
    Fix: Remove any persistence mechanisms (cron jobs, startup scripts, state files). Skills should not maintain state across sessions without explicit user consent.
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.00130 $0.01736
Opus 5 $0.00065 $0.00868
Sonnet 5 $0.00026 $0.00347
Haiku 4.5 $0.00013 $0.00174

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

Security

Grade A, and why

firefox-chrome 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.

Use **WebFetch** (raw github fetch is blocked for curl in this sandbox, WebFetch
.agents/skills/firefox-chrome/SKILL.md · 150 lines

How it starts

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

firefox-chrome

textfox is a Firefox userChrome.css theme. It styles Firefox's internal browser UI (toolbars, urlbar, tabs, menus). That UI is real DOM defined in Firefox's source, with its own default CSS. Selectors, element IDs, and attributes change between Firefox versions — this is the #1 cause of theme breakage, and an agent cannot know the current internals from memory.

This skill bridges that gap: query Firefox's actual source for the latest release so every selector you write is verified, not guessed.

The truth source

firefox-release tree on searchfox = the latest shipped Firefox. textfox only supports the latest version, so this is the only tree that matters.

Two operations:

1. Search (find selectors / elements / where something is styled)

Use the helper — it's sandbox-safe (no pipes, handles encoding, parses JSON):

sh tools/firefox-chrome/sf-search.sh "QUERY" "PATH_GLOB"
  • QUERY — a class, id, attribute, or any substring. Supports searchfox syntax.
  • PATH_GLOB (optional) — e.g. *.css, *.xhtml. Narrow noisy queries with it.

Output: path:line: matched line, grouped by match kind. Zero matches for a selector textfox already uses = strong signal Firefox renamed/removed it → search the surrounding area for the new name.

Examples:

sh tools/firefox-chrome/sf-search.sh "urlbar-background" "*.css"   # who styles it
sh tools/firefox-chrome/sf-search.sh "nav-bar" "*.xhtml"           # find the DOM node
sh tools/firefox-chrome/sf-search.sh "tab-background-start"        # everywhere

2. Read a full file (see structure / default rules in context)

Use WebFetch (raw github fetch is blocked for curl in this sandbox, WebFetch works) against the github mirror, release branch:

https://raw.githubusercontent.com/mozilla-firefox/firefox/release/<PATH>

<PATH> is the path from a search hit (e.g. browser/themes/shared/urlbar-searchbar.css).

Or read it rendered (with line numbers) on searchfox via WebFetch:

https://searchfox.org/firefox-release/source/<PATH>

Read the full file on GitHub · 150 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. 8d ago First seen · 150 lines · 130 tokens per session scan A 0fd1566550c3

Subscribe to this mod's changes

firefox-chrome is a skill published in the GitHub repository adriankarlen/textfox (1,693 stars, last pushed 3mo ago), licensed MPL-2.0. It adds 130 tokens to every session and 1,736 once invoked, about $0.0006 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-08-30.

Related

Other skills, from other repositories

popular-web-designs

54 real design systems (Stripe, Linear, Vercel) as HTML/CSS.

NousResearch/hermes-agent · 23 tokens

video-shot-demos

A workflow for creating animated HTML pages, one page per video shot, lesson segment, or narrated scene. It combines a shared player structure with different visual designs for each shot.

Unclecheng-li/AI_Animation · 166 tokens

designlang-tokens

Use when styling UI for cal.com — references the extracted design system tokens instead of inventing colors, spacing, or typography.

Manavarya09/design-extract · 30 tokens

font-size

Use when applies to all CSS font-size declarations, particularly those using px units for body text, UI labels, and navigation. Use when auditing mobile responsiveness and accessibility compliance. Check for font-size in media queries targeting small screens.

thedaviddias/Front-End-Checklist · 54 tokens

horizontal-scroll

Use when applies to all CSS layout rules. Check width, min-width, fixed pixel values on containers, overflow, white-space, and word-break properties. Use when auditing responsive design or WCAG 2.1 Level AA compliance. Test at 320px viewport width and at 400% browser zoom.

thedaviddias/Front-End-Checklist · 71 tokens

interstitials

Use when applies to CSS and JavaScript implementations of modals, overlays, pop-ups, cookie banners, newsletter sign-up dialogs, and promotional overlays. Check for position: fixed, position: absolute with large z-index, backdrop overlays, and JavaScript that shows modals on page load or shortly after. Consider both…

thedaviddias/Front-End-Checklist · 83 tokens