New to Claude Skills? Learn how to install them →

Sspartan-ng on GitHub

Spartan UI Management

Free

Efficiently manage Angular UI components with Spartan.

by spartan-ng2.8k stars on spartan-ng/spartan
2 views
Updated Aug 4, 2026
Get this skill

Free · Opens the source repo

What Spartan UI Management does

Spartan UI Management is a skill designed for developers working with the spartan/ui Angular UI library. This library employs a two-layer architecture, consisting of the Brain layer, which contains unstyled Angular primitives, and the Helm layer, which provides styled components using Tailwind CSS. This skill facilitates the management of UI components by allowing users to add, compose, debug, and style components effectively. By leveraging the Brain and Helm layers, developers can focus on building user interfaces without reinventing the wheel.

The skill integrates seamlessly with both Nx and Angular CLI workspaces, enabling users to execute commands that gather project context and generate components. Before generating any code, users can run commands to retrieve essential project information, such as installed components and configuration settings. This ensures that developers work with the most up-to-date context for their projects, reducing the likelihood of errors and enhancing productivity.

Spartan UI Management emphasizes best practices in component usage, encouraging developers to utilize existing components rather than creating custom markup. This approach not only speeds up development but also promotes consistency across applications. Additionally, the skill provides access to a comprehensive set of rules and principles that guide users in styling and composing their UI, ensuring adherence to established standards.

Overall, Spartan UI Management is ideal for Angular developers looking to streamline their UI development process. By utilizing this skill, developers can enhance their workflow, maintain consistency, and leverage the full capabilities of the spartan/ui library to create sophisticated user interfaces efficiently.

When to use it

Use this skill when working with the spartan/ui library or any Angular project that requires efficient component management and styling.

When not to use it

This skill may not be suitable for projects that do not use Angular or do not require the specific features of the spartan/ui library.

What you can build with it

Initializing a New Project

Use the skill to set up a new Angular project with spartan/ui by running the `spartan init` command.

Adding Components

Quickly add new UI components to your Angular project using the CLI commands provided by the skill.

Styling and Debugging

Efficiently style and debug UI components by following the established rules and principles outlined in the skill.

How to install Spartan UI Management

View source

1. Install with the skills CLI

npx skills add spartan-ng/spartan/spartan --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by spartan-ng

spartan/ui

spartan/ui is an Angular UI library. It uses a two-layer architecture:

  • Brain (@spartan-ng/brain) - accessible, unstyled primitives (Angular directives/components), installed from npm. This is the behavior and accessibility layer.
  • Helm (@spartan-ng/helm) - the styled layer (Tailwind + class-variance-authority). Helm code is copied into the user's project by the CLI so they own and can customize it.

You compose Helm directives/components onto host elements; Helm wires up the matching Brain primitive under the hood. Always prefer existing components over hand-written markup.

All CLI commands run through the workspace's runner. Detect it from the project:

  • Nx workspace (has nx.json): npx nx g @spartan-ng/cli:<generator> (or pnpm nx g ...).
  • Angular CLI workspace (has angular.json, no nx.json): ng g @spartan-ng/cli:<generator>.

Current project context

Before generating any code, gather the project context:

npx nx g @spartan-ng/cli:info --json     # Nx
ng g @spartan-ng/cli:info --json         # Angular CLI

This is read-only and prints JSON with:

  • workspaceType - nx | angular-cli (decides which runner to use above).
  • config.componentsPath - where Helm components are copied (e.g. libs/ui).
  • config.importAlias - the import prefix for Helm, default @spartan-ng/helm.
  • config.generateAs - library | entrypoint (Nx layout choice).
  • versions - Angular, Angular CDK, Tailwind, @spartan-ng/brain, @spartan-ng/cli.
  • iconLibrary - @ng-icons when present.
  • tailwindCssFile - the global stylesheet that imports the preset.
  • installedComponents - components already present (do not re-add these).
  • availableComponents - everything the CLI can generate.

If components.json does not exist, the project is not set up yet - run @spartan-ng/cli:init first (it installs dependencies and the theme). components.json itself is created when you add the first component with ui (see cli.md).

Principles

  1. Use existing components first. Check installedComponents, then availableComponents. Find docs via the MCP server (spartan_components_list / spartan_components_get) or the live docs at https://www.spartan.ng/components/<name>. See mcp.md.
  2. Compose, do not reinvent. Build dashboards, forms, and dialogs from existing Helm + Brain pieces rather than custom markup.
  3. Use built-in variants before custom styles. Buttons, badges, alerts, etc. ship variant and size inputs - use them instead of overriding classes.
  4. Use semantic colors, never raw values. bg-primary text-primary-foreground, not bg-blue-500. See rules/styling.md.

Critical rules

Read the rule file before doing the related work:

  • rules/styling.md - the hlm() util, semantic color tokens, layout-only classes, gap-* over space-*, size-*, dark mode, no manual z-index on overlays.
  • rules/forms.md - compose forms with hlmField (label, control, error, description) and hlmFieldSet / hlmFieldLegend on native <fieldset>/<legend>; option sets (2-7 choices) use hlm-toggle-group.
  • rules/composition.md - items belong inside their group; dialogs/sheets need a title; full Card composition; tabs triggers inside hlm-tabs-list; avatar always has a fallback; use Alert/Empty/Skeleton/Badge/Separator/Spinner instead of custom markup.
  • rules/icons.md - icons are <ng-icon name="lucide...">; register with provideIcons; no manual sizing classes inside components - use the size input.
  • rules/brain-vs-helm.md - the two-layer model (one headless library, Brain, plus the styled Helm layer); when to reach for Brain directly vs Helm, and how composition works via directives.
  • cli.md - every generator (init, ui, ui-theme, healthcheck, info, migrate-*), with Nx and Angular CLI invocations.
  • registry.md - the Brain-npm + Helm-copy-in distribution model, components.json, and the fixed component catalog (the shipped CLI uses no remote or custom registry).
  • customization.md - theming via the hlm-tailwind-preset.css, CSS variables, the ui-theme generator, and extending copied Helm components.
  • mcp.md - using the @spartan-ng/mcp tools, resources, and prompts for discovery.

Key patterns

<!-- Buttons: use variant/size inputs, not custom classes -->
<button hlmBtn variant="destructive" size="lg">Delete</button>

<!-- Icon in a button: ng-icon -->
<button hlmBtn size="icon" variant="ghost">
	<ng-icon name="lucideTrash" />
</button>

<!-- Loading state: compose a spinner, there is no isLoading input -->
<button hlmBtn [disabled]="loading()">
	@if (loading()) {
	<hlm-spinner />
	} Save
</button>

<!-- Layout: gap, not space-* ; size-* when width == height -->
<div class="flex items-center gap-2">
	<span hlmBadge variant="secondary">beta</span>
</div>

Component selection

NeedComponent(s)
Action / buttonbutton (hlmBtn), button-group
Text/number inputinput, textarea, input-otp, input-group, native-select
Choice inputselect, combobox, autocomplete, radio-group, checkbox, switch, slider
Toggle 2-7 optionstoggle-group
Form layout/validationfield, label
Data displaytable, card, badge, avatar, kbd, item
Navigationsidebar, navigation-menu, breadcrumb, tabs, pagination
Overlaysdialog, sheet, alert-dialog, popover, hover-card, tooltip
Menusdropdown-menu, context-menu, menubar, command
Feedbacksonner (toasts), alert, progress, skeleton, spinner
Layout/containerscard, separator, resizable, scroll-area, accordion, collapsible, aspect-ratio
Empty statesempty
Datescalendar, date-picker
Iconsicon (@ng-icons)
Typographytypography

Workflow

  1. Get context. Run @spartan-ng/cli:info --json. If the project is not set up, run :init, then add components with :ui (the first :ui run creates components.json).
  2. Check what is installed. Do not re-add anything in installedComponents.
  3. Find the component. Use the MCP tools or https://www.spartan.ng/components/<name> for the API and examples (mcp.md). Never guess selectors - confirm them.
  4. Add it. npx nx g @spartan-ng/cli:ui --name=<component> (Nx) or ng g @spartan-ng/cli:ui --name=<component> (Angular CLI). This installs the Brain dependency and copies the Helm code. Omit --name to get an interactive multiselect.
  5. Compose correctly. Import the *Imports const (e.g. HlmDialogImports) or the individual classes from the import alias, add them to the standalone component's imports, and follow the composition rules.
  6. Register icons. Any <ng-icon> you use must be passed to provideIcons(...) (see rules/icons.md).
  7. Verify. After bigger changes or upgrades, run @spartan-ng/cli:healthcheck to catch deprecated patterns and fix imports.
  8. Theme/customize. Edit the copied Helm files and the CSS variables; do not fork Brain.

Quick reference

# Initialize (creates components.json, wires Tailwind + preset)
npx nx g @spartan-ng/cli:init
ng g @spartan-ng/cli:init

# Project context as JSON
npx nx g @spartan-ng/cli:info --json

# Add components (interactive, or pass --name)
npx nx g @spartan-ng/cli:ui
npx nx g @spartan-ng/cli:ui --name=dialog

# Generate theme variables
npx nx g @spartan-ng/cli:ui-theme

# Scan + auto-fix deprecated APIs/imports after an upgrade
npx nx g @spartan-ng/cli:healthcheck --autoFix

Frequently asked questions about Spartan UI Management

Similar skills