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

# Start Here

> Unified AiOS onboarding entry covering install, bootstrap, first application delivery, and first agent command.

# Start Here

## Audience

This page is for developers, implementers, and evaluators touching AiOS for the first time.

## Goal and Scope

This page helps you build the minimum working mental model:

1. how AiOS starts and enters bootstrap
2. how to complete a first application delivery
3. how to understand the current bootstrap entry and future Agent/CLI direction

## Core Concepts

* public docs are organized by user intent rather than historical product lines
* the single-binary entry exists for install/bootstrap, not as the final formal runtime
* application delivery, agent access, and operations all share the same control-plane capabilities

## Recommended Reading Order

1. [Install Entry](/en/getting-started/install)
2. [Local PostgreSQL Development Setup](/en/getting-started/local-postgres-dev)
3. [Bootstrap: Light Mode](/en/getting-started/bootstrap-light-mode)
4. [Bootstrap: Full Mode](/en/getting-started/bootstrap-full-mode)
5. [Deploy Your First App](/en/getting-started/deploy-first-app)
6. [First Agent Command](/en/getting-started/first-agent-command)

## Current Startup Example

Terminal A:

```bash theme={null}
go run ./cmd/aios
```

Terminal B:

```bash theme={null}
curl http://localhost:8080/healthz
curl http://localhost:8080/readyz
```

If you want a local development loop backed by external state, start with [Local PostgreSQL Development Setup](/en/getting-started/local-postgres-dev) before launching the server.

Commands such as `aios app up` and `aios approval request` are not implemented in the repository today. When public docs retain those examples, they must be treated as future CLI direction only.

## Web UI Path

* install wizard
* application creation wizard
* task center and approval center

## Pitfalls / Risk Notes

* single-binary startup is not the final production runtime model
* application delivery and agent commands do not bypass the unified guardrail chain

## Related Pages

* [Platform Overview](/en/platform/index)
* [Agent Overview](/en/agent/index)
* [Operations Overview](/en/operations/index)
