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

create-auto-app

v1.6.0

Published

Create Auto Engineer apps with no configuration

Readme

create-auto-app

CLI scaffolding tool for creating new Auto Engineer applications.


Purpose

This tool generates complete project structures with templates, dependencies, and configuration. It provides both interactive prompts and command-line options for quick project scaffolding.


Installation

# Global
npm install -g create-auto-app

# Or via npx
npx create-auto-app

Quick Start

# Step 1: Create a project
npx create-auto-app my-app

# Step 2: Navigate and install
cd my-app
pnpm install

# Step 3: Run
pnpm dev

How-to Guides

Create with Template

create-auto-app my-shop --template=kanban-todo

Create Minimal Project

create-auto-app my-app --preset=minimal

Scaffold in Current Directory

create-auto-app . --preset=full

Use Specific Package Manager

create-auto-app my-app --use-pnpm
create-auto-app my-app --use-yarn
create-auto-app my-app --use-npm

Skip Dependency Installation

create-auto-app my-app --no-install

Configure for CI/CD

create-auto-app my-app --preset=full --no-install --use-pnpm

CLI Reference

Commands

create-auto-app [project-name]

Create a new Auto Engineer project.

create-auto-app [project-name] [options]

| Option | Alias | Type | Default | Description | |--------|-------|------|---------|-------------| | --template | -t | string | - | Use a specific template | | --preset | -p | string | full | Package preset (minimal, full) | | --no-install | - | boolean | false | Skip dependency installation | | --use-npm | - | boolean | false | Force npm | | --use-yarn | - | boolean | false | Force yarn | | --use-pnpm | - | boolean | false | Force pnpm |

Available Templates

| Template | Description | |----------|-------------| | questionnaires | Survey and questionnaire management system | | kanban-todo | Kanban-style todo list with drag-and-drop |

Presets

| Preset | Description | |--------|-------------| | minimal | Narrative and server generator only | | full | All Auto Engineer packages |


Troubleshooting

Directory Already Exists

Symptom: Error about existing directory

Cause: Project directory already exists with files

Solution:

# Overwrite existing directory
create-auto-app my-app --force
# Or choose a different name
create-auto-app my-new-app

Template Not Found

Symptom: Template not recognized

Cause: Invalid template name

Solution:

# List available templates
create-auto-app --help
# Use valid template name
create-auto-app my-app --template=kanban-todo

Package Manager Not Found

Symptom: Installation fails

Cause: Specified package manager not installed

Solution:

# Install pnpm
npm install -g pnpm
# Then create project
create-auto-app my-app --use-pnpm

Enable Debug Logging

DEBUG=create-auto-app:* create-auto-app my-app

Architecture

src/
├── index.ts
├── templates.ts
├── project.ts
└── utils.ts
templates/
├── kanban-todo/
└── questionnaires/

Generated Project Structure

my-app/
├── narratives/
├── .context/
├── server/
├── client/
├── auto.config.ts
├── package.json
├── pnpm-workspace.yaml
└── .gitignore

Dependencies

| Package | Usage | |---------|-------| | @auto-engineer/id | Generate unique project IDs | | commander | CLI argument parsing | | inquirer | Interactive prompts | | chalk | Terminal styling | | ora | Loading spinners | | execa | Execute shell commands | | fs-extra | File system operations |