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 agentmods add rules/chohra-med/expo_boilerplate/best_practicesgit clone --depth 1 https://github.com/chohra-med/expo_boilerplateWhat 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 | $0.00000 | $0.00436 |
| Opus 5 | $0.00000 | $0.00218 |
| Sonnet 5 | $0.00000 | $0.00087 |
| Haiku 4.5 | $0.00000 | $0.00044 |
Grade A, and why
best_practices 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 yesterday.
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
Advanced Best Practices
🔴 Error Handling & Observability
1. API Error Handling
- Never allow API failures to crash the app or fail silently.
- When calling RTK Query mutations, handle
.unwrap()errors orisRejectedWithValuereliably. - Use explicit
try/catchand fire user-facing toasts (e.g., viareact-native-toast-message) on failure.
2. Global Error Boundaries
- Since
react-native-error-boundaryis installed, ensure that any major rendering block is wrapped where appropriate. - Log fatal crashes to the logging service before presenting the fallback UI.
🟢 Environment Variables & Secrets
- Never use
process.envscattered across components. - Validate environment variables at startup. Use
zodto schemas in a central config file (e.g.,src/config/env.ts) so missing or invalid keys throw an immediate exception. - Never commit
.envor credentials. UseExpo Secure Storefor user session tokens or keys, neverMMKVfor sensitive data.
🚀 Performance & Reanimated
1. Animations with Reanimated 4
- Differentiate between the UI thread and the JS Thread. Use
runOnJSwhen invoking state changes from a worklet. - Avoid passing massive objects to worklets; pick out primitive dependencies.
2. Image Loading
- Prefer
Expo Imageover standard React NativeImagefor aggressive caching and memory performance, especially inFlashListcomponents.
♿ Accessibility (A11y)
All UI elements must be accessible.
- Pass
accessibilityRole="button"andaccessibilityLabelto all custom touchables. - Account for scaling text. Since we use Restyle, configure typography variants to respect dynamic font types cleanly without breaking layout.
- Use
accessibilityStatedynamically (e.g.,selected,disabled) so screen readers announce correct context.
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.
- yesterday First seen · 40 lines · 436 tokens per session scan A 9796a4af510c
best_practices is a cursor rule published in the GitHub repository chohra-med/expo_boilerplate (32 stars, last pushed 11d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 436 tokens. 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 cursor rules, from other repositories
coding-guidelines
React Native Expo SDK 54 project with TypeScript, Expo Router v6, Redux Toolkit, and modern development practices.
pn-blender
Blender scripting conventions: Python style for bpy, no absolute paths, consistent naming, Geometry Nodes scripting, extension manifest. Use when editing Blender Python scripts, add-ons, or Geometry Nodes setups.
cursorrules
You are working with a React Native (Expo) architecture reference project. Read the skill files before generating any code.
engine-internals
Coding Agent engine implementation details (Cursor + Claude Code) — reference when modifying engine.ts or debugging Agent behavior.
quality
Code quality checklist and anti-patterns to avoid before shipping.
ai-collaboration
Instructions for AI agent code generation workflow.