WeaveKit Docs

create-weavekit-app

Scaffold a runnable WeaveKit project with an interactive CLI.

create-weavekit-app scaffolds a runnable WeaveKit project: the engine wiring, an example object with a small RBAC demo, a server entry, and an .env.example. All project operations then go through the weave CLI, which ships with @weave-kit/engine.

npm create weavekit-app my-app -- --type=agent
cd my-app
cp .env.example .env      # set DATABASE_URL
weave migrate             # schema.json -> PostgreSQL tables
weave dev                 # http://localhost:3000

See Getting started for the full walkthrough, CLI and options for the flags, Type presets to choose a starting point, and Generated project for what ends up on disk.