build-and-verify
Work from the project directory. Once eve is installed, the full docs are bundled with the installed package and match its version exactly. In most installs,…
If the user's intent is not already clear, ask the questions one at a time, use the coding harness's prompt tools when available, and do not guess.
$ npx -y skills add vercel/eve --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/collect-intentContext preview
What this command does when you run it.
If the user's intent is not already clear, ask the questions one at a time, use the coding harness's prompt tools when available, and do not guess.
If the user's intent is not already clear, ask the questions one at a time, use the coding harness's prompt tools when available, and do not guess.
1. What should the agent do? This becomes its always-on purpose. 2. Where should it be reachable? Every agent ships the built-in HTTP channel. On top of that:
Credentials run through **Vercel Connect**, which provisions the bot token and verifies inbound webhooks, so there is no `SLACK_BOT_TOKEN` or signing secret to manage. 3. Which external systems does it need programmatic read/write access to, such as Slack, Salesforce, Linear, GitHub, or your own API? Each becomes a connection under `agent/connections/`. When a system needs every end-user to sign in, wire its auth through **Vercel Connect** (`connect()` from `@vercel/connect/eve`), which handles consent, encrypted token storage, and refresh. 4. Does the user want a specific AI Gateway model or reasoning effort? If so, pass its `provider/model-id` to `eve init --model` and its reasoning effort to `--reasoning`; otherwise, use eve's defaults.
Repo: vercel/eve
Work from the project directory. Once eve is installed, the full docs are bundled with the installed package and match its version exactly. In most installs,…
The project at `{{workingDirectory}}` is already scaffolded. Work with the user to complete it, running the commands below from that directory.
eve is a filesystem-first framework for durable backend AI agents. The agent is a directory of files that eve compiles and runs: its instructions, tools,…
First settle the target: a new project, or the agent added to an existing directory? For a new project, propose a name and ask the user to confirm it; for an…
Reach for Vercel Connect for both channels and connections rather than hand-managing tokens. It is the path to a working setup out of the box. See…