Skip to content

Demos

Terminal recordings of create-ai-native-project in action, scripted with VHS so they stay reproducible.

Scaffolding a project

The full interactive wizard: name the project, pick a coding tool and a NestJS stack with Postgres, add GitHub Actions CI and Docker — then it composes a runnable, AI-native project in a single pass.

Interactive wizard scaffolding a NestJS + Postgres project

That run wrote 19 files, including:

PathWhat it is
CLAUDE.mdInstructions file, composed from the project type + every selection
.claude/agents/node-nest specialist + core code-reviewer and security-reviewer
.claude/skills/Core engineering-standards, knowledge-base, using-create-ai-native-project
package.json, src/, DockerfileRunnable NestJS boilerplate
docker-compose.ymlApp + Postgres services
.github/workflows/ci.ymlCI job for the NestJS app
.ai-native-project.jsonProject state, so re-runs know what's set up

See Extending a Project for what happens when you run it again in that folder.

The CLI surface

--version, --help, and the update subcommand.

Running create-ai-native-project --version and --help

Reproduce these

The recordings live in demo/ as VHS .tape scripts. With VHS installed (brew install vhs):

bash
npm run build          # tapes drive the built dist/index.js
vhs demo/help.tape     # run from the repo root
vhs demo/wizard.tape

Released under the MIT License.