🎯

expo-expert

🎯Skill

from raintree-technology/claude-starter

VibeIndex|
What it does

expo-expert skill from raintree-technology/claude-starter

expo-expert

Installation

Install skill:
npx skills add https://github.com/raintree-technology/claude-starter --skill expo-expert
5
Last UpdatedJan 21, 2026

Skill Details

SKILL.md

Overview

# claude-starter

Advanced Claude Code framework with 40+ skills, meta-commands, skill orchestration, workflow automation, and TOON format support.

[![npm version](https://img.shields.io/npm/v/create-claude-starter.svg)](https://www.npmjs.com/package/create-claude-starter)

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Quick Install (npx add-skill)

Install individual skills directly:

```bash

# Token optimization

npx add-skill raintree-technology/claude-starter --skill toon-formatter

# Claude Code meta-tools

npx add-skill raintree-technology/claude-starter --skill claude-skill-builder

npx add-skill raintree-technology/claude-starter --skill claude-mcp-expert

# Blockchain

npx add-skill raintree-technology/claude-starter --skill move-prover

npx add-skill raintree-technology/claude-starter --skill helius

# List all available skills

npx add-skill raintree-technology/claude-starter --list

```

What is this?

The most advanced .claude/ configuration framework for [Claude Code](https://code.claude.com) that provides:

  • 40 Skills - Auto-activating expertise (Stripe, Supabase, Aptos, Expo, Plaid, Whop, Shopify, iOS)
  • Meta-Commands - Create custom commands from templates in <2 minutes
  • Skill Orchestration - Multi-skill collaboration with semantic matching
  • Workflow Automation - YAML-based workflows (GitHub Actions-inspired)
  • TOON Format - 30-60% token savings for tabular data
  • 14 Commands - Meta-commands, debugging, TOON, workflows
  • Templates - Build your own skills and commands

This is configuration, not code. No library, no framework, no runtime dependencies.

Installation

Option 1: NPX (Recommended)

```bash

# Install to current project

npx create-claude-starter@latest

# Install specific skills

npx create-claude-starter --skills stripe,supabase,expo

# Install with profile

npx create-claude-starter --profile web-saas

```

Option 2: Plugin Marketplace (Within Claude Code)

```bash

# Install everything

/plugin marketplace add raintree-technology/claude-starter

# Install specific categories

/plugin marketplace add raintree-technology/claude-starter/stripe-payments

/plugin marketplace add raintree-technology/claude-starter/expo-mobile

/plugin marketplace add raintree-technology/claude-starter/meta-commands

```

Option 3: Manual Copy

```bash

git clone https://github.com/raintree-technology/claude-starter.git

cp -r claude-starter/templates/.claude your-project/.claude

```

Option 4: Discover on SkillsMP

Browse 40+ skills at [SkillsMP](https://skillsmp.com/) and install individually:

```bash

/discover-skills

/install-skill

```

Usage

Skills auto-activate based on context:

```

You: "How do I create a Stripe subscription?"

Claude: [Activates Stripe skill and provides implementation]

You: "Build a Whop membership backend"

Claude: [Activates Whop and provides code]

```

Optional: Pull Documentation

Skills work immediately with built-in knowledge. Optionally pull comprehensive API docs for enhanced accuracy:

```bash

# Install docpull

brew install pipx && pipx install docpull

# Pull documentation (stored locally, never committed)

docpull https://docs.stripe.com -o .claude/skills/stripe/docs

docpull https://supabase.com/docs -o .claude/skills/supabase/docs

```

Important notes:

  • Documentation is optional - skills work without it
  • Docs are stored in .claude/skills/*/docs/ (gitignored, never committed)
  • Total size: ~8GB across all skills
  • Pulled once, persistent across sessions
  • Use CLI for easier management: npx claude-starter docs pull

Advanced: Custom doc location

```bash

# Pull to /tmp (lost on restart, auto-cleanup)

docpull https://docs.stripe.com -o /tmp/claude-docs/stripe

# Or use symlink for separation

mkdir -p ~/claude-docs/stripe

ln -s ~/claude-docs/stripe .claude/skills/stripe/docs

docpull https://docs.stripe.com -o ~/claude-docs/stripe

```

TOON Format