react-render-types-setup

react-render-types-setup is a skill for Claude Code, Codex from HorusGoul/eslint-plugin-react-render-types. It costs 129 tokens per session (1,675 once invoked), scanned A, original, MIT.

A setup guide for adding a React-specific ESLint plugin to a TypeScript project. ESLint checks code for rule violations, while TypeScript adds type information that this plugin uses across files.

In plain words
What is it for?
It is for enforcing React component composition rules and troubleshooting the plugin in ESLint 9 flat configuration.
Why use it?
It removes guesswork from installing the plugin and configuring typed linting, including common parser and project settings.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for enforcing React component composition rules and troubleshooting the plugin in ESLint 9 flat configuration.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/horusgoul/eslint-plugin-react-render-types/react-render-types-setup
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.

Any agent
npx skills add HorusGoul/eslint-plugin-react-render-types --skill react-render-types-setup
Clone the repo
git clone --depth 1 https://github.com/HorusGoul/eslint-plugin-react-render-types

Made for: Claude Code, Codex.

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 react-render-types-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/horusgoul/eslint-plugin-react-render-types/react-render-types-setup.svg)](https://agentmods.dev/skills/horusgoul/eslint-plugin-react-render-types/react-render-types-setup)
Your own site
<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>
Per session 129 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,675 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00129 $0.01675
Opus 5 $0.00064 $0.00838
Sonnet 5 $0.00026 $0.00335
Haiku 4.5 $0.00013 $0.00168

Measured 2d ago against content hash 05308699bc46, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

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.

skills/react-render-types-setup/SKILL.md · 211 lines

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

Read the full file on GitHub · 211 lines

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. 2d ago First seen · 211 lines · 129 tokens per session scan A 05308699bc46

Subscribe to this mod's changes

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.

Related

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…

internet-development/www-sacred · 84 tokens

babel-docs

Babel 7.x/8.x — plugins, presets, config, @babel/core, parser, traverse, types, CLI, preset-env.

pledgeandgrow/pledge-skills · 34 tokens

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…

Kerim-Sabic/elite-engineer · 167 tokens

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.

iflytek/skillhub · 36 tokens

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/.

internet-development/www-sacred · 0 tokens

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.

mkosir/typescript-style-guide · 50 tokens