/astro-styling
Use when styling Astro components — scoped CSS, CSS Modules, Tailwind CSS, UnoCSS, Sass, the class:list directive, or global styles.
$ npx -y skills add fusengine/agents --skill astro-styling --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/astro-styling
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when styling Astro components — scoped CSS, CSS Modules, Tailwind CSS, UnoCSS, Sass, the class:list directive, or global styles.
SKILL.md
astro-styling.SKILL.mdname: astro-styling
description: Use when styling Astro components — scoped CSS, CSS Modules, Tailwind CSS, UnoCSS, Sass, the class:list directive, or global styles.
versions:
astro: "7"
user-invocable: true
references: references/scoped-css.md, references/css-modules.md, references/global-styles.md, references/tailwind.md, references/unocss.md, references/sass.md, references/css-variables.md, references/templates/scoped-component.md, references/templates/tailwind-setup.md, references/templates/unocss-setup.md
related-skills: astro-7, astro-integrations, solid-astro
<objective> Covers styling options for `.astro` components: default component-scoped `<style>`, `<style is:global>` for base styles/resets (reserved for layouts), CSS Modules (`.module.css`) for framework components (React, Vue), Tailwind CSS, UnoCSS, and Sass/SCSS via Vite preprocessors. Includes the `class:list` directive for conditional class application and CSS custom properties for design tokens/themes.
This skill addresses `.astro`-file styling specifically (scoping semantics unique to Astro components), not the UI framework setup itself (astro-integrations) or SOLID file-organization rules for style files (solid-astro). </objective>
Astro Styling
Agent Workflow (MANDATORY)
Before ANY implementation, use `TeamCreate` to spawn 3 agents:
1. **fuse-ai-pilot:explore-codebase** - Analyze existing styles, integrations, and patterns 2. **fuse-ai-pilot:research-expert** - Verify latest Astro/Tailwind/UnoCSS docs via Context7/Exa 3. **mcp__context7__query-docs** - Check integration compatibility with Astro 7
After implementation, run **fuse-ai-pilot:sniper** for validation.
---
Overview
When to Use
- Styling `.astro` components with component-scoped CSS
- Setting up Tailwind CSS or UnoCSS in an Astro project
- Using CSS Modules for framework-agnostic scoping
- Applying global base styles (reset, fonts, variables)
- Using `class:list` for conditional class application
- Adding Sass/SCSS via Vite preprocessors
Styling Options
| Method | Scope | When to Use | |--------|-------|-------------| | `<style>` in `.astro` | Component | Default — scoped to component | | `<style is:global>` | Global | Base styles, resets | | CSS Modules `.module.css` | Component | Framework components (React, Vue) | | Tailwind CSS | Utility | Rapid UI development | | UnoCSS | Utility | Lightweight, configurable atomic CSS | | Sass/SCSS | Component/Global | Advanced features, variables, mixins |
---
Reference Guide
Concepts
| Topic | Reference | When to Consult | |-------|-----------|-----------------| | Scoped CSS | [scoped-css.md](references/scoped-css.md) | Component styling | | CSS Modules | [css-modules.md](references/css-modules.md) | Framework components | | Global styles | [global-styles.md](references/global-styles.md) | Resets, base styles | | Tailwind | [tailwind.md](references/tailwind.md) | Utility-first CSS | | UnoCSS | [unocss.md](references/unocss.md) | Atomic CSS engine | | Sass/SCSS | [sass.md](references/sass.md) | Preprocessor features | | CSS Variables | [css-variables.md](references/css-variables.md) | Design tokens, themes |
Templates
| Template | When to Use | |----------|-------------| | [scoped-component.md](references/templates/scoped-component.md) | Component with scoped + conditional classes | | [tailwind-setup.md](references/templates/tailwind-setup.md) | Full Tailwind CSS project setup | | [unocss-setup.md](references/templates/unocss-setup.md) | Full UnoCSS project setup |
---
Best Practices
1. **Prefer scoped styles** — Use `<style>` in `.astro` files by default 2. **Global styles in layouts** — Apply resets and base styles in root layout 3. **CSS variables for themes** — Define design tokens as custom properties 4. **Avoid `is:global` in components** — Reserve for layouts and global files 5. **class:list over ternaries** — More readable conditional class logic
---
Forbidden
- Writing inline styles for layout/theme — use CSS classes instead
- Using `is:global` inside non-layout components
- Importing CSS in multiple components without CSS Modules
- Mixing Tailwind and custom class naming without a clear convention
Read more
name: astro-styling description: Use when styling Astro components — scoped CSS, CSS Modules, Tailwind CSS, UnoCSS, Sass, the class:list directive, or global styles. versions: astro: "7" user-invocable: true references: references/scoped-css.md, references/css-modules.md, references/global-styles.md, references/tailwind.md, references/unocss.md, references/sass.md, references/css-variables.md, references/templates/scoped-component.md, references/templates/tailwind-setup.md, references/templates/unocss-setup.md related-skills: astro-7, astro-integrations, solid-astro
<objective> Covers styling options for `.astro` components: default component-scoped `<style>`, `<style is:global>` for base styles/resets (reserved for layouts), CSS Modules (`.module.css`) for framework components (React, Vue), Tailwind CSS, UnoCSS, and Sass/SCSS via Vite preprocessors. Includes the `class:list` directive for conditional class application and CSS custom properties for design tokens/themes.
This skill addresses `.astro`-file styling specifically (scoping semantics unique to Astro components), not the UI framework setup itself (astro-integrations) or SOLID file-organization rules for style files (solid-astro). </objective>
Astro Styling
Agent Workflow (MANDATORY)
Before ANY implementation, use `TeamCreate` to spawn 3 agents:
1. **fuse-ai-pilot:explore-codebase** - Analyze existing styles, integrations, and patterns 2. **fuse-ai-pilot:research-expert** - Verify latest Astro/Tailwind/UnoCSS docs via Context7/Exa 3. **mcp__context7__query-docs** - Check integration compatibility with Astro 7
After implementation, run **fuse-ai-pilot:sniper** for validation.
---
Overview
When to Use
- Styling `.astro` components with component-scoped CSS
- Setting up Tailwind CSS or UnoCSS in an Astro project
- Using CSS Modules for framework-agnostic scoping
- Applying global base styles (reset, fonts, variables)
- Using `class:list` for conditional class application
- Adding Sass/SCSS via Vite preprocessors
Styling Options
| Method | Scope | When to Use | |--------|-------|-------------| | `<style>` in `.astro` | Component | Default — scoped to component | | `<style is:global>` | Global | Base styles, resets | | CSS Modules `.module.css` | Component | Framework components (React, Vue) | | Tailwind CSS | Utility | Rapid UI development | | UnoCSS | Utility | Lightweight, configurable atomic CSS | | Sass/SCSS | Component/Global | Advanced features, variables, mixins |
---
Reference Guide
Concepts
| Topic | Reference | When to Consult | |-------|-----------|-----------------| | Scoped CSS | [scoped-css.md](references/scoped-css.md) | Component styling | | CSS Modules | [css-modules.md](references/css-modules.md) | Framework components | | Global styles | [global-styles.md](references/global-styles.md) | Resets, base styles | | Tailwind | [tailwind.md](references/tailwind.md) | Utility-first CSS | | UnoCSS | [unocss.md](references/unocss.md) | Atomic CSS engine | | Sass/SCSS | [sass.md](references/sass.md) | Preprocessor features | | CSS Variables | [css-variables.md](references/css-variables.md) | Design tokens, themes |
Templates
| Template | When to Use | |----------|-------------| | [scoped-component.md](references/templates/scoped-component.md) | Component with scoped + conditional classes | | [tailwind-setup.md](references/templates/tailwind-setup.md) | Full Tailwind CSS project setup | | [unocss-setup.md](references/templates/unocss-setup.md) | Full UnoCSS project setup |
---
Best Practices
1. **Prefer scoped styles** — Use `<style>` in `.astro` files by default 2. **Global styles in layouts** — Apply resets and base styles in root layout 3. **CSS variables for themes** — Define design tokens as custom properties 4. **Avoid `is:global` in components** — Reserve for layouts and global files 5. **class:list over ternaries** — More readable conditional class logic
---
Forbidden
- Writing inline styles for layout/theme — use CSS classes instead
- Using `is:global` inside non-layout components
- Importing CSS in multiple components without CSS Modules
- Mixing Tailwind and custom class naming without a clear convention
A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Other skills on fusengine-agents.
- /agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Open skill - /apex-methodology
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Open skill - /brainstorming
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
Open skill - /challenge
Use before a root-cause, done/verified claim, irreversible action, or 2nd-time fix reaches the owner (APEX or plain conversation); also fires at every eLicit/Verify gate. Not for code correctness (use sniper).
Open skill - /code-quality
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional verification (run verification FIRST, then code-quality).
Open skill - /elicitation
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).
Open skill

