Help us improve
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
Share bugs, ideas, or general feedback.
By OpenSaasAU
OpenSaaS Stack migration assistant with AI-guided configuration, schema analysis, and code generation support
npx claudepluginhub opensaasau/stack --plugin opensaas-migrationCreates comprehensive GitHub issues when bugs, improvements, or technical debt are discovered. Use when you find issues that should be tracked but are outside the scope of the current task.
OpenSaaS Stack migration expert. Use when helping users migrate from Prisma, KeystoneJS, or Next.js projects to OpenSaaS Stack. Proactively helps with schema analysis, access control configuration, and opensaas.config.ts generation.
Detailed migration patterns for Keystone virtual fields and context.graphql → context.db when migrating to OpenSaaS Stack. Invoke this skill when virtual fields or context.graphql usage is detected in a project.
Migrate context.graphql.run/raw and context.query.* calls to context.db.* across a project. Invoke as a forked subagent when these patterns are detected, passing the project root path as arguments.
Migrate Keystone document fields (@keystone-6/fields-document) to OpenSaaS Stack tiptap rich text fields. Invoke as a forked subagent, passing the config file path and document field details.
Migrate Keystone image and file fields to OpenSaaS Stack. Handles config changes and generates the database migration SQL. Invoke as a forked subagent, passing the project details.
Find and replace all @keystone-6 import paths across every file in the project. Invoke as a forked subagent, passing the project root path.
Uses power tools
Uses Bash, Write, or Edit tools
Share bugs, ideas, or general feedback.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge.
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Complete fullstack development toolkit: React, Express/FastAPI, PostgreSQL scaffolding with AI agents
Enhances Claude Code from producing raw code into delivering production-ready systems. 14 specialized agents handle architecture, tested code, security audit, CI/CD, and documentation. Use for building apps/websites/services, adding features, hardening, deployment, testing, review, or architecture design.
SaaS Builder Guide - Build production-ready SaaS from design to deployment with 11 skill guides, 5 AI agents, and beginner-friendly FAQ
Scaffold Cloudflare Workers, Hono APIs, D1/Drizzle schemas, D1 migration workflows, full-stack Vite+Workers apps, and TanStack Start SSR dashboards.
Full-stack web development with app scaffolding and page generation
Zenith (Forerunner) - Complete full-stack development and infrastructure automation. FastAPI, React/Vite, Ansible, Terraform, Kubernetes with production-ready templates and CI/CD pipelines.
Feature-driven development assistant for OpenSaaS Stack. Build complete applications by describing what you want to build instead of configuring infrastructure.
⚠️ 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