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.
npx skills add aiocean/claude-plugins --skill aio-neobrutalismgit clone --depth 1 https://github.com/aiocean/claude-pluginsWrote 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/skills/aiocean/claude-plugins/aio-neobrutalism)<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.
<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>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.00033 | $0.01489 |
| Opus 5 | $0.00016 | $0.00745 |
| Sonnet 5 | $0.00007 | $0.00298 |
| Haiku 4.5 | $0.00003 | $0.00149 |
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.
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 — 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
themein tailwind config with neobrutalism tokens (borders, shadows, colors) - CSS Variables: Generate
:rootblock 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
- List all UI component files in the project (buttons, cards, inputs, modals, nav)
- 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
- 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: pointeron all interactive elements
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.
- code/accordion/Accordion.vue 416 B
- code/accordion/AccordionContent.vue 751 B
- code/accordion/AccordionItem.vue 716 B
- code/accordion/AccordionTrigger.vue 1.2 KB
- code/accordion/index.ts 260 B runs code
- code/accordion/metadata.json 570 B
- code/ai-generating-overlay/AIGeneratingOverlay.vue 6.1 KB
- code/ai-generating-overlay/index.ts 75 B runs code
- code/alert-dialog/AlertDialog.vue 414 B
- code/alert-dialog/AlertDialogAction.vue 623 B
- code/alert-dialog/AlertDialogCancel.vue 645 B
- code/alert-dialog/AlertDialogContent.vue 1.4 KB
- code/alert-dialog/AlertDialogDescription.vue 610 B
- code/alert-dialog/AlertDialogFooter.vue 337 B
- code/alert-dialog/AlertDialogHeader.vue 308 B
- code/alert-dialog/AlertDialogTitle.vue 612 B
- code/alert-dialog/AlertDialogTrigger.vue 291 B
- code/alert-dialog/index.ts 648 B runs code
- code/alert/Alert.vue 413 B
- code/alert/AlertDescription.vue 389 B
- code/alert/AlertTitle.vue 365 B
- code/alert/index.ts 832 B runs code
- code/aspect-ratio/AspectRatio.vue 289 B
- code/aspect-ratio/index.ts 59 B runs code
- code/avatar/Avatar.vue 443 B
- code/avatar/AvatarFallback.vue 396 B
- code/avatar/AvatarImage.vue 288 B
- code/avatar/index.ts 176 B runs code
- code/badge/Badge.vue 400 B
- code/badge/index.ts 746 B runs code
- code/base.css 10 KB
- code/breadcrumb/Breadcrumb.vue 246 B
- code/breadcrumb/BreadcrumbEllipsis.vue 497 B
- code/breadcrumb/BreadcrumbItem.vue 294 B
- code/breadcrumb/BreadcrumbLink.vue 436 B
- code/breadcrumb/BreadcrumbList.vue 397 B
- code/breadcrumb/BreadcrumbPage.vue 334 B
- code/breadcrumb/BreadcrumbSeparator.vue 413 B
- code/breadcrumb/index.ts 472 B runs code
- code/button-group/ButtonGroup.vue 562 B
- code/button-group/ButtonGroupSeparator.vue 715 B
- code/button-group/ButtonGroupText.vue 852 B
- code/button-group/index.ts 1.1 KB runs code
- code/button/Button.vue 662 B
- code/button/index.ts 1.6 KB runs code
- code/calendar/Calendar.vue 2.0 KB
- code/calendar/CalendarCell.vue 717 B
- code/calendar/CalendarCellTrigger.vue 1.5 KB
- code/calendar/CalendarGrid.vue 626 B
- code/calendar/CalendarGridBody.vue 281 B
- code/calendar/CalendarGridHead.vue 281 B
- code/calendar/CalendarGridRow.vue 626 B
- code/calendar/CalendarHeadCell.vue 664 B
- code/calendar/CalendarHeader.vue 677 B
- code/calendar/CalendarHeading.vue 791 B
- code/calendar/CalendarNextButton.vue 1.2 KB
- code/calendar/CalendarPrevButton.vue 1.2 KB
- code/calendar/index.ts 814 B runs code
- code/card/Card.vue 421 B
- code/card/CardAction.vue 358 B
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.
- 10d ago First seen · 180 lines · 33 tokens per session scan A d1094c11b94c
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.
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.
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…
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.
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.
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.
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.