create-orbit-app
v0.6.0
Published
Create a new Orbit project
Downloads
51
Maintainers
Readme
create-orbit-app
Scaffold a new Orbit project with one command.
Part of the Orbit frontend toolkit — designed so that AI-generated code and human-written code always look the same.
Usage
pnpm create orbit-app my-appThe CLI will prompt you to choose an AI instructions file:
- CLAUDE.md — For Claude Code
- AGENTS.md — For other AI coding tools
- None — Skip AI instructions
Then it sets up the project, installs dependencies, and initializes git.
Non-interactive mode
pnpm create orbit-app my-app --agent claudeOptions for --agent: claude, agents, none
What you get
my-app/
├── src/
│ ├── routes/ → File-based routing (page.tsx, hooks.ts, server.ts, schema.ts)
│ └── ...
├── vite.config.ts → Vite+ with orbit-router, orbit-query, orbit-form, orbit-rpc
├── tsconfig.json
├── CLAUDE.md → AI instructions (if selected)
└── package.jsonIncluded packages
- orbit-router — Directory-based routing with typed params
- orbit-query — Data fetching + caching
- orbit-form — React Compiler compatible forms with Zod validation
- orbit-rpc — server.ts to Hono RPC conversion
- Tailwind CSS
Next steps
cd my-app
pnpm devOpen http://localhost:5173 and start building.
License
MIT
