.cursor/skills/frontend-design/SKILL.md
Design system setup and UI implementation guidance for this project. Load when building new UI components, setting up design tokens, implementing animations or visual effects, or making aesthetic and layout decisions. Covers Tailwind CSS v4 @theme token structure, typography, color, motion, and visual design direction.
npx skillsauth add poko8nada/corp_site-type01 frontend-designInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Before coding, commit to a clear aesthetic direction:
Bold maximalism and refined minimalism both work. The key is intentionality, not intensity.
/* globals.css */
@import "tailwindcss";
@theme inline {
/* Colors */
--color-primary-500: #0ea5e9;
--color-success: #10b981;
--color-error: #ef4444;
/* Typography */
--font-display: "YourDisplayFont", sans-serif;
--font-body: "YourBodyFont", sans-serif;
}
--color-success, not --color-green)Create atmosphere with: gradient meshes, noise textures, geometric patterns, layered transparencies, dramatic shadows, decorative borders, grain overlays. Match the technique to the aesthetic direction — don't mix unrelated effects.
@theme!importantdevelopment
Bootstraps project documentation for an existing repository by reading the codebase, README, tests, and package metadata, then creates or updates docs/overview.md, docs/behavior.md, and ADRs when significant architectural decisions are discovered. Use when asked to document a repo, extract project purpose, write overview/behavior docs, review an existing codebase, or capture architecture decisions from source.
development
Creates or updates docs/overview.md — the project's purpose and background. Load when starting a new project, when the project's goals or context have changed, or when docs/overview.md does not exist. Covers what to write, what to omit, and how to keep the document agent-friendly.
documentation
Implements a new feature using docs-first delivery, boundary-driven structure, and skeleton-first execution. Load when adding a route, feature, or new user-visible behavior.
tools
Manages GitHub Issues using gh CLI — creation, decomposition, update, and close. Load when asked to create a new issue, break down a large task into issues, update issue status or labels, or close an issue after a PR is merged. Human decides whether to create an issue. Agent handles all gh CLI operations.