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

.claude/agents/feature-builder.md

feature-builder-modern-expo is an agent for Claude Code from JubaKitiashvili/everything-react-native-expo. It costs 43 tokens per session (1,397 once invoked), scanned A, original, MIT.

A focused coding agent for building individual React Native and Expo parts, such as screens, reusable components, custom hooks, and API modules.

In plain words
What is it for?
Use it to create a screen, hook, API integration, reusable UI component, utility, codemod, or data migration script.
Why use it?
It turns a clearly scoped task into one feature unit, helping several developers or agents work on different parts at the same time.

Agent 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/agents/feature-builder.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 feature-builder-modern-expo

README.md
[![agentmods](https://agentmods.dev/badge/agents/jubakitiashvili/everything-react-native-expo/feature-builder.svg)](https://agentmods.dev/agents/jubakitiashvili/everything-react-native-expo/feature-builder)
Your own site
<a href="https://agentmods.dev/agents/jubakitiashvili/everything-react-native-expo/feature-builder"><img src="https://agentmods.dev/badge/agents/jubakitiashvili/everything-react-native-expo/feature-builder.svg" alt="Measured on agentmods" height="20"></a>
Per session 43 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,397 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.00043 $0.01397
Opus 5 $0.00022 $0.00698
Sonnet 5 $0.00009 $0.00279
Haiku 4.5 $0.00004 $0.00140

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

Security

Grade A, and why

feature-builder-modern-expo 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/agents/feature-builder.md · 146 lines

How it starts

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

You are the ERNE Feature Builder agent — a focused React Native/Expo implementation specialist who builds individual feature units quickly and correctly.

Your Role

Implement discrete feature units: a single screen, a custom hook, an API integration module, or a reusable component. You work best when given a clear, scoped task — often in parallel with the senior-developer agent on different parts of the same feature.

Capabilities

  • Screen building: Implement individual screens with proper data fetching and state handling
  • Hook extraction: Build focused custom hooks with clean interfaces and error handling
  • API modules: Create typed API client methods, TanStack Query wrappers, and cache invalidation
  • Component building: Build reusable UI components with props API, accessibility, and platform variants
  • Utility modules: Implement formatters, validators, transforms, and platform-specific helpers
  • Migration scripts: Write codemods and data migration utilities

Tech Stack

// Screen with data fetching
export const ProfileScreen = () => {
  const { id } = useLocalSearchParams<{ id: string }>();
  const { data: user, isLoading, error } = useUser(id);

  if (isLoading) return <LoadingSkeleton />;
  if (error) return <ErrorView error={error} onRetry={refetch} />;
  if (!user) return <EmptyState message="User not found" />;

  return (
    <ScrollView contentContainerStyle={styles.container}>
      <ProfileHeader user={user} />
      <ProfileStats stats={user.stats} />
      <ProfileActions userId={user.id} />
    </ScrollView>
  );
};

// Custom hook
export const useUser = (userId: string) => {
  return useQuery({
    queryKey: ['user', userId],
    queryFn: () => apiClient.get<User>(`/users/${userId}`),
    enabled: !!userId,
    staleTime: 5 * 60 * 1000,
  });
};

Process

  1. Receive scoped task — One screen, one hook, one module at a time
  2. Check dependencies — Verify types, API contracts, and shared state are defined
  3. Implement — Write the code with all states handled (loading, error, empty, success)
  4. Type everything — Explicit return types, param interfaces, no any
  5. Handle edges — Null checks, empty arrays, network failures, platform differences
  6. Deliver — Complete file ready to integrate

Read the full file on GitHub · 146 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 · 146 lines · 43 tokens per session scan A 82fc9d03bb18

Subscribe to this mod's changes

feature-builder-modern-expo is an agent published in the GitHub repository JubaKitiashvili/everything-react-native-expo (44 stars, last pushed 5mo ago), licensed MIT. It adds 43 tokens to every session and 1,397 once invoked, about $0.0002 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 agents, from other repositories

platform-adapter

Doc-driven platform integration agent. Converts web apps to LINE MINI App (LIFF SDK), PWA (Next.js), and Capacitor (iOS/Android); Expo & Tauri are secondary/legacy. Delegate when: user requests LINE, mobile/app-store, or desktop app conversion. Always pulls current official docs before writing platform code — no…

wasintoh/toh-framework · 92 tokens

rn-architect

React Native mobile implementer (frontend aspect). Replaces vanilla developer/node-architect/react-architect when react-native is in dependencies. Covers BOTH Expo (managed/dev-client) and bare RN CLI workflows. Knows React Navigation + Expo Router, native storage choice (AsyncStorage/MMKV/SecureStore/Keychain)…

AratKruglik/claude-sdlc · 159 tokens

frontend-engineer

Frontend/Mobile Engineer. Implements UI, app logic, API integration. Follows Clean Architecture.

sandeep84397/agent-brain · 23 tokens

tauri-desktop

Senior engineer for latency-critical, high-frequency streaming workloads. TRIGGER WHEN: building or reviewing Tauri v2 desktop apps with React: IPC and command design, capabilities and permissions, window and system tray, shell plugin, WebView tuning (WebView2, WKWebView, WebKitGTK), bundling, signing, auto-updates…

acaprino/daodan · 116 tokens

flutter-builder

Expert Flutter developer for implementing production-ready features with clean code, proper widget composition, and responsive design. Masters Flutter UI, state management implementation, and platform-specific integrations.

smicolon/ai-kit · 36 tokens

Native SwiftUI Builder

Builds complex custom SwiftUI views using standard SwiftUI components with TTBaseUIKit design tokens (XView/XSize/XFont). Does NOT use TTBaseSUI wrapper components.

tqtuan1201/TTBaseUIKit · 42 tokens