> ## Documentation Index
> Fetch the complete documentation index at: https://veryfront.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Getting started

> Build and deploy your first Veryfront app.

## Before you start

Be familiar with TypeScript and React. Have Node.js, Deno, or Bun installed,
plus a code editor and terminal. AI know-how is not required.

## Contents

| Page                                                     | Goal                                       |
| -------------------------------------------------------- | ------------------------------------------ |
| [Quickstart](/code/getting-started/quickstart)           | Build the first app end-to-end.            |
| [Installation](/code/getting-started/installation)       | Install the CLI or framework.              |
| [Create project](/code/getting-started/create-project)   | Scaffold and run a project.                |
| [Create agent](/code/getting-started/create-agent)       | Define and invoke an agent.                |
| [Create API](/code/getting-started/create-api)           | Expose the agent route.                    |
| [Create frontend](/code/getting-started/create-frontend) | Add a chat UI for the agent.               |
| [Coding agents](/code/guides/coding-agents)              | Connect an editor agent to the dev server. |
| [Deploy project](/code/getting-started/deploy-project)   | Build and ship the project.                |

## CLI workflow

Use the CLI for the normal project loop:

```bash theme={null}
npm create veryfront
cd <PROJECT_NAME>
veryfront dev
```

Use `veryfront generate <type> <name>` to add routes, components, and AI
primitives. Use `veryfront schema --json` when a human or coding agent needs the
current command schema.

## Coding-agent workflow

Starter projects include `AGENTS.md`. Coding agents should read it first, then
connect to the development MCP server started by `veryfront dev` and call
`vf_bootstrap` once at session start. Use
[Coding agents](/code/guides/coding-agents) for Claude Code, Cursor, Codex, and
other MCP-aware clients.
