agentsclimarketplace

Saas init

Skill GlamgarOnDiscord/claude-saas-blueprint/.claude/skills/saas-init

Bootstrap complet d'un projet SaaS from scratch. Système de Q/R interactif pour configurer chaque aspect.From its SKILL.md

Install
npx -y skills add GlamgarOnDiscord/claude-saas-blueprint --skill saas-init

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

3.4 KB, 985 tokens by cl100k_base, as published. Nobody here has run it

Instructions

Phase 0 — Interview Projet (Q/R obligatoire)

Utiliser AskUserQuestion pour chaque question. Ne RIEN supposer.

Question 1 — Type de projet :

  • SaaS B2B (Recommandé)
  • SaaS B2C
  • Marketplace
  • API / Backend only

Question 2 — Framework :

  • Next.js 15 (Recommandé)
  • Remix
  • Nuxt 4
  • SvelteKit
  • FastAPI + React/Vue

Question 3 — Base de données :

  • PostgreSQL + Drizzle (Recommandé)
  • PostgreSQL + Prisma
  • Supabase (inclut auth + storage)
  • MongoDB + Mongoose

Question 4 — Auth :

  • Auth.js v5 (Recommandé)
  • Clerk (rapide mais payant)
  • Supabase Auth
  • Better Auth
  • Custom (JWT + sessions DB)

Question 5 — Paiements :

  • Stripe (Recommandé)
  • Lemonsqueezy (simple, Merchant of Record)
  • Pas encore

Question 6 — UI :

  • shadcn/ui + Tailwind (Recommandé)
  • Radix + Tailwind
  • Mantine
  • Material UI

Question 7 — Déploiement :

  • Vercel (Recommandé)
  • Railway
  • Docker + VPS (Coolify/Dokku)
  • AWS (ECS/Lambda)

Question 8 — Package Manager :

  • pnpm (Recommandé)
  • bun
  • npm
  • yarn

Question 9 — Extras : (multiSelect)

  • Email transactionnel (Resend)
  • File upload (UploadThing / S3)
  • Real-time (WebSockets / SSE)
  • Background jobs (Inngest / BullMQ)
  • Analytics (PostHog / Plausible)
  • Monitoring (Sentry)
  • AI features (Vercel AI SDK)

Question 10 — MCP Servers : (multiSelect)

  • Context7 — Docs à jour (Recommandé)
  • Playwright — E2E testing
  • Sequential Thinking — Raisonnement structuré
  • Aucun pour l'instant

Phase 1 — Scaffolding

  1. Initialiser avec le CLI officiel du framework choisi
  2. Créer la structure hexagonale :
    src/core/entities/  src/core/usecases/  src/core/ports/
    src/adapters/db/    src/adapters/api/   src/adapters/auth/
    src/shared/         src/config/
    
  3. Configurer imports absolus (@/), TypeScript strict, ESLint, Prettier
  4. Créer .env.example avec toutes les variables
  5. Initialiser git + .gitignore
  6. Installer les dépendances extras choisies (Q9)

Phase 2 — Fondations SaaS

  1. Schema DB de base :
    • users (id UUID v7, email, name, role, avatarUrl, createdAt, updatedAt, deletedAt)
    • organizations (id, name, slug unique, plan, createdAt, updatedAt, deletedAt)
    • memberships (userId, organizationId, role enum)
  2. Provider auth choisi + middleware protection
  3. Logger structuré (pino)
  4. Pattern réponse API : { data, error, meta }
  5. Error types de base : NotFoundError, UnauthorizedError, ValidationError

Phase 3 — DX Setup

  1. Scripts : dev, build, test, lint, db:push, db:studio, db:seed
  2. Configurer vitest avec coverage
  3. Tests de base : health check, auth flow
  4. Seed de dev avec données de test

Phase 4 — Finalisation

  1. Installer MCPs choisis (Q10) dans .claude/mcp/config.json
  2. Sauver stack dans .claude/memory/stack.md
  3. Mettre à jour .claude/memory/session.md
  4. Créer ADR 0001 documentant les choix techniques
  5. Afficher récap : stack, structure, prochaines étapes

Post-Init — Suggestions

Proposer à l'utilisateur :

  • "Voulez-vous que je génère une landing page ? → /ui landing"
  • "Voulez-vous configurer le CI/CD ? → /deploy-check"
  • "Voulez-vous ajouter une feature ? → /feature [description]"
  • "Voulez-vous un PRD complet ? → /prd brainstorm"

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Gives 0 of the 12 instructions most project setup skills give in 985 tokens

Counted across 999 of the 1,637 authors here whose files we hold, read 2026-08-07

  • Ask one question at a timein 29 of 999, across 28 files
  • Detect the package manager from lockfilesin 28 of 999, across 9 files
  • Present findings to the userin 26 of 999, across 5 files
  • Explore current repo statein 24 of 999, across 3 files
  • Update the agent skills block in place if it existsin 24 of 999, across 3 files
  • Install husky lint-staged and prettierin 23 of 999, across 4 files
  • Create the lintstagedrc filein 22 of 999, across 3 files
  • Commit all changed filesin 22 of 999, across 3 files
  • Run lint-staged to verify it worksin 22 of 999, across 3 files
  • Create the husky pre-commit filein 21 of 999, across 2 files
  • Create a prettierrc file if missingin 21 of 999, across 2 files
  • Initialize huskyin 21 of 999, across 2 files

Said here and by no other author read

  • assume nothing about project requirements
  • initialize the project using the framework CLI
  • create the hexagonal folder structure
  • configure absolute imports typescript eslint and prettier
  • create the base SaaS database schema
  • set up vitest with code coverage

Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.

Keep looking

Skills are one crate of 326,871. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.