authoring-components

A guide for creating reusable NVIDIA Elements web components with Lit, a library for building browser interfaces.

In plain words
What is it for?
Use it when creating a component from scratch, choosing its base class, adding examples, and preparing its test files.
Why use it?
It gives a consistent file structure and setup for component code, documentation, metadata, and the five required test types.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/nvidia/elements/authoring-components
Any agent
npx skills add NVIDIA/elements --skill authoring-components
Clone the repo
git clone --depth 1 https://github.com/NVIDIA/elements

Made for: Claude Code, Codex.

Per session 109 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 857 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00109 $0.00857
Opus 5 $0.00055 $0.00428
Sonnet 5 $0.00022 $0.00171
Haiku 4.5 $0.00011 $0.00086

Measured 2d ago against content hash abfd6f3974b7, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

authoring-components scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.agents/skills/authoring-components/SKILL.md · 58 lines

How it starts

The opening of the file, as written. The whole thing — 58 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Authoring Components

You MUST review the component creation guideline before creating or modifying components.

When to Use This Skill

  • Creating a new component from scratch
  • Understanding the required file structure for components
  • Setting up test boilerplate for all 5 test types
  • Choosing the appropriate base class or mixin (ButtonFormControlMixin vs LitElement)
  • Understanding component metadata and registration patterns
  • Setting up JSDoc comments for components

Must Read File

Read the component creation guide to get critical context for component creation guidance.

Workflow

  1. Gather requirements: confirm the component name (kebab-case), purpose, and whether to use LitElement directly or apply ButtonFormControlMixin for button-like interactive components.
  2. Study a reference: read the closest reference component listed below to understand the pattern in practice.
  3. Create the 10 required files in projects/core/src/<component-name>/:
    • component-name.ts:component class with metadata, JSDoc, and render method
    • component-name.css:styles using CSS custom properties
    • component-name.examples.ts:example templates with @summary JSDoc
    • component-name.test.ts:unit tests
    • component-name.test.axe.ts:accessibility tests
    • component-name.test.visual.ts:visual regression tests
    • component-name.test.ssr.ts:SSR tests
    • component-name.test.lighthouse.ts:lighthouse tests
    • define.ts:registration using define() helper with HTMLElementTagNameMap
    • index.ts:side-effect-free export
  4. Update shared entry points:
    • Add only import '@nvidia-elements/core/<component-name>/define.js' to projects/core/src/bundle.ts in alphabetical order. Keep this registration bundle import-only. Export the public API from the component index.ts and expose its entry point through the package exports map.
    • Add the definition import to the js-modules list in projects/core/src/index.test.lighthouse.ts so the combined direct-import benchmark measures the component.
  5. Measure payloads: run mise exec -- pnpm run test:lighthouse from projects/core. Increase a bundle-size limit only when the measured payload exceeds the current limit.
  6. Verify: confirm all files follow the templates in the component creation guide, then run mise exec -- pnpm run lint and mise exec -- pnpm run test from projects/core.

Read the full file on GitHub · 58 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 58 lines · 109 tokens per session scan A abfd6f3974b7

Subscribe to this mod's changes

authoring-components is a skill published in the GitHub repository NVIDIA/elements (83 stars, last pushed 2d ago), licensed Apache-2.0. It adds 109 tokens to every session and 857 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

design-doc-interviewer

Interview the user to turn a proposed product/engineering change into a structured design document. Use when the user asks to be interviewed, wants help clarifying a design, or wants a design doc produced from Q&A. Emphasize numbered questions (few at a time), capture requirements/constraints/UX/data/logic/testing…

liveloveapp/hashbrown · 77 tokens

ideate

Capture and document a new idea in this repo. Use when the user says things like "help me brainstorm", "I have an idea", or "let's capture this for the future" and wants it recorded in design/ideas/ with a summary, supporting research (repo context + web if useful), and a sketch.

liveloveapp/hashbrown · 70 tokens

flow

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

react/react · 22 tokens

beui

Pick and install beUI (@beui) animated React components from the shadcn registry. Use when building motion UI, agent/chat interfaces, toasts, docks, bottom sheets, drawers, popovers, sliders, loaders, 404 pages, or any beui.dev component. Maps user intent to exact @beui install slugs instead of inventing custom…

starc007/ui-components · 78 tokens

beui-pro

Choose, inspect, install, and compose licensed beUI Pro premium React blocks from the authenticated shadcn registry. Use when building or improving landing pages with beUI Pro, installing @beui-pro items, selecting premium heroes, features, pricing, social proof, CTAs, navigation, footers, or other page sections, or…

starc007/ui-components · 83 tokens

walkeros-understanding-sources

Use when working with walkerOS sources, understanding event capture, or learning about the push interface. Covers browser, dataLayer, and server source patterns.

elbwalker/walkerOS · 37 tokens