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 skills add HorusGoul/eslint-plugin-react-render-types --skill react-render-types-setupgit clone --depth 1 https://github.com/HorusGoul/eslint-plugin-react-render-typesWrote 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.
[](https://agentmods.dev/skills/horusgoul/eslint-plugin-react-render-types/react-render-types-setup)<a href="https://agentmods.dev/skills/horusgoul/eslint-plugin-react-render-types/react-render-types-setup"><img src="https://agentmods.dev/badge/skills/horusgoul/eslint-plugin-react-render-types/react-render-types-setup.svg" alt="Measured on agentmods" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00129 | $0.01675 |
| Opus 5 | $0.00064 | $0.00838 |
| Sonnet 5 | $0.00026 | $0.00335 |
| Haiku 4.5 | $0.00013 | $0.00168 |
Grade A, and why
react-render-types-setup 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.
How it starts
The opening of the file, as written. The whole thing — 211 lines — stays where its author put it; the contents beside it link to each section on GitHub.
React Render Types — Setup
Install and configure eslint-plugin-react-render-types to enforce component composition constraints at lint time.
Prerequisites
- ESLint >= 9 (flat config)
- TypeScript >= 5
@typescript-eslint/parser>= 8- A working
tsconfig.json
Install
npm install eslint-plugin-react-render-types --save-dev
ESLint Configuration
Typed linting is required — the plugin uses TypeScript's type checker for cross-file component identity.
Recommended (extends preset)
// eslint.config.js
import tseslint from "typescript-eslint";
import reactRenderTypes from "eslint-plugin-react-render-types";
export default [
...tseslint.configs.recommended,
reactRenderTypes.configs.recommended,
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
];
Manual (pick rules individually)
// eslint.config.js
import reactRenderTypes from "eslint-plugin-react-render-types";
import tsParser from "@typescript-eslint/parser";
export default [
{
languageOptions: {
parser: tsParser,
parserOptions: {
projectService: true,
ecmaFeatures: { jsx: true },
},
},
plugins: {
"react-render-types": reactRenderTypes,
},
rules: {
"react-render-types/valid-render-return": "error",
"react-render-types/valid-render-prop": "error",
"react-render-types/valid-renders-jsdoc": "warn",
"react-render-types/renders-uses-vars": "error",
},
},
];
Typed Linting
Two options — pick one:
Option 1: projectService (recommended)
parserOptions: {
projectService: true,
}
Automatically infers tsconfig for each file.
Option 2: Explicit project path
parserOptions: {
project: './tsconfig.json',
// Monorepos: project: ['./tsconfig.json', './packages/*/tsconfig.json'],
}
Rules
| Rule | Default | Purpose |
|---|---|---|
valid-render-return |
error | Component return matches its @renders declaration |
valid-render-prop |
error | Props/children receive compatible components |
valid-renders-jsdoc |
warn | @renders syntax is well-formed (braces, PascalCase) |
renders-uses-vars |
error | Prevents no-unused-vars on @renders references |
require-renders-annotation |
off | Requires @renders on all components |
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.
- 2d ago First seen · 211 lines · 129 tokens per session scan A 05308699bc46
react-render-types-setup is a skill published in the GitHub repository HorusGoul/eslint-plugin-react-render-types (111 stars, last pushed 1mo ago), licensed MIT. It adds 129 tokens to every session and 1,675 once invoked, about $0.0006 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-09-04.
Other skills, from other repositories
fast-typescript-check
Keep www-sacred's TypeScript fast to type-check and fast to run. Use when touching the ASCII/canvas animation components (the only real per-frame code here), tightening type-check wall-clock, or auditing a change for runtime or compiler regressions. Scoped to this repo — a React 19 / Next.js 16 component library plus…
babel-docs
Babel 7.x/8.x — plugins, presets, config, @babel/core, parser, traverse, types, CLI, preset-env.
elite-engineer
The operating system for elite software engineering in TypeScript, React, and Next.js. Enforces the cognitive models, architecture laws, type-level patterns, component design, visual standards, and performance mandates that separate exceptional software from the ordinary — grounded in named sources (Torvalds…
frontend-conventions
Coding conventions, architecture patterns, and testing rules for the SkillHub React frontend. Ensures agents follow Feature-Sliced Design and use the generated OpenAPI types.
port-sacred-terminal-ui-to-typescript-cli
Take a React Window.tsx (or any sacred component) and produce a terminal CLI screen written in TypeScript that uses Simulacrum — the sacred CLI framework in scripts/cli/lib/.
typescript-react
Apply, review, and explain React conventions from the TypeScript Style Guide. Use automatically for TypeScript and TSX tasks involving prop-derived state, prop typing, component responsibilities, data flow, compound components, or client and server state.