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

@creatorem/cli

v1.0.7

Published

CLI tool for the Creatorem SaaS Kit

Readme

Creatorem CLI

@creatorem/cli is the automation layer for shaping Creatorem projects fast.

It can:

  • scaffold a full monorepo from template (create)
  • add or edit a dashboard app (create-dashboard)
  • add or edit a mobile app (create-mobile)
  • strip unused features cleanly across app + repo scope
  • generate schemas and migrations from setup/schema folders (generate-sql)

Why this CLI is powerful

  • Feature-driven architecture control: keep only the modules you want.
  • Deep cleanup: not just UI toggles; removes imports, routes, config, files, package deps, and (optionally) repo-level kit/supabase assets.
  • Template auto-selection: automatically uses premium template when access exists, otherwise OSS.
  • Multi-app orchestration: in one flow you can decide marketing/dashboard/mobile/example composition.
  • Language bootstrap: manages locales and language config files.
  • Machine-readable metadata: writes selection manifests to .creatorem/.

Commands

creatorem create
creatorem create-dashboard <name>
creatorem create-mobile <name>
creatorem generate-sql [mode] [args]
creatorem generate-migration [args] # alias
creatorem generate-schemas [args]   # alias
creatorem help

Key options

These are primarily relevant for create-dashboard and create-mobile:

  • --features <comma-separated-keys>: keep only these feature keys
  • --edit: edit the current app in place (inside existing monorepo)
  • --repo-scope: also remove repo-level feature assets (kit/*, supabase schemas, workspace deps)

Examples:

creatorem create-dashboard my-dashboard --features ai,keybindings
creatorem create-dashboard --edit --features ai,analytics,monitoring --repo-scope
creatorem create-mobile my-mobile --features organization,onboarding
creatorem create-mobile --edit --features notification --repo-scope

Selectable features

Dashboard (create-dashboard)

Feature keys accepted by --features:

  • organization
  • keybindings
  • analytics
  • monitoring
  • ai
  • notification
  • billing
  • content-type
  • onboarding
  • email-templates
  • emailer

What each feature includes:

  • organization: org/member/role management and org-aware hooks/components
  • keybindings: keyboard shortcut model + settings UI + hooks
  • analytics: Google Analytics / Umami integration
  • monitoring: Sentry instrumentation integration
  • ai: AI chat UI, tools integration, usage/wallet tracking
  • notification: notification UI + DB router integration
  • billing: Stripe/Lemon Squeezy + billing settings + wallet/subscription flows
  • content-type: premade table-oriented UI + command/search helpers
  • onboarding: post-signup onboarding flow
  • email-templates: React Email templates module
  • emailer: transactional email providers (Nodemailer, Postmark, Resend, Sendgrid)

Mobile (create-mobile)

Feature keys accepted by --features:

  • organization
  • notification
  • onboarding

What each feature includes:

  • organization: org/member/role management + org hooks
  • notification: mobile notification UI + related backend router wiring
  • onboarding: post-signup onboarding flow for mobile

Customization matrix

create (full monorepo wizard)

You can customize:

  • project name
  • git initialization
  • include/exclude apps: marketing, dashboard, mobile
  • per-app feature sets (dashboard + mobile)
  • include example apps (detected from template repo)
  • language set:
    • English always included
    • French selectable by default
    • extra custom language codes (comma-separated)

It also:

  • updates locale directories from en templates
  • updates packages/shared/src/config/defined-languages.ts
  • updates mobile i18n config based on selected languages/features
  • writes root manifest at .creatorem/monorepo.json

create-dashboard / create-mobile

Modes:

  • inside existing monorepo: copies from apps/dashboard or apps/mobile, or edits in place with --edit
  • outside monorepo: clones template, keeps relevant apps, applies cleanup, and outputs a trimmed monorepo

Additional behavior:

  • generates .env.template (and .env when appropriate) from app envs.ts
  • writes app-level manifest .creatorem/features.json
  • with --repo-scope, also removes repo-level feature assets and uninstalls related workspace dependencies

SQL generators

generate-sql

  • Modes:
    • schemas (generate-sql schemas [input] [output])
    • migration (generate-sql migration [setupInput], default mode)
  • Schemas mode input:
    • JSON string, or
    • path to setup.json, or
    • directory containing setup.json (default: .creatorem)
  • Schemas mode output directory:
    • default: supabase/app-schemas
    • optional second arg for custom output path
  • Schemas mode also copies extra SQL files from <inputDir>/schemas when present

Migration output (default generate-sql mode)

  • Combines SQL from:
    • supabase/schemas
    • supabase/app-schemas
  • Produces:
    • supabase/migrations/<timestamp>_generated_from_schemas.sql
  • Replaces previous generated migration files with fresh output.