Official OpenSaaS Stack plugin marketplace for development and migration tools
npx claudepluginhub opensaasau/stackFeature-driven development assistant for OpenSaaS Stack. Build complete applications by describing what you want to build instead of configuring infrastructure.
OpenSaaS Stack migration assistant with AI-guided configuration, schema analysis, and code generation support
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
⚠️ Work in Progress - Alpha Stage
This project is currently in active development and is in an alpha state. APIs may change in patches, and some features are still being implemented. Use in production at your own risk.
A modern stack for building admin-heavy applications with Next.js App Router, designed to be AI-agent-friendly with built-in security guardrails.
This is a monorepo containing:
packages/core: The core OpenSaas stack (config, fields, access control, generators)packages/cli: CLI tools for code generation and developmentpackages/ui: Composable React UI components (primitives, fields, standalone components, full admin UI)packages/auth: Better-auth integration for authentication and sessionspackages/mcp: Model Context Protocol server for AI assistant integrationpackages/tiptap: Rich text editor integration (third-party field example)packages/storage: Abstract storage interface for file uploadspackages/storage-s3: S3-compatible storage adapter (AWS S3, R2, MinIO, etc.)packages/storage-vercel: Vercel Blob storage adapterpackages/rag: RAG (Retrieval-Augmented Generation) integration with vector embeddings and semantic searchexamples/blog: Basic blog example demonstrating the stackexamples/custom-field: Custom field types demonstrationexamples/composable-dashboard: Composable UI components examplesexamples/auth-demo: Authentication integration with Better-authexamples/mcp-demo: MCP server integration for AI assistantsexamples/tiptap-demo: Tiptap rich text editor integrationexamples/json-demo: JSON field type demonstrationexamples/file-upload-demo: File upload and image handling with storage adaptersexamples/rag-demo: RAG integration with semantic search and embeddingsGet started with a new project in 5 minutes:
# Create a new project
npm create opensaas-app@latest my-app
cd my-app
# Install dependencies
pnpm install
# Generate Prisma schema and types
pnpm generate
# Create database
pnpm db:push
# Start dev server
pnpm dev
With authentication:
npm create opensaas-app@latest my-app --with-auth
Your app is now running at http://localhost:3000!
Visit /admin to see your auto-generated admin UI.
Ready to deploy? Follow our Deployment Guide to deploy to Vercel + Neon in ~15 minutes.
Working on the OpenSaas Stack itself? Here's how to get started:
pnpm install
# Build all packages in the monorepo
pnpm build
Choose one of the examples to get started:
cd examples/blog
# Copy environment file
cp .env.example .env
# Generate Prisma schema and types from config
pnpm generate
# Push schema to database (creates SQLite file)
pnpm db:push
# Start development server
pnpm dev
cd examples/auth-demo
# Copy environment file
cp .env.example .env
# Generate and setup database
pnpm generate
pnpm db:push
# Start development server
pnpm dev
cd examples/file-upload-demo
# Copy environment file and configure storage
cp .env.example .env
# Generate and setup database
pnpm generate
pnpm db:push
# Start development server
pnpm dev
cd examples/rag-demo
# Copy environment file and add OpenAI API key
cp .env.example .env