oat-css

oat-css is a skill for Claude Code, Codex from spinspire/pocketbase-sveltekit-starter. It costs 42 tokens per session (4,393 once invoked), scanned A, original, MIT.

A small CSS framework that styles standard HTML elements, such as headings, forms, dialogs, and buttons, without requiring many CSS class names.

In plain words
What is it for?
It helps create basic web UIs with semantic HTML and adds interactive components such as dialogs, dropdowns, tabs, toasts, tooltips, and sidebars.
Why use it?
It reduces repetitive markup and custom styling when building a web interface. You only add custom SCSS when the built-in styles do not fit.

Skill for Claude CodeCodex

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

Good fit It helps create basic web UIs with semantic HTML and adds interactive components such as dialogs, dropdowns, tabs, toasts, tooltips, and sidebars.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/spinspire/pocketbase-sveltekit-starter/oat-css
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 spinspire/pocketbase-sveltekit-starter --skill oat-css
Clone the repo
git clone --depth 1 https://github.com/spinspire/pocketbase-sveltekit-starter

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 oat-css

README.md
[![agentmods](https://agentmods.dev/badge/skills/spinspire/pocketbase-sveltekit-starter/oat-css/github.svg)](https://agentmods.dev/skills/spinspire/pocketbase-sveltekit-starter/oat-css)
Your own site
<a href="https://agentmods.dev/skills/spinspire/pocketbase-sveltekit-starter/oat-css"><img src="https://agentmods.dev/badge/skills/spinspire/pocketbase-sveltekit-starter/oat-css/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 oat-css

Your own site · 80×15
<a href="https://agentmods.dev/skills/spinspire/pocketbase-sveltekit-starter/oat-css"><img src="https://agentmods.dev/badge/skills/spinspire/pocketbase-sveltekit-starter/oat-css.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,393 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to high

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 →

  • high Prompt Injection · line 48
    Hidden instructions were detected in comments or invisible text. These could contain malicious directives. Manual review is recommended.
    Fix: Audit all comments and invisible characters. Remove any instructions that direct the agent to perform unauthorized actions. Use plain, reviewable content.
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.00042 $0.04393
Opus 5 $0.00021 $0.02197
Sonnet 5 $0.00008 $0.00879
Haiku 4.5 $0.00004 $0.00439

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

Security

Grade A, and why

oat-css 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.

.agents/skills/oat-css/SKILL.md · 550 lines

How it starts

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

Oat CSS

Oat is an ultra-lightweight (~8KB min+gz), zero-dependency, semantic HTML/CSS/JS UI library by Kailash Nadh (5k+ stars on GitHub). It styles native HTML elements out of the box — no classes needed for basic UIs. Dynamic components use WebComponents with minimal JS.

Philosophy: Semantic tags and attributes are styled contextually without classes, forcing best practices and reducing markup class pollution. Only reach for custom CSS when Oat's defaults don't cover your use case.

Installation

npm (SvelteKit, Vite, etc.)

bun add @knadh/oat

In your app entry or root SCSS:

@import '@knadh/oat/oat.min.css';

Import the JS for dynamic components (dialog, dropdown, tabs, toast, tooltip, sidebar):

import '@knadh/oat/oat.min.js';

Or selectively import individual files from @knadh/oat/css/ and @knadh/oat/js/.

CDN

<link rel="stylesheet" href="https://unpkg.com/@knadh/oat/oat.min.css">
<script src="https://unpkg.com/@knadh/oat/oat.min.js" defer></script>

Core Principle

Use semantic HTML. Oat styles elements based on their tag and ARIA attributes, not CSS classes.

<!-- ❌ Class-heavy approach you DON'T need with Oat -->
<div class="card">
  <div class="card-header">
    <h3 class="card-title">Title</h3>
  </div>
  <div class="card-body">
    <p>Content</p>
  </div>
  <div class="card-footer">
    <button class="btn btn-primary">Save</button>
  </div>
</div>

<!-- ✅ Semantic HTML — Oat styles this automatically -->
<article class="card">
  <header>
    <h3>Title</h3>
  </header>
  <p>Content</p>
  <footer>
    <button>Save</button>
  </footer>
</article>

When to Add Custom CSS/SCSS

Only override when:

  1. Brand colors — redefine CSS variables in :root (see Theming below)
  2. Layout — use Oat's .hstack, .vstack, .container/.row/.col-* grid, or add your own
  3. Complex compositions — recipes like stats cards, split buttons, form cards
  4. Custom animations or interactions — Oat doesn't ship opinionated transitions beyond the basics

Read the full file on GitHub · 550 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. 9d ago First seen · 550 lines · 42 tokens per session scan A f5d36ddf73e5

Subscribe to this mod's changes

oat-css is a skill published in the GitHub repository spinspire/pocketbase-sveltekit-starter (508 stars, last pushed 17d ago), licensed MIT. It adds 42 tokens to every session and 4,393 once invoked, about $0.0002 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.

Related

Other skills, from other repositories

svelte-advanced-datatable

Scaffold or modify a Svelte 5 DataTable using the svelte-advanced-datatable package — DataTableConfig, column types (ComponentType.STRING/NUMBER/BOOLEAN/DATE/ENUM/CUSTOM), sort, pagination, sticky-header, density, snippet slots, daisyUI rendering. Use when adding a new table, defining columns, or tuning baseline…

Kage0x3B/svelte-advanced-datatable · 133 tokens

with-svg-animation

Surfaces the SVG animation traps that go unmentioned when a request sounds simple — dash patterns restarting at every subpath, pathLength normalization, transform-box on inner elements. Use whenever animating an SVG (draw-on, hover spin or scale, path morph, clip reveal, scroll-linked draw), including when the request…

robcsaszar/frontend-kit · 120 tokens

dryui-build

Experimental DryUI layout-only skill that extracts responsive page structure from design images as abstract colored blocks with strict shell areas, fixed page container queries, and visual self-checks. Use when testing design-image to layout-skeleton extraction.

rob-balfre/dryui · 49 tokens

dryui-build

Experimental DryUI page-layout skill that builds colored block page prototypes with mobile-first container queries. Use when testing page layout, responsive regions, dashboards, shells, or full-page structure before detailed UI styling.

rob-balfre/dryui · 44 tokens

dryui-build

Experimental DryUI fixture-first page skill for image-to-app layout tests. Use when testing stage 1 page classification, stage 2 constrained DryUI implementation, and stage 3 build repair.

rob-balfre/dryui · 42 tokens

dryui-build-experiment-d

Experimental DryUI UI build workflow using branch routing, page-shell container queries, visual checks, and agentic variant selection. Use when testing whether the model can create, score, and choose among layout variants before implementation.

rob-balfre/dryui · 50 tokens