create-weysabi-app
v0.15.0
Published
Scaffold a new Weysabi AI application
Readme
create-weysabi-app
Scaffold a new Weysabi AI application in seconds.
bunx create-weysabi-app my-ai-appUsage
bunx create-weysabi-app <project-name> [options]Options
| Option | Description |
| ----------------------- | ------------------------------------ |
| -t, --template <name> | Project template (default: server) |
| --no-install | Skip dependency installation |
| -v, --version | Print the version |
| -h, --help | Show help |
Templates
| Template | Description |
| ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------- |
| server | Bun + Hono HTTP server with the full Weysabi server (guardrails, rate limiting, audit logging, admin API, control plane). Best for production self-hosting. |
| nextjs | Next.js 15 app with App Router, React 19, Tailwind CSS v4, and Weysabi integrated as the AI layer. Best for full-stack apps. |
| tanstack | TanStack Start + Weysabi project with file-based routing and server functions. Best for TanStack ecosystem users. |
| agent | Minimal agent project with tool calling and structured output via Zod, ready to extend. Best for agent-focused apps. |
Examples
Create a server project
bunx create-weysabi-app my-server --template server
cd my-server
bun run devCreate a Next.js project
bunx create-weysabi-app my-webapp --template nextjs
cd my-webapp
bun run devCreate an agent project without installing deps
bunx create-weysabi-app my-agent --template agent --no-install
cd my-agent
bun installRequirements
- Bun >= 1.3.1
License
MIT
