/tailwindcss-responsive
Use when applying responsive variants at different screen widths, defining a custom breakpoint, or building container-query-based components.
$ npx -y skills add fusengine/agents --skill tailwindcss-responsive --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
/tailwindcss-responsive
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use when applying responsive variants at different screen widths, defining a custom breakpoint, or building container-query-based components.
SKILL.md
tailwindcss-responsive.SKILL.mdname: tailwindcss-responsive description: "Use when applying responsive variants at different screen widths, defining a custom breakpoint, or building container-query-based components." user-invocable: false
<objective> Documents responsive design utilities in Tailwind CSS v4: the default breakpoint scale (`sm`/`md`/`lg`/`xl`/`2xl`), defining custom breakpoints via `@theme`, container queries (`@container`, `@md`, `@lg` container-relative variants), and the mobile-first authoring pattern (base styles first, larger-breakpoint overrides layered on top). </objective>
Responsive Design
Default Breakpoints
| Variant | Size | CSS | |---------|--------|-----| | `sm:` | 40rem (640px) | `@media (width >= 40rem)` | | `md:` | 48rem (768px) | `@media (width >= 48rem)` | | `lg:` | 64rem (1024px) | `@media (width >= 64rem)` | | `xl:` | 80rem (1280px) | `@media (width >= 80rem)` | | `2xl:` | 96rem (1536px) | `@media (width >= 96rem)` |
Custom breakpoint
@theme {
--breakpoint-3xl: 120rem;
}
/* Usage: 3xl:grid-cols-6 */Container Queries v4
<div class="@container">
<div class="@md:grid-cols-2 @lg:grid-cols-3">
<!-- Responsive to container -->
</div>
</div>Mobile-first
<div class="text-sm md:text-base lg:text-lg"> <!-- Small screens first --> </div>
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

