everything-react-native-expo: Skill for Claude Code

.claude/skills/coding-standards/SKILL.md

coding-standards is a skill for Claude Code from JubaKitiashvili/everything-react-native-expo. It costs 15 tokens per session (618 once invoked), scanned A, original, MIT.

A workflow for checking React Native code against project coding rules. React Native is a framework for building mobile apps with JavaScript or TypeScript, and the workflow covers both common and platform-specific rules.

In plain words
What is it for?
Use it to inspect component structure, exports, TypeScript usage, styling, colors, responsive layouts, and platform-specific React Native code.
Why use it?
It turns written project conventions into a systematic review, making violations easier to find when starting, reviewing, or setting up a project.

Skill for Claude Code

Written for Claude Code: installed under .claude/.

This is JubaKitiashvili/everything-react-native-expo's own configuration. It tells Claude Code how to work on everything-react-native-expo itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything everything-react-native-expo configures →

Part of the erne-universal plugin — 45 skills, 12 agents shipped together

Reuse

Borrowing it

Nothing to install: this file belongs to JubaKitiashvili/everything-react-native-expo. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/JubaKitiashvili/everything-react-native-expo/main/.claude/skills/coding-standards/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/JubaKitiashvili/everything-react-native-expo

Made for: Claude Code.

Or install erne-universal, the plugin that ships this one along with the rest of its 45 skills, 12 agents.

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 coding-standards

README.md
[![agentmods](https://agentmods.dev/badge/skills/jubakitiashvili/everything-react-native-expo/coding-standards.svg)](https://agentmods.dev/skills/jubakitiashvili/everything-react-native-expo/coding-standards)
Your own site
<a href="https://agentmods.dev/skills/jubakitiashvili/everything-react-native-expo/coding-standards"><img src="https://agentmods.dev/badge/skills/jubakitiashvili/everything-react-native-expo/coding-standards.svg" alt="Measured on agentmods" height="20"></a>
Per session 15 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 618 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.00015 $0.00618
Opus 5 $0.00008 $0.00309
Sonnet 5 $0.00003 $0.00124
Haiku 4.5 $0.00002 $0.00062

Measured 8d ago against content hash 033e57a811cc, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

coding-standards 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 8d 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.

.claude/skills/coding-standards/SKILL.md · 89 lines

How it starts

The opening of the file, as written. The whole thing — 89 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Coding Standards Enforcement

You are enforcing coding standards for a React Native project. This skill turns passive rules into an active audit workflow.

When to Use This Skill

Invoke when:

  • Starting work on a new codebase
  • Reviewing code for standards compliance
  • Setting up a new project's conventions

Audit Process

Step 1: Detect Project Configuration

Read the project's .claude/rules/ to understand which standards apply:

  • common/ rules always apply
  • expo/ rules if Expo managed project
  • bare-rn/ rules if bare React Native
  • native-ios/ if iOS native code present
  • native-android/ if Android native code present

Step 2: Scan for Violations

Check each category systematically:

Component Structure:

  • Functional components only (no class components)
  • Named exports (not default exports)
  • Props interface defined above component
  • Proper TypeScript types (no any)

Styling:

  • Consistent styling approach (StyleSheet.create, NativeWind, or project's chosen styling system)
  • Consistent color usage (design tokens, not hex literals)
  • Responsive design using the project's styling system
  • Dark mode support via appropriate mechanism

State Management:

  • Zustand for client state (no Redux, no Context for global state)
  • TanStack Query for server state (no manual fetch+useState)
  • No prop drilling beyond 2 levels
  • Computed values derived, not stored

Navigation:

  • Expo Router file-based routing
  • Typed routes using href type safety
  • Proper layout files (_layout.tsx)
  • Deep linking configured

Performance:

  • FlashList for lists (not FlatList)
  • expo-image for images (not Image)
  • Memoization where appropriate (useMemo, useCallback)
  • Animations on UI thread (Reanimated worklets)

Testing:

  • Tests exist for new code
  • Tests use RNTL (not Enzyme)
  • Tests test behavior, not implementation
  • Mock at boundaries only

Read the full file on GitHub · 89 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. 8d ago First seen · 89 lines · 15 tokens per session scan A 033e57a811cc

Subscribe to this mod's changes

coding-standards is a skill published in the GitHub repository JubaKitiashvili/everything-react-native-expo (44 stars, last pushed 5mo ago), licensed MIT. It adds 15 tokens to every session and 618 once invoked, about $0.0001 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.

Related

Other skills, from other repositories

accessibility-cleanup

Finds common violations of the Android accessibility API in the Clank App Java code and attempts to address them (e.g. hardcoded state change announcements, missing events, focus moving, assertive live regions, etc).

chromium/chromium · 49 tokens

app-store-review

Evaluates code against Apple's App Store Review Guidelines. Use this skill when reviewing iOS, macOS, tvOS, watchOS, or visionOS app code (Swift, Objective-C, React Native, or Expo) to identify potential App Store rejection issues before submission. Triggers on tasks involving app review preparation, compliance…

jacklandrin/OnlySwitch · 76 tokens

swift-concurrency-pro

Reviews Swift code for concurrency correctness, modern API usage, and common async/await pitfalls. Use when reading, writing, or reviewing Swift concurrency code.

jacklandrin/OnlySwitch · 35 tokens

swiftui-pro

Comprehensively reviews SwiftUI code for best practices on modern APIs, maintainability, and performance. Use when reading, writing, or reviewing SwiftUI projects.

jacklandrin/OnlySwitch · 36 tokens

axiom-audit-camera

Use this agent to scan Swift code for camera, video, and audio capture issues including deprecated APIs, missing interruption handlers, threading violations, and permission anti-patterns.

CharlesWiltgen/Axiom · 39 tokens

mobile-platform-offline-validate

Review a Lightning Web Component for mobile offline compatibility — the Komaci offline static analyzer that pre-primes the data graph for Salesforce Mobile App Plus and Field Service Mobile App. Produces a finding list with code-level fixes covering inline GraphQL queries in @wire configurations, modern lwc:if /…

forcedotcom/sf-skills · 207 tokens