.github/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/portfolio-v3 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!importantdocumentation
Creates or updates docs/spec.md — the project's functional requirements. Load when defining new features, when requirements have changed, or when docs/spec.md does not exist. Covers what to write, what to omit, and how to express requirements in a way that is verifiable and agent-friendly.
development
Bootstraps project documentation for an existing repository by reading the codebase, README, tests, and package metadata, then creates or updates docs/overview.md, docs/spec.md, and ADRs when significant architectural decisions are discovered. Use when asked to document a repo, extract project purpose, write overview/spec 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.