npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

sensara

v2.2.0

Published

AI-assisted Expo React Native app development — Max or Min mode

Downloads

402

Readme

sensara

Build Expo React Native apps with AI agents. Choose your workflow:

  • Max — Persistent Claude Code teammates that message each other, accumulate context, and fix issues directly
  • Min — Ephemeral builder/validator subagents spawned fresh per task

Both modes scaffold your project with skills, prompts, docs, and validation scripts optimized for the Convex + Expo + NativeWind stack.

Quick Start

npx sensara init --max
# or
npx sensara init --min

Then set up the Convex MCP and start building:

claude mcp add-json convex '{"type":"stdio","command":"npx","args":["convex","mcp","start"]}'
claude mcp get convex
claude

Modes

Max (--max)

Spawns persistent AI teammates that coordinate through direct messaging. Each teammate owns specific directories and accumulates context across tasks. A reviewer validates all work and messages builders directly to fix issues.

Default team: backend-builder, mobile-builder, reviewer

Workflow: /idea-to-spec/plan-for-team/create-expo-team

Min (--min)

Spawns ephemeral builder/validator agent pairs per task. Each agent starts fresh with only its task context. Validators are active — they create fix tasks and spawn new builders on failure.

Workflow: /idea-to-spec/planning-with-agents/build-from-plan

Commands

sensara init [path] --max      # Bootstrap Max mode (persistent agent teams)
sensara init [path] --min      # Bootstrap Min mode (ephemeral agents)
sensara update [path]          # Update skills/prompts/docs (auto-detects mode)
sensara info [path]            # Show mode + version

init copies shared templates (docs, scripts, skills) plus mode-specific files. It skips user-request.md and settings.local.json if they exist, and writes .sensara suffixed copies of CLAUDE.md and settings.json if those already exist.

update overwrites updatable paths (skills, docs, scripts, prompts) while preserving your CLAUDE.md, settings.json, and specs.

What Gets Scaffolded

Shared (both modes):

| Path | Contents | |------|----------| | .claude/skills/idea-to-spec/ | Transform app idea into complete spec | | .claude/settings.local.json | Pre-configured permissions (Convex, Expo, git) | | docs/ | NativeWind v5 guides (6 files) | | scripts/ | Validation helpers | | specs/user-request.md | App spec template |

Max mode adds:

| Path | Contents | |------|----------| | .claude/settings.json | Agent Teams env + hooks | | .claude/skills/ | plan-for-team, create-expo-team | | prompts/ | Team lead, expo conventions, 5 teammate definitions | | CLAUDE.md | Team protocols and communication format |

Min mode adds:

| Path | Contents | |------|----------| | .claude/settings.json | Pre/Post/Stop hooks | | .claude/agents/ | builder, validator, plan-validator | | .claude/hooks/ | Post-tool-use validation | | .claude/skills/ | build-from-plan, planning-with-agents, stack-orchestrator | | .cursor/ | Cursor IDE mirror of agents + skills | | prompts/ | Orchestrator templates | | CLAUDE.md | Subagent workflow description |

Tech Stack

Every project scaffolded by sensara uses:

  • Database: Convex
  • Mobile: Expo / React Native with Expo Router
  • Styling: NativeWind v5 + Tailwind CSS v4
  • Admin: Next.js 14+ (when needed)
  • Auth: Convex Auth

Requirements

  • Node.js 18+
  • Claude Code CLI
  • For Max mode: CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS enabled (handled by scaffolded settings.json)

License

MIT