ultracite

ultracite is a skill for Claude Code, Codex from agustinusnathaniel/nextarter-tailwind. It costs 142 tokens per session (1,310 once invoked), scanned A, original, MIT.

A ready-made setup for checking and formatting JavaScript and TypeScript code, with support for Biome, ESLint with Prettier, and Oxlint with Oxfmt.

In plain words
What is it for?
Use it to initialize linting and formatting, check files for issues, automatically fix them, or diagnose setup problems.
Why use it?
It reduces the work of choosing, configuring, and running separate code-quality tools across a project.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for cline. Also seen: installed under .agents/ (shared by several agents); mentions Codex; built for cline.

Good fit Use it to initialize linting and formatting, check files for issues, automatically fix them, or diagnose setup problems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agustinusnathaniel/nextarter-tailwind/ultracite
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 agustinusnathaniel/nextarter-tailwind --skill ultracite
Clone the repo
git clone --depth 1 https://github.com/agustinusnathaniel/nextarter-tailwind

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 ultracite

README.md
[![agentmods](https://agentmods.dev/badge/skills/agustinusnathaniel/nextarter-tailwind/ultracite/github.svg)](https://agentmods.dev/skills/agustinusnathaniel/nextarter-tailwind/ultracite)
Your own site
<a href="https://agentmods.dev/skills/agustinusnathaniel/nextarter-tailwind/ultracite"><img src="https://agentmods.dev/badge/skills/agustinusnathaniel/nextarter-tailwind/ultracite/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 ultracite

Your own site · 80×15
<a href="https://agentmods.dev/skills/agustinusnathaniel/nextarter-tailwind/ultracite"><img src="https://agentmods.dev/badge/skills/agustinusnathaniel/nextarter-tailwind/ultracite.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 142 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,310 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
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.00142 $0.01310
Opus 5 $0.00071 $0.00655
Sonnet 5 $0.00028 $0.00262
Haiku 4.5 $0.00014 $0.00131

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

Security

Grade A, and why

ultracite 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 9d 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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

  • ultracite — 88% identical, 22 lines differ
.agents/skills/ultracite/SKILL.md · 107 lines

How it starts

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

Ultracite

Zero-config linting and formatting for JS/TS projects. Supports three linter backends: Biome (recommended), ESLint + Prettier, and Oxlint + Oxfmt.

Detecting Ultracite

Check if ultracite is in package.json devDependencies. Detect the active linter by looking for:

  • biome.jsonc → Biome
  • eslint.config.mjs → ESLint
  • oxlint.config.ts → Oxlint

CLI Commands

# Check for issues (read-only)
bunx ultracite check

# Auto-fix issues
bunx ultracite fix

# Diagnose setup problems
bunx ultracite doctor

# Initialize in a new project
bunx ultracite init

Replace bunx with npx, pnpx, or yarn dlx depending on the package manager.

check and fix accept optional file paths: bunx ultracite check src/index.ts.

Initialization

bunx ultracite init runs an interactive setup. For non-interactive (CI) use, pass flags:

bunx ultracite init \
  --pm bun \
  --linter biome \
  --editors universal \
  --agents claude copilot \
  --frameworks react next \
  --integrations husky lint-staged \
  --quiet

Flags:

  • --pmnpm | yarn | pnpm | bun
  • --linterbiome (recommended) | eslint | oxlint
  • --editorsuniversal (writes .vscode/settings.json for every VS Code-based editor) | vscode | zed | cursor | windsurf | antigravity | kiro | trae | void | bob | codebuddy
  • --agentsclaude | codex | copilot | cline | amp | gemini | cursor-cli + 19 more
  • --frameworksreact | next | solid | vue | svelte | qwik | remix | angular | astro | nestjs
  • --integrationshusky | lefthook | lint-staged | pre-commit
  • --hooks — Enable auto-fix hooks for supported agents/editors
  • --type-aware — Enable type-aware linting (oxlint only)
  • --skip-install — Skip dependency installation
  • --quiet — Suppress prompts (auto-detected when CI=true)

Init creates config that extends Ultracite presets:

// biome.jsonc
{ "extends": ["ultracite/biome/core", "ultracite/biome/react"] }

Read the full file on GitHub · 107 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 9d ago First seen · 107 lines · 142 tokens per session scan A e382fd14cee1

Subscribe to this mod's changes

ultracite is a skill published in the GitHub repository agustinusnathaniel/nextarter-tailwind (125 stars, last pushed 2d ago), licensed MIT. It adds 142 tokens to every session and 1,310 once invoked, about $0.0007 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-30.