npx skills add ...
npx skills add diodeinc/pcb --skill zener-language
Read or edit Zener HDL, package APIs, and tool-managed dependencies.
npx skills add diodeinc/pcb --skill zener-language
Zener is Starlark plus PCB-specific modules, typed electrical connections, physical parts, sourcing, layout, and diagnostics.
Use pcb doc --package @stdlib or pcb doc --package <package> to inspect public APIs and their source roots. Read the installed implementation when exact behavior matters.
For CLI behavior, use the installed command's --help; do not invent or infer subcommands or flags. When version history matters, inspect the installed version and nearby entries in the pcb changelog instead of relying on old examples.
A .zen file can be:
load(); orModule().Relative paths stay within the current package. Cross-package imports use full package URLs:
An instantiation passes name=..., its public io() and config() inputs, and optional properties such as dnp, properties, or schematic.
name establishes instance-path identity, not a fixed reference designator. Refdes-like names are only annotation hints; exact source-reference preservation is not supported.
Use refdes-like names only when the user explicitly asks. In that case, set prefix= on the underlying Component() to match the refdes prefix.
Component() creates a physical part from name, symbol, and pins. The selected symbol is the authority for its footprint, part identity, datasheet, and pins. Keep those properties correct in .kicad_sym rather than repeating them in Zener. Omit true no_connect pins; they are wired to NotConnected() automatically.
Use Symbol(library, name=...) for multi-symbol libraries. Use Part(mpn=..., manufacturer=...) only when the symbol does not already provide part identity.
For boards, use Board(..., schematic = True) to enable persistent schematics alongside layout in layout_path. Board() already creates a project; never combine it with Project().
For registry modules needing layout or schematics, prefer Project(name = "ModuleName", path = "layout"). It enables both by default; layout = False or schematic = False disables either. Layout() is the older layout-only shorthand. Use one declaration per entrypoint with a config-independent path relative to its .zen file; use separate entrypoints for distinct projects.
Define public electrical connections as flat top-level assignments:
Do not introduce legacy Pins = struct(...) wrappers in new or touched APIs.
With optional=True, an omitted IO receives an automatically generated net or interface.
Net is the base connection type. Power, Ground, NotConnected, and stdlib interfaces add constraints and semantics. Across an io() boundary, NotConnected can promote to any net type, a specialized net can demote to Net, and a plain Net does not automatically gain specialized semantics. Adapt intentionally with casts such as Power(net, voltage=...) or Net(power_net).
Use stdlib interfaces such as DiffPair, I2c, I3c, Spi, Qspi, Uart, Usart, Swd, Jtag, Usb2, and Usb3 when the grouped protocol semantics are meaningful.
Use UartPair() and UsartPair() when a point-to-point link should cross-connect the two endpoints.
Declare a voltage range on every public Power IO unless the API is intentionally generic.
Define non-electrical choices with typed config():
Load physical value types from @stdlib/units.zen: Voltage, Current, Resistance, Capacitance, Inductance, Impedance, Frequency, Temperature, Time, and Power. String defaults and allowed values auto-convert to the declared physical type. Use enums for non-physical modes and strategies. Expose application-level choices rather than internal passive values or implementation details.
Physical constructors accept point values, engineering notation, ranges, and tolerances. Arithmetic tracks units. Equality between two physical values is strict; use .matches(...) for coercive comparison with a string or scalar. Inspect the installed API for other operations.
Enum defaults use the selected string value:
Configs may change values and dnp= state, but should not add, remove, or reconnect schematic instances. Stable instance and net identity preserves layout and reviewability.
dnp= only for populated alternatives.Put non-trivial electrical calculations in named functions. Cite the relevant datasheet equation or table and snap calculated values with the appropriate stdlib E-series helper.
The available E-series helpers in @stdlib/utils.zen are e3, e6, e12, e24, e48, e96, and e192.
Use check, warn, error, and stdlib checks for enforceable electrical constraints rather than documenting them only in comments.
For reusable power-rail boundary checks, inspect and prefer voltage_within(...) from @stdlib/checks.zen instead of duplicating the constraint.
Reusable-package compatibility includes the public io() and config() API, entrypoints, behavior, layout, and physical integration assumptions. A build of the current package does not prove existing consumers remain compatible.
If consumers must change to adopt an update, treat it as breaking. Document the migration and use a breaking commit.
Inspect the root declaration and its flags:
Board(..., schematic = True) uses layout_path; Project(...) uses path with schematics enabled by default. These KiCad files are persistent state. Reconcile Zener changes with pcb apply schematic and compose with schematic-composition and agent-schema.# pcb:sch <ID> ... placement comments, add new code above the block, and do not use agent-schema. On rename or deletion, update only the corresponding records; do not hand-edit coordinates outside requested schematic layout work.For a requested legacy migration, first run pcb-sch export-kicad <root.zen> --output <fresh-directory>. Preserve the exported placement and existing layout when linking the KiCad files: enable schematic = True on the existing Board(), or replace a module's Layout() with Project(). Never add Project() alongside Board(). Run pcb apply schematic --no-open <root.zen> twice; the second must report schematic unchanged.
The stdlib is toolchain-managed and does not belong in [dependencies]. Other packages are declared by their load() or Module() imports, and the dependency state in pcb.toml, including indirect entries, is tool-managed.
Use pcb list -m -u to inspect compatible and breaking updates. Use pcb add -u for compatible updates and pcb list -m -versions <url> plus pcb add <url>@<version> for a specific or breaking version. Do not hand-edit resolved versions or use the legacy pcb update workflow.
Board roots contain workspace and board metadata. Registry roots contain reusable component and module members without a root board. Reusable packages contain their own direct dependencies and optional default parts.
Match the surrounding Zener code. Keep declarations concise, use comments for evidence or non-obvious judgment, and avoid decorative section banners or prose that restates the code. These cleanup rules never apply to # pcb:sch records.
Use established naming:
io() names: uppercase;config() names: lowercase;_P and _N.Prefer stdlib generics for common passives, discretes, connectors, test points, and mechanical features. Inspect the current stdlib package rather than relying on a memorized inventory. Use Rectifier, Zener, or Tvs instead of the deprecated generic Diode.
For ordinary boards, prefer Board(..., layers=<count>); standard defaults exist for 2, 4, 6, 8, and 10 layers. Customize them with outer_copper_weight, copper_finish, solder_mask_color, track_widths, and via_dimensions. Use explicit stackup and design-rule records only when those defaults are insufficient; an explicit config merges over the layers-derived defaults.
Use each supported primitive for its own purpose:
pcb sync from the relevant workspace or package;pcb fmt on changed Zener;pcb build <path> for affected entrypoints to evaluate the design and collect diagnostics; for registry package curation, use pcb build -Wstyle <path> to promote style advice to warnings; andpcb bom <entrypoint>.zen -f json only when sourceability or part selection is relevant.Use the applicable checks and engineering evidence for the changed API, circuit, or dependencies. Preserve schematic position state and report unverified work.