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.
curl -O https://raw.githubusercontent.com/JubaKitiashvili/everything-react-native-expo/main/.claude/agents/feature-builder.mdgit clone --depth 1 https://github.com/JubaKitiashvili/everything-react-native-expoWrote 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/agents/jubakitiashvili/everything-react-native-expo/feature-builder)<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>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.00043 | $0.01397 |
| Opus 5 | $0.00022 | $0.00698 |
| Sonnet 5 | $0.00009 | $0.00279 |
| Haiku 4.5 | $0.00004 | $0.00140 |
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.
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
- Receive scoped task — One screen, one hook, one module at a time
- Check dependencies — Verify types, API contracts, and shared state are defined
- Implement — Write the code with all states handled (loading, error, empty, success)
- Type everything — Explicit return types, param interfaces, no
any - Handle edges — Null checks, empty arrays, network failures, platform differences
- Deliver — Complete file ready to integrate
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.
- 8d ago First seen · 146 lines · 43 tokens per session scan A 82fc9d03bb18
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.
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…
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)…
frontend-engineer
Frontend/Mobile Engineer. Implements UI, app logic, API integration. Follows Clean Architecture.
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…
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.
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.