CATHERINE: Skill for Claude Code

.claude/skills/senior-react-engineer/SKILL.md

senior-react-engineer is a skill for Claude Code from Jm-Paunlagui/CATHERINE. It costs 151 tokens per session (1,856 once invoked), scanned A, original, Apache-2.0.

A set of working rules for React 19 interfaces using Tailwind CSS and a shared design system. It defines how API calls, state, hooks, views, components, and design tokens are separated.

In plain words
What is it for?
Use it when building, reviewing, or refactoring React components, hooks, feature folders, forms, and pages that use the shared design system.
Why use it?
It prevents views from containing data access, reduces inconsistent interface code, and discourages replacing shared components with ad hoc HTML or styling.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is Jm-Paunlagui/CATHERINE's own configuration. It tells Claude Code how to work on CATHERINE 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 CATHERINE configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Jm-Paunlagui/CATHERINE. 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/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-react-engineer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINE

Made for: Claude Code.

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 senior-react-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-react-engineer.svg)](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-react-engineer)
Your own site
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-react-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-react-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 151 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,856 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.00151 $0.01856
Opus 5 $0.00076 $0.00928
Sonnet 5 $0.00030 $0.00371
Haiku 4.5 $0.00015 $0.00186

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

Security

Grade A, and why

senior-react-engineer 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 2d 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.

.claude/skills/senior-react-engineer/SKILL.md · 78 lines

How it starts

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

Senior React Engineer (Tailwind CSS v4 + Aumovio Design System v3.1)

You are a Senior React Engineer for the Aumovio platform. React 19 + Tailwind CSS v4. Design System v3.1. You never compromise architectural integrity or design-system consistency for brevity.

Core responsibilities

  • Map every UI need to the correct Aumovio component. Never write a raw <input> when Input, Select, Toggle, FloatingLabel, or FileInput exists. Never write raw HTML when a system component fulfils the need.
  • Enforce the three-layer feature architecture without exception:
    • <feature>.api.js — all HTTP calls via httpClient (never direct Axios)
    • <feature>.hook.js — all state, useRequest, derived data, callbacks
    • <Feature>.view.jsx — pure rendering, no imports of .api.js files
  • When a view file exceeds ~400 lines, extract tab-level and modal-level components into a sibling components/ folder. Each extracted component receives all data via props — it never imports the feature hook or API file. The view file remains the sole consumer of the hook.
  • Use only @theme-defined design tokens. Never hard-code hex values, pixel values outside the token set, or arbitrary Tailwind classes.
  • Pick animation constants from the documented set (ANIMATE_FADE_IN_UP, HOVER_LIFT, TRANSITION_SPRING, ANIMATE_SHAKE, staggerDelay, etc.) using the Animation Decision Guide. Never hard-code transition: all 300ms.
  • Always pair light utilities with dark: variants. Use documented surface colours (dark:bg-[#1a1030], dark:text-white/85).
  • Lazy-load views only. Memoise only where measurable. Use useRequest for all server data fetching with appropriate staleTime.
  • Naming: PascalCase for views, camelCase for hooks/APIs, SCREAMING_SNAKE for CSS animation constants.
  • Wire chart components (BarChart, DonutChart, LineChart, AreaChart) correctly: series, categories, axis labels, and tooltip formatters must match the underlying data contract from the hook.

Read the full file on GitHub · 78 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. 2d ago First seen · 78 lines · 151 tokens per session scan A 3b6c5627c377

Subscribe to this mod's changes

senior-react-engineer is a skill published in the GitHub repository Jm-Paunlagui/CATHERINE (2 stars, last pushed 3d ago), licensed Apache-2.0. It adds 151 tokens to every session and 1,856 once invoked, about $0.0008 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-09-05.

Related

Other skills, from other repositories

chakra-ui-builder

Build responsive, accessible UI components and layouts using Chakra UI v3, install or configure Chakra UI in new and existing projects, and design scalable themes using tokens, semantic tokens, recipes, and slot recipes. Use this skill whenever a user asks to build, create, or generate any UI component, page, form…

chakra-ui/chakra-ui · 214 tokens

ui-checkstyle

Run the exact ESLint + Prettier + organize-imports sequence that CI's UI Checkstyle workflow runs — on just the files the PR changed — and fail the task if any file ends up with a diff. Invoke after authoring or modifying any .ts, .tsx, .js, .jsx, or .json file under openmetadata-ui/src/main/resources/ui/src/…

open-metadata/OpenMetadata · 122 tokens

frontend-ui-dark-ts

Build dark-themed React applications using Tailwind CSS with custom theming, glassmorphism effects, and Framer Motion animations. Use when creating dashboards, admin panels, or data-rich interfaces with a refined dark aesthetic.

microsoft/skills · 48 tokens

21st-ui

Find, install, and generate UI with 21st.dev. Use when the user asks for a UI component (pricing table, hero, navbar, dashboard, form, etc.), wants design inspiration, needs a brand logo as an SVG component, or wants to generate new UI from a prompt.

21st-dev/magic-mcp · 63 tokens

moai-design-tools

Design tool integration specialist covering Figma MCP, Pencil renderer, and Pencil-to-code export. Use when fetching design context from Figma, rendering Pencil designs, or exporting to React/Tailwind code.

modu-ai/moai-adk · 45 tokens

byted-util-vite-react-tailwind

A setup guide for building frontend projects with Vite, React, Tailwind CSS, TypeScript, and Lucide icons.

bytedance/agentkit-samples · 64 tokens