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

# dome quickstart

> Scaffold a new Dome-enabled project

##

`dome quickstart [name]`

Creates a new project directory with Dome SDK integration, starter rules, and configuration.

```bash theme={"system"}
dome quickstart my-agent-project
```

| Flag                | Type   | Default | Description                        |
| ------------------- | ------ | ------- | ---------------------------------- |
| `--language`        | string | `go`    | Project language (supported: `go`) |
| `--non-interactive` | bool   | false   | Skip confirmation prompts          |

### Generated Files

| File           | Description                           |
| -------------- | ------------------------------------- |
| `main.go`      | Entry point with Dome SDK integration |
| `go.mod`       | Go module definition                  |
| `dome.yaml`    | Dome configuration                    |
| `.env.example` | Environment variable template         |
| `Dockerfile`   | Container build definition            |
| `rules.cedar`  | Starter authorization rules           |
