> ## 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.

# 开始使用

> AiOS 的统一入门入口，覆盖安装、bootstrap、首次应用交付与首次 Agent 命令。

# 开始使用

## 适用对象

本页面面向第一次接触 AiOS 的开发者、实施人员与平台试用者。

## 目标与范围

本页帮助你快速建立最小认知闭环：

1. AiOS 如何启动与进入 bootstrap
2. 如何完成第一个应用交付
3. 如何理解当前 bootstrap 入口与未来 Agent/CLI 方向

## 核心概念

* AiOS 的公开文档按用户意图组织，而不是按历史产品线组织
* 单二进制入口用于安装与 bootstrap，不是最终正式运行形态
* 应用交付、Agent 访问、运维治理共享同一控制面能力

## 推荐阅读顺序

1. [安装入口](/getting-started/install)
2. [本地 PostgreSQL 开发环境](/getting-started/local-postgres-dev)
3. [轻量模式初始化](/getting-started/bootstrap-light-mode)
4. [完整模式初始化](/getting-started/bootstrap-full-mode)
5. [部署第一个应用](/getting-started/deploy-first-app)
6. [第一个 Agent 命令](/getting-started/first-agent-command)

## 当前启动示例

终端 A：

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

终端 B：

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

如果你要在本地以“外部状态”方式开发当前控制面，请先按 [本地 PostgreSQL 开发环境](/getting-started/local-postgres-dev) 启动 PostgreSQL、执行 migration，再启动服务。

`aios app up`、`aios approval request` 等命令当前仍未在仓库中实现。公开文档里保留这类命令时，只能把它们当作未来 CLI 方向示意。

## Web UI 路径

* 安装向导
* 应用创建向导
* 任务中心与审批中心

## 常见问题 / 风险提示

* 单二进制启动并不等同于正式生产运行。
* 应用交付和 Agent 命令都不会绕过统一授权链。

## 相关页面

* [平台总览](/platform/index)
* [Agent 总览](/agent/index)
* [运维与安全总览](/operations/index)
