# create-eve

The `pnpm create eve` launcher for [Eve](https://github.com/vercel/eve). It runs `eve init` with every argument forwarded:

```bash
npm create eve@latest my-agent
pnpm create eve my-agent
yarn create eve my-agent
```

Each is `eve init my-agent` run through that package manager, and the scaffolded project belongs to the manager that launched the command: `npm create eve` produces an npm project, `pnpm create eve` a pnpm one, `yarn create eve` a yarn one.

All `eve init` flags pass through, e.g.:

```bash
pnpm create eve my-agent --channel-web-nextjs
```
