ワンクリックで
create-tailwind-utility
// Scaffold a new Tailwind utility (CSS-only utility class) in the Skeleton core package, following @utility conventions used by buttons, badges, cards, etc.
// Scaffold a new Tailwind utility (CSS-only utility class) in the Skeleton core package, following @utility conventions used by buttons, badges, cards, etc.
| name | create-tailwind-utility |
| description | Scaffold a new Tailwind utility (CSS-only utility class) in the Skeleton core package, following @utility conventions used by buttons, badges, cards, etc. |
Scaffold a new CSS-only utility class in the Skeleton core package at packages/skeleton/src/utilities/. Tailwind v4 @utility syntax.
Recommend placement based on feature type, explain the reasoning, accept overrides.
utilities/<plural-name>.css (e.g. buttons.css). Document under tailwind-components/<plural-name>.mdx modeled after buttons.mdx./* Components: <Name> */ or /* Utilities: <Name> */@utility <name> { ... }<name>-<modifier> (e.g. btn-icon, badge-dot)--element-size-{xs,sm,base,lg,xl, ...} design tokens; expose them via local CSS vars (--btn-size) so size variants override cleanly@variant not-disabled { @variant hover { ... } }Ask one at a time, confirm each, write nothing until all are answered and the user confirms.
btn, badge) and the CSS filename (plural, e.g. buttons.css). Recommend both, accept overrides.<button>, <a>, <span>, <input>).@import to packages/skeleton/src/index.css. Order matches the existing alphabetical-ish grouping./create-doc to scaffold the documentation page. Pass along the utility name and CSS filename so the doc skill can derive the doc slug per its naming conventions.List: file path, utility or component class names defined, the index.css import line added, and the doc page that /create-doc will scaffold next.
Create framework components across all supported packages using the repository's anatomy/modules conventions.
Create or update Skeleton React and Svelte playground component pages for a given component, including route generation steps.
Scaffold a new documentation page for the Skeleton documentation site (sites/skeleton.dev), including frontmatter, optional boilerplate, examples, and API reference.
Scaffold an example file (Astro or framework-specific) for a Skeleton documentation page, including the MDX import wiring and Preview/Framework blocks.