mcpbeat Sign in

Modern Site Engineering Skill for Codex

Implement beautiful modern websites and web apps with an opinionated premium frontend stack. Use for Next.js, React, Tailwind, Motion, GSAP, Lenis, Three.js/React Three Fiber, shadcn/ui customization, responsive layouts, landing pages, portfolios, cinematic sites, luxury brand sites, Squarespace-like sites, and any frontend build where Codex should produce polished modern UI by default.

1k tokens
context cost
the whole folder, loaded on every use
3
files
instructions only
0
copies elsewhere
how many repositories repackaged it
115
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/TheGoat395/Codex-Skills --skill modern-site-engineering

What comes with it

2 262 bytes besides the instruction
agents/openai.yaml
references/stack-recipes.md

The instruction itself

7 sections, as written by the author

Modern Site Engineering

Operating Mode

Inspect before coding. Identify structure, framework, entry files, styling system, interaction system, and build commands. If the user has not clearly said to proceed, explain planned files before major changes.

Preferred Stack

For new projects, prefer:

npx create-next-app@latest <name> --typescript --tailwind --eslint --app --src-dir
npm install motion gsap lenis lucide-react clsx tailwind-merge
npm install three @react-three/fiber @react-three/drei
npm install -D @playwright/test

Use existing project tools when working inside an existing repo. Do not add major dependencies without explaining why.

Dependency Roles

  • Next.js: routing, metadata, optimized images/fonts, production build.
  • TypeScript: stable component contracts.
  • Tailwind: fast design-system implementation with custom tokens.
  • CSS variables: brand colors, spacing, shadows, easing, radii, typography.
  • Motion: React-native UI motion, enter/exit, hover/tap, layout transitions.
  • GSAP: timeline-driven cinematic sequences, ScrollTrigger, pinned scenes, split text, advanced scroll choreography.
  • Lenis: smooth scrolling when the design calls for cinematic scroll.
  • Three.js/R3F/Drei: immersive product, material, shader, or spatial scenes.
  • lucide-react: icons for controls and clear commands.
  • shadcn/ui: accessible component source to customize, not a default visual identity.
  • Playwright: visual and interaction verification.

Build Workflow

  • Inspect project and commands.
  • Define visual system: type, color, spacing, media, motion.
  • Build version 1 with real content structure.
  • Run the app locally when possible.
  • Inspect in browser/screenshots across desktop and mobile.
  • Do a second polish pass for spacing, typography, hierarchy, hover states, motion, and responsiveness.
  • Run available lint/build/test commands.
  • Report files changed, commands run, and any errors honestly.

Component Defaults

  • Prefer section components with clear names: Hero, FeaturedWork, Experience, Gallery, Offer, Journal, Contact.
  • Keep layout primitives minimal and reusable.
  • Use responsive constraints: clamp(), minmax(), aspect-ratio, stable grid tracks.
  • Avoid text overflow by designing for the longest realistic labels.
  • Make buttons feel designed: icon placement, focus state, hover state, disabled state.
  • Use semantic HTML and accessible labels.
  • Respect prefers-reduced-motion.

Motion Defaults

Use CSS transitions for tiny state changes. Use Motion for component/state animation. Use GSAP only when timeline control or scroll choreography is actually needed. Use Three/R3F only when visual concept benefits from spatial or material interaction.

Read references/stack-recipes.md when starting a new project or adding dependencies.

Other skills for the same job

different authors, same section of the catalogue
Use Dom
by openai
vendor ×3

Use Expo DOM components to run web code in a webview on native and as-is on web. Migrate web code to native incrementally.

3k tokens
Frontend Dev Guidelines
by mrgoonie
×2

Frontend development guidelines for React/TypeScript applications. Modern patterns including Suspense, lazy loading, useSuspenseQuery, file organization with features directory, MUI v7 styling, TanStack Router, performance optimization, and TypeScript best practices. Use when creating components, pages, features, fetching data, styling, routing, or working with frontend code.

33k tokens
Next Cache Components
by vercel-labs
vendor ×2

Next.js 16 Cache Components - PPR, use cache directive, cacheLife, cacheTag, updateTag

2k tokens
Shopify Development
by ComeOnOliver
×2

| Build Shopify apps, extensions, themes using GraphQL Admin API, Shopify CLI, Polaris UI, and Liquid. "shopify theme", "liquid template", "polaris", "shopify graphql", "shopify webhook", "shopify billing", "app subscription", "metafields", "shopify functions"

24k tokens scripts
Huggingface Gradio
by huggingface
vendor ×1

Build Gradio web UIs and demos in Python. Use when creating or editing Gradio apps, components, event listeners, layouts, or chatbots.

10k tokens
Figma Generate Diagram
by openai
vendor ×1

MANDATORY prerequisite — load this skill BEFORE every `generate_diagram` tool call. NEVER call `generate_diagram` directly without loading this skill first. Trigger whenever the user asks to create, generate, draw, render, sketch, or build a diagram — flowchart, architecture diagram, sequence diagram, ERD or entity-relationship diagram, state diagram or state machine, gantt chart, or timeline. Also trigger when the user mentions Mermaid syntax or wants a system architecture, decision tree, dependency graph, API call flow, auth handshake, schema, or pipeline visualized in FigJam. Routes to type-specific guidance, sets universal Mermaid constraints, and tells you when to use a different diagram type or skip the tool entirely (mindmaps, pie charts, class diagrams, etc.).

28k tokens
Web Perf
by cloudflare
vendor ×1

Analyzes web performance using Chrome DevTools MCP. Measures Core Web Vitals (LCP, INP, CLS) and supplementary metrics (FCP, TBT, Speed Index), identifies render-blocking resources, network dependency chains, layout shifts, caching issues, and accessibility gaps. Use when asked to audit, profile, debug, or optimize page load performance, Lighthouse scores, or site speed. Biases towards retrieval from current documentation over pre-trained knowledge.

2k tokens
Algorithmic Art
by lingxling
×1

Algorithmic philosophies are computational aesthetic movements that are then expressed through code. Output .md files (philosophy), .html files (interactive viewer), and .js files (generative algorithms).

15k tokens scripts

How to use it

Copy the folder

Take thegoat395/modern-site-engineering from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npm, npx. Without those the skill loads but fails at the first command.