andireuter/skills-webapp Skills
(19)Browse AI agent skills from andireuter/skills-webapp for Claude Code, OpenClaw, Cursor, Windsurf, and more. Install them with a single command to extend what your agents can do.
atomic-atom
andireuter/skills-webapp
Create or refactor a React ATOM component (smallest reusable UI primitive). Use for buttons, inputs, icons, text, badges, loaders, etc. Keep atoms presentational and composable.
atomic-audit
andireuter/skills-webapp
Audit a React component (or folder) for Atomic Design correctness and refactor recommendations. Use when components are too large, props are exploding, or responsibilities are unclear.
atomic-molecule
andireuter/skills-webapp
Create or refactor a React MOLECULE (a small composition of atoms). Use for input groups, labeled fields, search bars, card headers, etc. Keep molecules reusable and lightly stateful only for UI concerns.
atomic-organism
andireuter/skills-webapp
Create or refactor a React ORGANISM (a meaningful UI section composed of molecules/atoms). Use for nav bars, product grids, comment lists, forms, dialogs, etc. Organisms may accept data and callbacks but should remain reusable across pages.
atomic-page
andireuter/skills-webapp
Create a React PAGE that binds templates/organisms to real app data and routing. Use for route-level components. Pages handle data loading, orchestration, and side effects.
atomic-template
andireuter/skills-webapp
Create a React TEMPLATE that defines layout and composition without binding to real data sources. Use for page shells, dashboards, list-detail layouts, etc. Templates wire organisms together and expose slots/regions.
styled-jsx-audit
andireuter/skills-webapp
Audit styled-jsx usage for scoping leaks, overly global selectors, unsafe interpolations, and maintainability issues; propose targeted refactors.
styled-jsx-component
andireuter/skills-webapp
Create or refactor a React functional component styled with styled-jsx (<style jsx>). Use for scoped component styles, including variants, theming via CSS variables, and accessible UI patterns.
styled-jsx-csp-nonce
andireuter/skills-webapp
Configure styled-jsx to work with strict CSP using nonces (Next.js/custom Document patterns). Use when CSP blocks inline styles.
styled-jsx-dynamic
andireuter/skills-webapp
Implement dynamic styling in styled-jsx using best practices (CSS variables, className toggling, safe interpolations). Use for hover/active state, variant switches, theming, and runtime sizes/colors.
styled-jsx-global
andireuter/skills-webapp
Add or refactor global styles using styled-jsx (<style jsx global>). Use for resets, typography defaults, global tokens, and safe one-off global selectors.
styled-jsx-migrate
andireuter/skills-webapp
Migrate a component from plain CSS/CSS Modules/other CSS-in-JS to styled-jsx while preserving behavior, accessibility, and SSR compatibility.
styled-jsx-resolve
andireuter/skills-webapp
Use styled-jsx/css resolve to style nested child components from a parent while preserving encapsulation. Use when you need to target a child component’s className from a parent.
vite-react-ts-config
andireuter/skills-webapp
Create or update vite.config.ts for a Vite React-TS project, following best practices (defineConfig, aliases, env usage, server/build defaults).
vite-react-ts-deploy
andireuter/skills-webapp
Explain and implement the production build + static deployment workflow for a Vite React-TS app (build output, base path, preview, common hosts).
vite-react-ts-env
andireuter/skills-webapp
Add environment variables in a Vite React-TS project correctly (VITE_ prefix, typing, .env files, safe usage in React components).
vite-react-ts-init
andireuter/skills-webapp
Scaffold a new Vite project using pnpm + React + TypeScript (react-ts), then apply recommended baseline setup (scripts, structure, editor config, git init).
vite-react-ts-quality
andireuter/skills-webapp
Add a best-practice quality baseline to a Vite React-TS project (TypeScript checking, ESLint, formatting, scripts). Keep it minimal and conventional.
vite-react-ts-testing
andireuter/skills-webapp
Add a testing setup to a Vite React-TS project (Vitest + Testing Library) following best practices, with minimal configuration and fast feedback.