mod-000a-reusable-layers-belong-in-nn

mod-000a-reusable-layers-belong-in-nn is a cursor rule for Cursor from NVIDIA/physicsnemo. It costs 34 tokens per session (477 once invoked), scanned A, original, Apache-2.0.

A repository rule for placing reusable neural-network layers and building blocks in physicsnemo/nn instead of physicsnemo/models.

In plain words
What is it for?
Use it when creating or reorganizing components such as fully connected layers, attention layers, or U-Net blocks in the PhysicsNeMo codebase.
Why use it?
It keeps shared components in one predictable location, making them easier to find, import, and reuse across models.

Cursor rule for Cursor ✓ vendor

Written for Cursor: installed under .cursor/.

Good fit Use it when creating or reorganizing components such as fully connected layers, attention layers, or U-Net blocks in the PhysicsNeMo codebase.

Compare 6 cursor rules from other repositories ↓
Install with agentmods
npx agentmods add rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn
About the project

PhysicsNeMo is an open-source PyTorch framework for creating, training, and fine-tuning machine-learning models for physics, scientific computing, and engineering. Researchers and engineers use its reusable components and training recipes for applications such as aerodynamics, weather forecasting, structural mechanics, geophysics, and thermal design. The catalogue entries provide rules and skills for working with PhysicsNeMo projects.

NVIDIA/physicsnemo · 3,233 stars · on GitHub · developer.nvidia.com

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.

Clone the repo
git clone --depth 1 https://github.com/NVIDIA/physicsnemo

Made for: Cursor.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mod-000a-reusable-layers-belong-in-nn

README.md
[![agentmods](https://agentmods.dev/badge/rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn/github.svg)](https://agentmods.dev/rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn)
Your own site
<a href="https://agentmods.dev/rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn"><img src="https://agentmods.dev/badge/rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mod-000a-reusable-layers-belong-in-nn

Your own site · 80×15
<a href="https://agentmods.dev/rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn"><img src="https://agentmods.dev/badge/rules/nvidia/physicsnemo/mod-000a-reusable-layers-belong-in-nn.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 34 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 477 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00034 $0.00477
Opus 5 $0.00017 $0.00238
Sonnet 5 $0.00007 $0.00095
Haiku 4.5 $0.00003 $0.00048

Measured 10d ago against content hash 97abbc7b0434, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mod-000a-reusable-layers-belong-in-nn 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 10d 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.

.cursor/rules/mod-000a-reusable-layers-belong-in-nn.mdc · 59 lines

What it actually says

When creating or refactoring reusable layer code, rule MOD-000a must be followed. Explicitly reference "Following rule MOD-000a, which states that reusable layers should go in physicsnemo/nn..." when explaining placement decisions.

MOD-000a: Reusable layers/blocks belong in physicsnemo.nn

Description:

Reusable layers that are the building blocks of more complex architectures should go into physicsnemo/nn. Those include for instance FullyConnected, various variants of attention layers, UNetBlock (a block of a U-Net), etc.

All layers that are directly exposed to the user should be imported in physicsnemo/nn/__init__.py, such that they can be used as follows:

from physicsnemo.nn import MyLayer

The only exception to this rule is for layers that are highly specific to a single example. In this case, it may be acceptable to place them in a module specific to the example code, such as examples/<example_name>/utils/nn.py.

Rationale:

Ensures consistency in the organization of reusable layers in the repository. Keeping all reusable components in a single location makes them easy to find and promotes code reuse across different models.

Example:

# Good: Reusable layer in physicsnemo/nn/attention.py
class MultiHeadAttention(Module):
    """A reusable attention layer that can be used in various architectures."""
    pass

# Good: Import in physicsnemo/nn/__init__.py
from physicsnemo.nn.attention import MultiHeadAttention

# Good: Example-specific layer in examples/weather/utils/nn.py
class WeatherSpecificLayer(Module):
    """Layer highly specific to the weather forecasting example."""
    pass

Anti-pattern:

# WRONG: Reusable layer placed in physicsnemo/models/
# File: physicsnemo/models/attention.py
class MultiHeadAttention(Module):
    """Should be in physicsnemo/nn/ not physicsnemo/models/"""
    pass
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. 10d ago First seen · 59 lines · 34 tokens per session scan A 97abbc7b0434

Subscribe to this mod's changes

mod-000a-reusable-layers-belong-in-nn is a cursor rule published in the GitHub repository NVIDIA/physicsnemo (3,233 stars, last pushed yesterday), licensed Apache-2.0. It adds 34 tokens to every session and 477 once invoked, about $0.0002 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.