aio-neobrutalism

aio-neobrutalism is a skill for Claude Code from aiocean/claude-plugins. It costs 33 tokens per session (1,489 once invoked), scanned A, original, MIT.

A design transformation for web projects that applies the neobrutalist style, known for bold shapes, strong contrast, and deliberately rough visual details.

In plain words
What is it for?
It is for detecting a project's web technology, defining shared style settings, and transforming existing interface components.
Why use it?
It helps turn an existing interface into a consistent neobrutalist design without manually redesigning every component.

Skill for Claude Code

Written for Claude Code: argument-hint in frontmatter.

Part of the aio-design-system plugin — 3 skills shipped together

Good fit It is for detecting a project's web technology, defining shared style settings, and transforming existing interface components.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/aiocean/claude-plugins/aio-neobrutalism
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 aiocean/claude-plugins --skill aio-neobrutalism
Clone the repo
git clone --depth 1 https://github.com/aiocean/claude-plugins

Made for: Claude Code.

Or install aio-design-system, the plugin that ships this one along with the rest of its 3 skills.

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 aio-neobrutalism

README.md
[![agentmods](https://agentmods.dev/badge/skills/aiocean/claude-plugins/aio-neobrutalism/github.svg)](https://agentmods.dev/skills/aiocean/claude-plugins/aio-neobrutalism)
Your own site
<a href="https://agentmods.dev/skills/aiocean/claude-plugins/aio-neobrutalism"><img src="https://agentmods.dev/badge/skills/aiocean/claude-plugins/aio-neobrutalism/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 aio-neobrutalism

Your own site · 80×15
<a href="https://agentmods.dev/skills/aiocean/claude-plugins/aio-neobrutalism"><img src="https://agentmods.dev/badge/skills/aiocean/claude-plugins/aio-neobrutalism.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 33 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,489 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.00033 $0.01489
Opus 5 $0.00016 $0.00745
Sonnet 5 $0.00007 $0.00298
Haiku 4.5 $0.00003 $0.00149

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

Security

Grade A, and why

aio-neobrutalism 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 10d ago.

The scan reads SKILL.md. This mod also ships 11 executable files (code/accordion/index.ts, code/ai-generating-overlay/index.ts, code/alert-dialog/index.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

plugins/aio-design-system/skills/aio-neobrutalism/SKILL.md · 180 lines

How it starts

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

Neobrutalism Design System Bootstrapper

Objective Workflow

Phase 1: DETECT — Identify Project Tech Stack

Scan the project root to determine the web framework and styling approach:

# Check for package.json, framework config files, CSS preprocessors
ls package.json tsconfig.json vite.config.* next.config.* nuxt.config.* tailwind.config.* postcss.config.* 2>/dev/null

Identify:

  • Framework: React, Vue, Svelte, Next.js, Nuxt, Astro, plain HTML
  • Styling: Tailwind CSS, CSS Modules, styled-components, Sass/Less, plain CSS
  • Component library: shadcn/ui, Radix, MUI, Vuetify, or none
  • Entry points: main CSS file, layout files, global styles location

Phase 2: GENERATE — Create CSS Tokens and Base Styles

Based on detected stack, generate the appropriate token format:

  • Tailwind: Extend theme in tailwind config with neobrutalism tokens (borders, shadows, colors)
  • CSS Variables: Generate :root block with all design tokens
  • styled-components/CSS-in-JS: Generate a theme object
  • Plain CSS: Copy code/base.css directly

Always include the neobrutalism fonts:

<link href="https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&family=Bricolage+Grotesque:[email protected]&display=swap" rel="stylesheet" />

Phase 3: APPLY — Transform Existing UI Components

  1. List all UI component files in the project (buttons, cards, inputs, modals, nav)
  2. For each component, apply the 6 Rules (see reference below):
    • Add thick black borders (2-4px solid #000)
    • Replace soft shadows with hard shadows (4px 4px 0 #000)
    • Remove border-radius or reduce to 0px
    • Replace gradients with solid vibrant colors
    • Increase font weights to 700-900
    • Add press-down or elevate-up interaction patterns
  3. Prioritize: buttons first, then cards, then inputs, then navigation

Phase 4: REVIEW — Show Before/After

For each transformed component:

  • Show the before state (existing styles)
  • Show the after state (neobrutalism styles)
  • Flag any anti-patterns found (blurred shadows, gradients, excessive radius)
  • Verify hover states and cursor: pointer on all interactive elements

Read the full file on GitHub · 180 lines

Files

What ships with it

60 files 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. 10d ago First seen · 180 lines · 33 tokens per session scan A d1094c11b94c

Subscribe to this mod's changes

aio-neobrutalism is a skill published in the GitHub repository aiocean/claude-plugins (4 stars, last pushed 8d ago), licensed MIT. It adds 33 tokens to every session and 1,489 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-31.

Related

Other skills, from other repositories

landing-page-generator

Generate complete, deploy-ready landing pages from any repository. Use when creating a homepage for an open-source project, building a project website, converting a README into a marketing page, or standardizing landing pages across multiple repos.

FlorianBruniaux/claude-code-ultimate-guide · 48 tokens

frontend-enhancer

This skill should be used when enhancing the visual design and aesthetics of web applications. It provides modern UI components, design patterns, color palettes, animations, and layout templates. REQUIRES ui-research skill first. Use this skill for tasks like improving styling, creating responsive designs…

travisjneuman/.claude · 79 tokens

generic-design-system

Complete design system reference for any project - colors, typography, spacing, components, animations. Adapts to project theme and tech stack. Use when implementing UI, choosing colors, creating animations, or ensuring brand consistency. For new design systems, use ui-research skill first.

travisjneuman/.claude · 60 tokens

generic-react-design-system

Complete design system reference for React applications. Covers colors, typography, spacing, component patterns, glassmorphism effects, GPU-accelerated animations, and WCAG AA accessibility. Use when implementing UI, choosing colors, applying spacing, creating components, or ensuring brand consistency.

travisjneuman/.claude · 59 tokens

generic-static-design-system

Complete design system reference for static HTML/CSS/JS sites. Covers colors, typography, component patterns, animations, and accessibility. Use when implementing UI, choosing colors, or ensuring brand consistency.

travisjneuman/.claude · 44 tokens

generic-static-ux-designer

Professional UI/UX design expertise for static HTML/CSS/JS sites. Covers design thinking, user psychology, visual hierarchy, minimalist interaction patterns, accessibility, and performance-driven design. Use when designing features, improving UX, or conducting design reviews.

travisjneuman/.claude · 56 tokens