building-nds-ui — NDS UI style building-nds-ui, nds-ui-skill, community, NDS UI style, ide skills, Next.js, Instrument Serif, CRITICAL RULES, Claude Code skill

v1.0.0

About this Skill

Perfect for Frontend Agents needing advanced UI styling capabilities in the National Design Studio style The building-nds-ui AI agent skill is a type of AI agent skill that generates NDS UI style

Features

Generate NDS UI style
Support multiple languages (zh, ja, ko)
Support multiple font styles (Instrument Serif, Inter)
Use Next.js for font setup
Support CRITICAL RULES

# 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 Locale and body language aligned
Review Score
8/11
Quality Score
30
Canonical Locale
en
Detected Body Locale
en

Perfect for Frontend Agents needing advanced UI styling capabilities in the National Design Studio style The building-nds-ui AI agent skill is a type of AI agent skill that generates NDS UI style

Core Value

Empowers agents to generate UI components with Instrument Serif and Inter font styles, supporting multiple languages and utilizing Next.js for font setup, enabling the creation of visually consistent and accessible interfaces with `tracking-widest` monospace labels and system-ui sans-serif body text

Ideal Agent Persona

Perfect for Frontend Agents needing advanced UI styling capabilities in the National Design Studio style

Capabilities Granted for building-nds-ui

Generating NDS UI style components for government websites
Creating accessible interfaces with multiple language support
Styling UI elements with Instrument Serif and Inter font styles

! Prerequisites & Limits

  • Requires Next.js for font setup
  • Limited to specific font styles (Instrument Serif, Inter, system-ui sans-serif)
  • Dependent on Google Fonts for font imports

Why this page is reference-only

  • - 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?

Perfect for Frontend Agents needing advanced UI styling capabilities in the National Design Studio style The building-nds-ui AI agent skill is a type of AI agent skill that generates NDS UI style

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: Generating NDS UI style components for government websites, Creating accessible interfaces with multiple language support, Styling UI elements with Instrument Serif and Inter font styles.

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?

Requires Next.js for font setup. Limited to specific font styles (Instrument Serif, Inter, system-ui sans-serif). Dependent on Google Fonts for font imports.

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

Generate NDS UI style for your web application with building-nds-ui AI agent skill, supporting multiple languages and font styles

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

Related Skills

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

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

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

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer