Thanks for this library — it’s been really useful. I noticed the recommended onboarding flow is to clone/copy a template Git repository. In practice this feels a bit heavy and easy to drift over time (manual syncing, cleanup of git history/remotes, and lots of small edits for project/package naming).
Would you consider providing an official CLI scaffold instead? For example:
npm create <project> / npx create-<project>
- or
npx <package> init
A minimal version could prompt for project name (and a few options), generate the files, optionally install deps, and print next steps. This would make repeated project creation and automation much smoother, while the template repo could still remain the source of truth (packaged/versioned alongside releases)
Happy to help with a PR or discuss scope. Thanks!