React Native/Expo向け7エージェントプロダクションツールキット。Design Token Guardianがハードコードされた色やスペーシングを検出しトークン使用を強制(不整合85%削減)。A11y Compliance Enforcerが WCAG 2.2を検証。
🌟 Created by SenaiVerse
Your complete AI-powered development toolkit for React Native mobile apps
Quick Start • Documentation • Installation • What You Get • Real-World Impact • [...]
A production-ready system of 7 core AI agents (20-agent design) + 3 slash commands + automation hooks for building React Native mobile apps faster with fewer bugs.
📱 Built specifically for React Native/Expo mobile development. While the system can be adapted for other frameworks, all agents, prompts, and workflows are optimized for iOS/Android mobile development.
Built for:
As a developer building production Expo/React Native apps, I faced recurring challenges that slowed development and caused production issues:
The Problems:
The Solution: Instead of relying on manual checks and memory, I built a systematic, AI-powered approach using Claude Code's agent system.
What This Represents:
The Result: A complete agent system that catches issues before code review, ensures accessibility compliance, prevents version conflicts, and maintains performance budgets automatically.
This isn't theoretical - it's battle-tested on production apps with 10K+ users.
Core Technologies:
AI & Automation:
Target Environment:
Development Tools:
Key Skills Demonstrated:
👉 START-HERE.md - 5-minute quick start guide
Choose your platform:
macOS/Linux:
cd claude-code-expo-system/scripts
chmod +x ./install-agents.sh
./install-agents.sh
Windows:
cd claude-code-expo-system\scripts
.\install-agents.ps1
It will ask you:
Or skip prompts with parameters:
# Force project scope (no prompts)
./install-agents.sh --scope project
# Force global scope (no prompts)
./install-agents.sh --scope global
cd /path/to/your/expo-project
claude
> Check accessibility of my components
| File | Purpose | Read Time |
|---|---|---|
| START-HERE.md | Quick start guide | 5 min |
| COMPLETE-GUIDE.md | Full reference manual | 30-60 min |
| PLATFORM-SPECIFIC-SETUP.md | OS-specific troubleshooting | 10-15 min |
These cover 80% of daily mobile development needs:
Tier S: Meta Orchestration
Tier 1: Daily Workflow (Essential)
Tier 2: Power Agents (Game-Changing)
The complete 20-agent system design includes 13 more specialized agents you can create as needed:
See ready-to-use/agents/AGENTS-REFERENCE.md for creation templates.
/feature - Multi-agent feature implementation workflow/review - Comprehensive code review (design + a11y + security + performance)/test - Generate test suite with edge casesCreate additional custom commands as needed.
CLAUDE.md - Project context templatesettings.json - Global/project configurationBased on production usage:
Time Savings:
Quality Improvements:
Business Value:
claude-code-expo-system/
├── README.md ← You are here
├── START-HERE.md ← Read this first
├── COMPLETE-GUIDE.md ← Full documentation
├── PLATFORM-SPECIFIC-SETUP.md ← OS-specific guides
│
├── ready-to-use/
│ ├── agents/ ← 20 agent configurations
│ │ ├── tier-s-meta/
│ │ ├── tier-1-daily/
│ │ ├── tier-2-power/
│ │ └── tier-3-specialized/
│ │
│ ├── commands/ ← 3 slash commands
│ │ ├── feature.md
│ │ ├── review.md
│ │ └── test.md
│ │
│ ├── hooks/ ← Automation hooks (optional)
│ └── templates/ ← Project templates
│ ├── CLAUDE.md
│ └── settings.json
│
└── scripts/
├── install-agents.ps1 ← Windows (PowerShell) installer
├── install-agents.sh ← macOS/Linux (Bash) installer
├── verify-before-install.sh ← Pre-flight validation
├── test-syntax.sh ← Bash syntax validation (13 tests)
└── test-consistency.sh ← Documentation consistency (7 tests)
Interactive Mode (Recommended - Easiest!)
The installer guides you through the process:
cd claude-code-expo-system/scripts
chmod +x ./install-agents.sh # Make executable (one time)
./install-agents.sh
# You'll see a menu:
# 1️⃣ Project-Scoped (team sync via git)
# 2️⃣ Global (personal use everywhere)
# Choose 1 or 2, press Enter
# If project: confirms package.json found, asks to proceed
# Installs to the correct location
Non-Interactive Mode (Skip Prompts)
Project-Scoped (Recommended for Teams)
.claude/ folder# Navigate to your Expo/React Native project
cd /path/to/your/expo-project
# Force project scope (no prompts)
/path/to/claude-code-expo-system/scripts/install-agents.sh --scope project
Global (Personal Use)
~/.claude/ folder# Force global scope (no prompts)
cd claude-code-expo-system/scripts
./install-agents.sh --scope global
Interactive Mode (Recommended - Easiest!)
The installer guides you through the process:
cd claude-code-expo-system\scripts
.\install-agents.ps1
# You'll see a menu:
# 1️⃣ Project-Scoped (team sync via git)
# 2️⃣ Global (personal use everywhere)
# Choose 1 or 2, press Enter
# If project: confirms package.json found, asks to proceed
# Installs to the correct location
Non-Interactive Mode (Skip Prompts)
Project-Scoped (Recommended for Teams)
.claude/ folder# Navigate to your Expo/React Native project
cd C:\path\to\your\expo-project
# Force project scope (no prompts)
C:\path\to\claude-code-expo-system\scripts\install-agents.ps1 -Scope project
Global (Personal Use)
~/.claude/ folder# Force global scope (no prompts)
cd claude-code-expo-system\scripts
.\install-agents.ps1 -Scope global
# If permission error:
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
Project-Scoped:
# From your Expo project root
cp -r /path/to/ready-to-use/agents/* ./.claude/agents/
cp -r /path/to/ready-to-use/commands/* ./.claude/commands/
cp /path/to/ready-to-use/templates/CLAUDE.md ./CLAUDE.md
Global:
# Install to user directory
cp -r ready-to-use/agents/* ~/.claude/agents/
cp -r ready-to-use/commands/* ~/.claude/commands/
cp ready-to-use/templates/settings.json ~/.claude/settings.json
Claude Code checks for agents in this order:
.claude/agents/ in your project) - HIGHEST priority~/.claude/agents/ in home directory) - Lower priorityHybrid Approach: You can have BOTH! Project agents override global agents with the same name.
Project-Scoped (Recommended for Teams):
Global (Personal Use):
User: "Check for hardcoded colors in my components"
→ Design Token Guardian auto-invoked
User: "@security-specialist audit the payment flow"
→ Security Specialist runs OWASP Mobile Top 10 audit
User: "/review src/screens/LoginScreen.tsx"
→ Multi-agent review (design, a11y, security, performance)
User: "I need @grand-architect to help implement offline mode"
→ Grand Architect creates plan, delegates to specialized agents
/review command/feature command~/.claude/agents/my-agent.md---
name: my-agent
description: What this agent does
tools: Read, Grep, Edit
model: sonnet
---
@my-agent [task]See COMPLETE-GUIDE.md for detailed customization instructions.
# Verify installation
ls ~/.claude/agents/
# Check agent name matches file
cat ~/.claude/agents/tier-1-daily/design-token-guardian.md
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
# Make scripts executable
chmod +x scripts/*.sh
@agent-nameFor platform-specific troubleshooting, see PLATFORM-SPECIFIC-SETUP.md
Core:
Platform-Specific:
✅ 7 core production-ready agents (80% coverage) ✅ 20-agent system design with creation templates ✅ 3 custom slash commands (expandable) ✅ Project template (CLAUDE.md) ✅ Global configuration (settings.json) ✅ Cross-platform installation scripts (Windows PowerShell + macOS/Linux Bash) ✅ Pre-flight validation and test scripts ✅ Comprehensive documentation (11 markdown files) ✅ Real-world examples and workflows ✅ Best practices guide ✅ Troubleshooting guide (40+ solutions) ✅ Customization instructions
This system represents 100+ hours of research into:
Built specifically for your stack:
Start building better apps, faster. Happy coding! 🚀
Contributions, issues, and feature requests are welcome!
How to Contribute:
git checkout -b feature/amazing-featuregit commit -m 'Add amazing feature'git push origin feature/amazing-featureGuidelines:
See CONTRIBUTING.md for detailed guidelines.
Ideas for Contributions:
This project is licensed under the MIT License - see the LICENSE file for details.
TL;DR: You can use, modify, and distribute this freely. Attribution appreciated but not required!
Why MIT?
SenaiVerse
Building AI-powered development tools that make React Native development faster, more accessible, and more reliable.
Organization:
About the Creator:
Experienced React Native developer passionate about AI-augmented development, mobile accessibility compliance, and building production-ready applications at scale. This project synthesizes 100+ hours of research into proven patterns and workflows.
Mission: Eliminate repetitive manual checks, enforce design consistency, ensure accessibility compliance, and maintain performance standards automatically—allowing developers to focus on building features that users love.
Version: 1.2.0 Last Updated: 2026-06-07 Optimized For: Claude Code v2.0.5+ • Windows/macOS/Linux • Cursor IDE • Expo SDK 50+ • React Native 0.74+
⭐ If this project helped you, please give it a star! ⭐
Built with ❤️ by SenaiVerse for the React Native community
© 2026 SenaiVerse | Claude Code Agent System v1.2.0 | AI-Powered Mobile Development Excellence
⭐ If this project helped you, please give it a star! ⭐
Built with ❤️ by SenaiVerse for the React Native community
© 2026 SenaiVerse | Claude Code Agent System v1.2.0 | AI-Powered Mobile Development Excellence
互換性
トピック