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.
npx agentmods add rules/perniemann/pncore/pn-reactgit clone --depth 1 https://github.com/perniemann/pnCoreWhat 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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00000 | $0.00934 |
| Opus 5 | $0.00000 | $0.00467 |
| Sonnet 5 | $0.00000 | $0.00187 |
| Haiku 4.5 | $0.00000 | $0.00093 |
Grade A, and why
pn-react 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 yesterday.
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.
How it starts
The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.
React rules
Component Architecture
- Prefer function components and hooks. Use
constfor component names. - Keep components focused: one main responsibility. Extract sub-components when a file grows past ~150 lines or a component has more than one conceptual job.
- Co-locate related files:
MyComponent.tsx,MyComponent.test.tsx,MyComponent.module.cssin the same folder. - Prop types: use TypeScript interfaces; prefer explicit over wide (
stringnotany). - Avoid prop drilling beyond 2 levels — use context, zustand, or composition instead.
Naming
- Components: PascalCase (
UserCard, notuserCardoruser-card) - Props and handlers: camelCase (
onClick,isLoading,userProfile) - CSS classes: kebab-case for BEM; or rely on Tailwind/CSS Modules
- Files: kebab-case for pages and utilities (
user-profile.ts); PascalCase for components (UserProfile.tsx) - Boolean props: prefix with
is,has,can,should(isOpen,hasError,canEdit)
Hooks
- Follow Rules of Hooks: only call hooks at the top level, never inside conditions or loops.
- Extract repeated hook logic into custom hooks (
useWindowSize,useDebounce). useEffectcleanup: always return a cleanup function for subscriptions, event listeners, and timers.- Avoid
useEffectfor derived state — compute it during render instead. useMemoanduseCallback: use when the computation is expensive or when referential equality matters for child props. Do NOT memo everything by default — it adds complexity without benefit in most cases.
Accessibility
- Use semantic HTML:
<button>for actions,<a>for navigation,<input>with<label>,<h1>–<h6>in logical order. - Every
<img>needsalt. Decorative images usealt="". - Icon-only buttons require
aria-labeloraria-labelledby. - Interactive elements must be keyboard accessible (focusable, operable with Enter/Space).
- Never remove focus styles without an accessible replacement.
- Dynamic content changes: move focus to newly revealed content (modal, error message) when appropriate.
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.
- yesterday First seen · 71 lines · 934 tokens per session scan A 734fa8a56353
pn-react is a cursor rule published in the GitHub repository perniemann/pnCore (0 stars, last pushed 2d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 934 tokens. 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-31.
Other cursor rules, from other repositories
engine-internals
Coding Agent engine implementation details (Cursor + Claude Code) — reference when modifying engine.ts or debugging Agent behavior.
archcore-files
Enforce MCP-only operations when working with .archcore/ files.
cursorrules
Use the latest version of Shadcn to install new components, like this command to add a button component.
x402-coding
@dexterai/x402 SDK conventions and hosted-only OpenDexter tool usage.
agent-models
Agent model registry. Defines which model to use per role. Use [MODEL:X] signal to reference a role anywhere delegation occurs.
secure-dev-python
These rules apply to all Python code in the repository and aim to prevent common security risks through disciplined use of input validation, output encoding, and safe APIs.