Token导航 LogoToken导航TokenDH.com
前端设计操作浏览器github未标认证来源可访问许可证需确认审计通过

web-styling-scss-modules网页样式 SCSS 模块

Agent Skill

web-styling-scss-modules 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

5

下载量

78
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:web-styling-scss-modules(网页样式 SCSS 模块)
来源仓库:https://github.com/agents-inc/skills
仓库路径:skills/web-styling-scss-modules
安装命令:
npx skills add https://github.com/agents-inc/skills --skill web-styling-scss-modules
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/agents-inc/skills --skill web-styling-scss-modules

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合围绕仓库状态、代码变更或协作事项进行整理和分析。
  • 可在 Codex、Claude、Cursor、Gemini CLI 中调用以支持开发流程管理。
  • 安装命令:npx skills add https://github.com/agents-inc/skills --skill web-styling-scss-modules。
  • 建议确认权限范围和维护状态,检查是否会触发联网或文件操作。

SKILL.md

Styling & Design System

Quick Guide: Two-tier token system (Core primitives -> Semantic tokens). Foreground/background color pairs. Components use semantic tokens only. SCSS Modules + CSS Cascade Layers. HSL format. Dark mode via .dark class with mixin. Data-attributes for state. Self-contained (no external dependencies).

<critical_requirements>

CRITICAL: Before Using This Skill

All code must follow project conventions in CLAUDE.md (kebab-case, named exports, import ordering, import type, named constants)

(You MUST wrap ALL UI package component styles in @layer components {} for proper cascade precedence)

(You MUST use semantic tokens ONLY in components - NEVER use core tokens directly)

(You MUST use HSL format for colors with CSS color functions - NO Sass color functions like darken/lighten)

(You MUST use data-attributes for state styling - NOT className toggling)

(You MUST use @use for imports - @import is deprecated and will be removed in Dart Sass 3.0.0)

</critical_requirements>


Auto-detection: UI components, styling patterns, design tokens, SCSS modules, CSS Cascade Layers, dark mode theming

When to use:

  • Implementing design tokens and theming
  • Building component styles with SCSS Modules
  • Ensuring visual consistency across applications
  • Working with colors, spacing, typography
  • Implementing dark mode with class-based theming
  • Setting up CSS Cascade Layers for predictable style precedence

Key patterns covered:

  • Two-tier token system (Core -> Semantic)
  • SCSS Module patterns with CSS Cascade Layers
  • Color system (HSL format, semantic naming, foreground/background pairs)
  • Spacing and typography systems
  • Dark mode implementation (.dark class with mixin pattern)
  • Component structure and organization

When NOT to use:

  • One-off prototypes without design system needs (use inline styles or basic CSS)
  • External component libraries with their own theming (Material-UI, Chakra)
  • Projects requiring comprehensive utility classes (use Tailwind CSS instead)

Detailed Resources:


Philosophy

The design system follows a self-contained, two-tier token architecture where core primitives (raw HSL values, base sizes) map to semantic tokens (purpose-driven names). Components consume only semantic tokens, enabling theme changes without component modifications.

Core Principles:

  • Self-contained: No external dependencies (no Open Props, no Tailwind for tokens)
  • Two-tier system: Core tokens provide raw values, semantic tokens provide meaning
  • HSL-first: Use modern CSS color functions, not Sass color manipulation
  • Layer-based: CSS Cascade Layers ensure predictable style precedence across monorepo
  • Theme-agnostic components: Components use semantic tokens and adapt automatically to light/dark mode

Core Patterns

Pattern 1: Two-Tier Token System

The design system uses a two-tier token architecture: Tier 1 (Core tokens) provides raw values, Tier 2 (Semantic tokens) references core tokens with purpose-driven names.

Token Architecture

Location: packages/ui/src/styles/design-tokens.scss

Tier 1: Core tokens - Raw HSL values, base sizes, primitives

--color-white: 0 0% 100%;
--color-gray-900: 222 47% 11%;
--color-red-500: 0 84% 60%;
--space-unit: 0.2rem;

Tier 2: Semantic tokens - Reference core tokens with purpose-driven names

--color-background-base: var(--color-white);
--color-text-default: var(--color-gray-500);
--color-primary: var(--color-gray-900);
--color-primary-foreground: var(--color-white);
--color-destructive: var(--color-red-500);

Why this matters: Semantic tokens make purpose clear (what the token is for), theme changes only update token values (not component code), components remain theme-agnostic.

For complete implementation examples, see examples/core.md.


Pattern 2: HSL Color Format with CSS Color Functions

Store HSL values without the hsl() wrapper in tokens, apply hsl() wrapper when using tokens, and use modern CSS color functions for transparency and color mixing.

Color Format Rules

  • Store HSL values without hsl() wrapper: --color-gray-900: 222 47% 11%;
  • Use hsl() wrapper when applying: background-color: hsl(var(--color-primary))
  • Use CSS color functions for derived colors:

- Transparency: hsl(var(--color-primary) / 0.5) (append alpha to HSL components) - Color mixing: color-mix(in srgb, hsl(var(--color-primary)), white 10%) - Channel manipulation: hsl(from hsl(var(--color-primary)) h s calc(l * 0.8)) (wrap origin in hsl() first)

  • NEVER use Sass color functions: No darken(), lighten(), transparentize()
  • Always use semantic color tokens (not raw HSL in components)

Why HSL: HSL format eliminates Sass dependencies, CSS color functions work natively in browsers, semantic naming clarifies purpose (not just value), theme changes update token values without touching components.

For complete implementation examples, see examples/core.md.


Pattern 3: CSS Cascade Layers for Predictable Precedence

Use CSS Cascade Layers to control style precedence across the monorepo, ensuring UI package components have lower priority than app-specific overrides.

Layer Hierarchy (lowest -> highest priority)

  1. @layer reset - Browser resets and normalizations
  2. @layer components - Design system component styles (UI package)
  3. Unlayered styles - App-specific overrides (highest priority)

Key Rules

  • UI package components: Always wrap in @layer components {}
  • App-specific styles: Never wrap in layers (unlayered = highest priority)
  • Layer declaration: Import layers.scss first to declare layer order

Why layers: Wrapping in @layer components {} ensures app styles can override without specificity wars, loading order becomes irrelevant, predictable precedence across monorepo.

For complete implementation examples, see examples/core.md.


Pattern 4: Dark Mode with .dark Class and Mixin

Implement dark mode by adding .dark class to root element, which overrides semantic tokens. Use mixin pattern for organization.

Key Principles

  • Components remain theme-agnostic (no theme logic in component code)
  • Semantic tokens provide indirection between theme and components
  • Only override Tier 2 semantic tokens in .dark class, never Tier 1 core tokens
  • Theme switching is instant (just CSS variable changes)

For complete implementation examples, see examples/theming.md.


Additional Patterns

The following patterns are documented with full examples in the examples/ folder:


<red_flags>

RED FLAGS

For complete anti-patterns and red flags, see reference.md.

High Priority Issues:

  • Using core tokens directly in components (use semantic tokens)
  • Component styles not wrapped in @layer components {}
  • Using Sass color functions (darken(), lighten())
  • Hardcoded color/spacing values
  • Theme logic in components
  • Using @import instead of @use (deprecated in Dart Sass 1.80.0, removed in 3.0.0)
  • Using / for division instead of math.div() (deprecated)

</red_flags>


<critical_reminders>

CRITICAL REMINDERS

All code must follow project conventions in CLAUDE.md

(You MUST wrap ALL UI package component styles in @layer components {} for proper cascade precedence)

(You MUST use semantic tokens ONLY in components - NEVER use core tokens directly)

(You MUST use HSL format for colors with CSS color functions - NO Sass color functions like darken/lighten)

(You MUST use data-attributes for state styling - NOT className toggling)

(You MUST use @use for imports - @import is deprecated and will be removed in Dart Sass 3.0.0)

Failure to follow these rules will break theming, create cascade precedence issues, and violate design system conventions.

</critical_reminders>

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

35.29%
按下载量换算28

Claude

30.01%
按下载量换算23

Cursor

20.37%
按下载量换算16

Gemini CLI

10.07%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills