# LocalCloud docs index for agents

Use the raw Markdown routes for compact agent context, then follow canonical HTML pages for full details.

## Setup and runtime
- https://local.cloud/docs/ — quick start and docs home.
- https://local.cloud/docs/sdk-examples/ — standard Google Cloud SDK examples configured for localhost.
- https://local.cloud/docs/terraform/ — Terraform endpoint overrides and local validation flow.
- https://local.cloud/docs/seed-data/ — repeatable local data setup.
- https://local.cloud/docs/console/ — web console for local health and data inspection.

## Agent routes
- https://local.cloud/ai/agents.md — execution guide.
- https://local.cloud/ai/AGENTS.md — repository-local template.
- https://local.cloud/ai/services.md — service matrix.
- https://local.cloud/ai/compatibility.md — boundaries and validation rules.
- https://github.com/LocalStack-Google/localcloud-site/tree/main/agent-skills — portable Agent Skills package.

## Quick start
```bash
docker pull jaysen2apache/localcloud:latest
docker volume create localcloud-data

docker run -d --name localcloud \
  -p 127.0.0.1:24080-24092:24080-24092 \
  -m 4g \
  -v localcloud-data:/var/lib/localcloud \
  jaysen2apache/localcloud:latest
eval "$(localcloud env)"
curl -fsS http://localhost:24080/health
```
