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 cmaranho/rn-agent-skills --skill rn-typescriptgit clone --depth 1 https://github.com/cmaranho/rn-agent-skillsWrote 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/cmaranho/rn-agent-skills/rn-typescript)<a href="https://agentmods.dev/skills/cmaranho/rn-agent-skills/rn-typescript"><img src="https://agentmods.dev/badge/skills/cmaranho/rn-agent-skills/rn-typescript/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.
<a href="https://agentmods.dev/skills/cmaranho/rn-agent-skills/rn-typescript"><img src="https://agentmods.dev/badge/skills/cmaranho/rn-agent-skills/rn-typescript.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.00055 | $0.00519 |
| Opus 5 | $0.00028 | $0.00260 |
| Sonnet 5 | $0.00011 | $0.00104 |
| Haiku 4.5 | $0.00006 | $0.00052 |
Grade A, and why
rn-typescript 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 9d 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.
What it actually says
React Native — TypeScript
Objetivo
Garantir segurança de tipos de ponta a ponta, tornando estados inválidos irrepresentáveis.
Quando utilizar
- Tipar props, hooks, stores, respostas de API e navegação.
- Modelar estados de carregamento/erro/sucesso.
- Endurecer o
tsconfigou removeranyde uma base existente.
Conhecimentos necessários
strictmode e flags relacionadas (noImplicitAny,strictNullChecks).- Unions discriminadas, generics e utility types (
Pick,Omit,Partial,Record). unknownvsany; type guards e narrowing.- Inferência vs anotação explícita.
Fluxo de execução
- Habilite
strict: truenotsconfig. - Modele dados com tipos/interfaces explícitos; tipe props no parâmetro da função.
- Represente estados variantes com union discriminada (
{ type: 'success'; data } | { type: 'error'; error }). - Trate entradas externas como
unknowne faça narrowing/validação antes de usar. - Rode
tsc --noEmite elimine erros; semanyou@ts-ignore.
Boas práticas
- Prefira
typepara unions/props;interfacepara contratos extensíveis. - Derive tipos de fontes únicas (schemas, constantes
as const) para evitar drift. - Torne ilegais os estados inválidos via tipos, não via checagem em runtime.
- Exporte tipos de saída reutilizados por mappers e casos de uso.
Armadilhas comuns
anyimplícito em callbacks e respostas de API.- Casts (
as) mascarando modelagem incorreta. - Enums onde uma union de strings basta.
React.FC(tipagem implícita de children indesejada).
Critérios de sucesso
tsc --noEmitsem erros; zeroany/@ts-ignoreinjustificados.- Estados inválidos não compilam.
- Autocompletar e refactors seguros em toda a base.
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.
- 9d ago First seen · 52 lines · 55 tokens per session scan A 68bd475e541b
rn-typescript is a skill published in the GitHub repository cmaranho/rn-agent-skills (2 stars, last pushed 2mo ago), licensed MIT. It adds 55 tokens to every session and 519 once invoked, about $0.0003 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-31.
Other skills, from other repositories
expo-react-native-typescript
Expert in Expo React Native TypeScript mobile development with best practices.
capacitor-plugin-development
Guides the agent through creating and maintaining Capacitor plugins from scratch. Covers scaffolding a new plugin project, designing the TypeScript API, implementing native iOS (Swift) and Android (Java/Kotlin) bridges, implementing the web layer, defining TypeScript type definitions, plugin configuration values…
expo-module
Guide for writing Expo native modules and views using the Expo Modules API (Swift, Kotlin, TypeScript). Covers module definition DSL, native views, shared objects, config plugins, lifecycle hooks, autolinking, and type system. Use when building or modifying native modules for Expo.
migrate-to-strict-api
Use when migrating a React Native project to the Strict TypeScript API — the default JavaScript API from React Native 0.87, available as an opt-in preview since 0.80. Handles tsconfig.json setup, dependency updates, rewriting deep imports to root imports, and resolving breaking type changes. Invoke with…
expo-app-design
Build beautiful cross-platform mobile apps with Expo Router, NativeWind, and React Native.
upgrading-expo
Guidelines for upgrading Expo SDK versions and fixing dependency issues.