agent-creator
Use when creating expert agents. Generates agent.md with frontmatter, hooks, required sections, and skill references.
Use when creating a new named utility class, writing conditional/dark-mode variants, defining a custom variant selector, or using @apply.
$ npx -y skills add fusengine/agents --skill tailwindcss-custom-styles --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/tailwindcss-custom-stylesContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when creating a new named utility class, writing conditional/dark-mode variants, defining a custom variant selector, or using @apply.
name: tailwindcss-custom-styles description: "Use when creating a new named utility class, writing conditional/dark-mode variants, defining a custom variant selector, or using @apply." user-invocable: false
<objective> Custom CSS authoring in Tailwind CSS v4.1 via the `@utility`, `@variant`, `@custom-variant`, `@apply`, and `@layer` directives: defining a new named utility class, writing conditional styles (including dark mode) inline with `@variant`, declaring a brand-new custom variant selector with `@custom-variant`, applying utility classes inside a custom CSS rule with `@apply`, and organizing custom CSS into `@layer components`/`@layer utilities`. </objective>
@utility glass-effect {
backdrop-filter: blur(10px);
background: rgba(255, 255, 255, 0.1);
}
/* Usage: class="glass-effect hover:glass-effect" */.card {
background: white;
@variant dark { background: #1a1a2e; }
@variant hover { transform: scale(1.05); }
}@custom-variant theme-midnight (&:where([data-theme="midnight"] *)); /* Usage: theme-midnight:bg-black */
.btn-primary {
@apply bg-blue-500 text-white px-4 py-2 rounded-lg;
}@layer components {
.card { @apply bg-white shadow-md rounded-xl p-4; }
}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).