🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

stora-sh

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stora-sh

Mobile app store automation platform - Screenshots, ASO, Compliance, and Deployment

latest
Source
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

Stora

The intelligent mobile app deployment tool.

CI npm version License: MIT

Features

  • AI-Powered Screenshots - Agentic exploration of your app to capture App Store-ready screenshots
  • Compliance Checking - Validate your app against App Store and Play Store guidelines
  • AI Analysis - Uses Google Gemini for intelligent automation
  • Cross-Platform - Works with iOS and Android apps
  • Modular - Use individual packages or the full CLI

Quick Start

# Install globally
npm install -g stora-sh

# Capture screenshots (requires Maestro CLI and running simulator)
stora screenshots com.example.app --max-screenshots 10

# Check compliance
stora compliance ./my-app --platform ios

# Verify setup
stora doctor

Requirements

  • Node.js 18+
  • Maestro CLI - Install Maestro
  • Google AI API Key - Set GOOGLE_GENERATIVE_AI_API_KEY environment variable
  • Running iOS Simulator or Android Emulator with your app installed

CLI Commands

stora screenshots <bundleId>

Capture App Store-ready screenshots using AI-powered exploration.

stora screenshots com.example.app
stora screenshots com.example.app --max-screenshots 10 --output ./screenshots
stora screenshots com.example.app --max-steps 30 --model gemini-2.0-flash

Options:

OptionDefaultDescription
--max-steps <n>50Maximum exploration steps
--max-screenshots <n>10Target number of screenshots
--output <path>./store-screenshotsOutput directory
--save-evalfalseSave evaluation screenshots for debugging
--model <model>gemini-2.0-flashAI model to use

stora compliance [path]

Check your app for compliance issues before submission.

stora compliance ./my-app
stora compliance ./my-app --platform ios
stora compliance ./my-app --platform android --no-ai
stora compliance --strict

Options:

OptionDefaultDescription
-p, --platform <platform>bothTarget platform (ios, android, both)
--no-aifalseDisable AI-powered analysis
--strictfalseUse strict checking mode

stora doctor

Check if all dependencies are installed correctly.

stora doctor

Packages

Use the CLI for the full experience, or install individual packages for programmatic use:

PackageDescriptionInstall
stora-shMain CLI toolnpm i -g stora-sh
@stora/screenshotsAI screenshot automationnpm i @stora/screenshots
@stora/complianceCompliance checkingnpm i @stora/compliance
@stora/sharedShared utilitiesnpm i @stora/shared

Environment Variables

# Required for AI features
export GOOGLE_GENERATIVE_AI_API_KEY=your-api-key

Development

# Clone the repo
git clone https://github.com/storasource/stora.git
cd stora

# Install dependencies
pnpm install

# Build all packages
pnpm build

# Run development mode
pnpm dev

Project Structure

stora/
├── apps/
│   └── cli/              # stora-sh CLI package
├── packages/
│   ├── screenshots/      # @stora/screenshots
│   ├── compliance/       # @stora/compliance
│   ├── shared/           # @stora/shared
│   ├── aso/              # @stora/aso (in development)
│   ├── analyzer/         # @stora/analyzer (in development)
│   ├── deployment/       # @stora/deployment (in development)
│   ├── build/            # @stora/build (in development)
│   └── assets/           # @stora/assets (in development)
├── docs/                 # Documentation
└── .github/workflows/    # CI/CD

License

MIT

FAQs

Package last updated on 07 Jan 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts