nemo-component-patterns

Installation
SKILL.md

Nemo Component Patterns

Use this skill when writing, modifying, or debugging Nemo UI components. It covers the conventions, patterns, and common pitfalls for the component system.

The 4-File Pattern

Every component touches exactly 4 files:

  1. crates/nemo/src/components/<name>.rs — struct + RenderOnce impl
  2. crates/nemo/src/components/mod.rsmod + pub use
  3. crates/nemo-registry/src/builtins.rs — schema registration
  4. crates/nemo/src/app.rs — render dispatch match arm

Component Struct Convention

use gpui::*;
use nemo_macros::NemoComponent;
Installs
5
Repository
geoffjay/nemo
GitHub Stars
1
First Seen
Jul 15, 2026
nemo-component-patterns — geoffjay/nemo