agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when setting element width/height, constraining min/max dimensions, using dynamic viewport height (h-dvh), or fixing an aspect ratio.
$ npx -y skills add fusengine/agents --skill tailwindcss-sizing --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tailwindcss-sizingContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when setting element width/height, constraining min/max dimensions, using dynamic viewport height (h-dvh), or fixing an aspect ratio.
name: tailwindcss-sizing description: "Use when setting element width/height, constraining min/max dimensions, using dynamic viewport height (h-dvh), or fixing an aspect ratio." user-invocable: false
<objective> Complete reference for Tailwind CSS v4.1 sizing utilities: width (`w-*`, `w-screen`, `w-full`, `w-auto`, `w-min`/`w-max`/`w-fit`), height (`h-*`, `h-screen`, `h-full`, and the new `h-dvh` dynamic viewport height that accounts for browser UI), min/max constraints (`min-w-*`/`max-w-*`/`min-h-*`/`max-h-*`), and aspect-ratio (`aspect-square`, `aspect-video`, arbitrary ratios).
Includes common composition patterns: full-screen containers, constrained content width, image/video wrappers, and sidebar layouts. </objective>
Comprehensive guide to sizing utilities in Tailwind CSS v4.1, including width, height, constraints, and aspect ratio controls.
Apply different widths at different breakpoints:
<div class="w-full md:w-1/2 lg:w-1/3"> Responsive width </div>
The `h-dvh` utility uses the dynamic viewport height, which accounts for browser UI elements:
<div class="h-dvh"> Full dynamic viewport height </div>
<!-- 3:2 ratio --> <div class="aspect-[3/2]"> Image container </div>
<div class="w-screen h-dvh bg-white"> Full screen content </div>
<div class="max-w-4xl mx-auto w-full px-4"> Content with max width and padding </div>
<div class="w-full h-auto"> <img src="image.jpg" alt="description" class="w-full h-auto object-cover" /> </div>
<div class="w-full aspect-video bg-black"> <video src="video.mp4" class="w-full h-full"></video> </div>
<div class="flex min-h-screen">
<aside class="w-64 h-screen overflow-auto">
Sidebar
</aside>
<main class="flex-1">
Content
</main>
</div>A plugin ecosystem that turns Claude Code into a supervised, multi-agent development environment.
Repo: fusengine/agents
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when starting ANY development task -- feature, bug fix, refactor, hotfix (triggers: implement, create, build, fix, add feature, refactor, develop).
Use when creating a feature/component or adding functionality. Fires BEFORE APEX Analyze to refine requirements via structured questioning.
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…
Use when validating code quality after modifications -- SOLID compliance, DRY duplication, linter errors, architecture violations. Do NOT use for functional…
Use when an expert agent self-reviews and self-corrects code after the Execute phase, before sniper validation (BMAD-METHOD elicitation techniques).