building-nds-ui — AI Agent Fähigkeit building-nds-ui, nds-ui-skill, community, AI Agent Fähigkeit, ide skills, Claude Code Fähigkeit, Cursor Fähigkeit, Windsurf Fähigkeit, Benutzeroberfläche anpassen, Typografie anpassen

v1.0.0

Über diesen Skill

Perfekt für Frontend-Agenten, die erweiterte UI-Styling-Funktionen im National Design Studio-Stil benötigen Die Fähigkeit building-nds-ui ist eine Fähigkeit von AI Agent, die Benutzeroberflächen im Stil von National Design Studio generiert

Funktionen

Generierung von Benutzeroberflächen im Stil von National Design Studio
Verwendung von Schriftarten wie Instrument Serif und Inter
Kompatibilität mit Locales wie es, fr und de
Integration mit Technologien wie Next.js
Unterstützung für benutzerdefinierte Typografie

# Core Topics

naga-k naga-k
[12]
[0]
Updated: 2/4/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution
Review Score
8/11
Quality Score
30
Canonical Locale
en
Detected Body Locale
en

Perfekt für Frontend-Agenten, die erweiterte UI-Styling-Funktionen im National Design Studio-Stil benötigen Die Fähigkeit building-nds-ui ist eine Fähigkeit von AI Agent, die Benutzeroberflächen im Stil von National Design Studio generiert

Warum diese Fähigkeit verwenden

Ermöglicht es Agenten, UI-Komponenten mit den Schriftstilen Instrument Serif und Inter zu generieren, die mehrere Sprachen unterstützen und Next.js für die Schriftartenkonfiguration verwenden, wodurch die Erstellung visuell konsistenter und zugänglicher Schnittstellen mit monospaced `tracking-widest`-Labels und system-ui-sans-serif-Körpertext ermöglicht wird

Am besten geeignet für

Perfekt für Frontend-Agenten, die erweiterte UI-Styling-Funktionen im National Design Studio-Stil benötigen

Handlungsfähige Anwendungsfälle for building-nds-ui

Erzeugen von UI-Komponenten im NDS-Stil für Regierungs-Websites
Erstellen von zugänglichen Schnittstellen mit Unterstützung für mehrere Sprachen
Stilisieren von UI-Elementen mit den Schriftstilen Instrument Serif und Inter

! Sicherheit & Einschränkungen

  • Benötigt Next.js für die Schriftartenkonfiguration
  • Begrenzt auf bestimmte Schriftarten (Instrument Serif, Inter, system-ui-sans-serif)
  • Abhängig von Google Fonts für die Schriftartenimporte

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is building-nds-ui?

Perfekt für Frontend-Agenten, die erweiterte UI-Styling-Funktionen im National Design Studio-Stil benötigen Die Fähigkeit building-nds-ui ist eine Fähigkeit von AI Agent, die Benutzeroberflächen im Stil von National Design Studio generiert

How do I install building-nds-ui?

Run the command: npx killer-skills add naga-k/nds-ui-skill/building-nds-ui. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for building-nds-ui?

Key use cases include: Erzeugen von UI-Komponenten im NDS-Stil für Regierungs-Websites, Erstellen von zugänglichen Schnittstellen mit Unterstützung für mehrere Sprachen, Stilisieren von UI-Elementen mit den Schriftstilen Instrument Serif und Inter.

Which IDEs are compatible with building-nds-ui?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for building-nds-ui?

Benötigt Next.js für die Schriftartenkonfiguration. Begrenzt auf bestimmte Schriftarten (Instrument Serif, Inter, system-ui-sans-serif). Abhängig von Google Fonts für die Schriftartenimporte.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add naga-k/nds-ui-skill/building-nds-ui. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use building-nds-ui immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

building-nds-ui

Install building-nds-ui, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

NDS UI Style

Generates UI in the style of National Design Studio - the team behind realfood.gov, trumprx.gov, and americabydesign.gov.

Typography

  • Headlines: Instrument Serif (or Playfair Display, DM Serif), scale 4xl-8xl
  • Body: Inter or system-ui sans-serif
  • Labels: Monospace uppercase, tracking-widest
tsx
1// Next.js font setup 2import { Instrument_Serif, Inter } from 'next/font/google' 3 4const serif = Instrument_Serif({ weight: '400', subsets: ['latin'], variable: '--font-serif' }) 5const sans = Inter({ subsets: ['latin'], variable: '--font-sans' })

Color Palettes

Light theme (realfood.gov):

css
1--background: #F3F0D6; /* warm beige */ 2--foreground: #1a1a1a; 3--muted: #e8e5d0;

Dark theme (trumprx.gov):

css
1--background: #0a0a0a; 2--foreground: #ffffff; 3--accent: #f5f5dc; /* warm cream */

Layout Principles

  • Heroes: h-screen, centered content, bg-black/30 overlay on images
  • Max width: max-w-7xl (1280px)
  • Whitespace: px-6 mobile, px-12+ desktop
  • Sections: py-20 md:py-32, alternating backgrounds

Core Patterns

Hero Section:

jsx
1<section className="relative h-screen flex items-center justify-center"> 2 <div className="absolute inset-0 bg-black/30" /> 3 <Image src="..." fill className="object-cover -z-10" /> 4 <div className="relative z-10 text-center text-white max-w-4xl px-6"> 5 <h1 className="font-serif text-5xl md:text-7xl">Headline</h1> 6 <p className="mt-6 text-xl md:text-2xl">Subheadline</p> 7 </div> 8</section>

Statistics: Large serif numbers + monospace uppercase labels

Buttons: bg-white text-black px-8 py-4 hover:bg-gray-100 transition-colors

Navigation: Transparent over hero, logo left, minimal links right

Tailwind Config

js
1extend: { 2 colors: { 'warm-cream': '#F3F0D6', 'warm-beige': '#e8e5d0' }, 3 fontFamily: { 4 serif: ['var(--font-serif)', 'Georgia', 'serif'], 5 sans: ['var(--font-sans)', 'system-ui', 'sans-serif'], 6 }, 7}

Visual Style

  • Photography over illustrations
  • Semi-transparent overlays for text legibility
  • Minimal ornamentation
  • Alternating section backgrounds (cream/white/dark)

Reference

  • Components: See reference/components.md for full component examples
  • Sites: realfood.gov, trumprx.gov, americabydesign.gov, ndstudio.gov

Verwandte Fähigkeiten

Looking for an alternative to building-nds-ui or another community skill for your workflow? Explore these related open-source skills.

Alle anzeigen

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
Künstliche Intelligenz

widget-generator

Logo of f
f

Erzeugen Sie anpassbare Widget-Plugins für das Prompts.Chat-Feed-System

149.6k
0
Künstliche Intelligenz

flags

Logo of vercel
vercel

Das React-Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensor und dynamische neuronale Netze in Python mit starker GPU-Beschleunigung

98.6k
0
Entwickler