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

# 快速开始

> 从 FSP 设备技能到函数式实验方法的最短路径

<Steps>
  <Step title="发现设备">
    调用 `fsp/discover`，取得服务声明的设备、能力修订号和可用状态。
  </Step>

  <Step title="读取技能摘要">
    调用 `fsp/get_capabilities` 并设置 `detail_level=summary`，取得技能标识、用途、请求分类和对象摘要。
  </Step>

  <Step title="读取技能详情">
    对准备使用的技能设置 `detail_level=full` 和 `command_ids`，取得对象、控制和系统三个完整维度。
  </Step>

  <Step title="完成技能提取与准入">
    生成设备技能描述并运行技能质量评估。只有 `passed=true` 且达到阈值的技能进入合格设备技能库。
  </Step>

  <Step title="生成并验证方法">
    使用准入后的函数式技能生成 `generate_recipe()`，完成优化、状态仿真和科学语义评审。
  </Step>

  <Step title="绑定并执行">
    把验证后的方法转换为含 `steps`、`path` 和 `涉及设备` 的执行计划，再按每步 `request_class` 选择 `fsp/read`、`fsp/write` 或 `fsp/invoke`。
  </Step>
</Steps>

## 最小 FSP 请求

```json theme={null}
{
  "jsonrpc": "2.0",
  "id": "discover-1",
  "method": "fsp/discover",
  "params": {}
}
```

<Warning>
  调用方必须根据 FSP 完整技能定义中的参数、状态、约束和安全围栏构造请求，不得根据设备名称或技能摘要猜测调用参数。
</Warning>

## 阅读顺序

1. [基础协议](/specification/base-protocol)
2. [FSP 概述](/specification/fsp/overview)
3. [接口定义](/specification/device-integration/overview)
4. [设备能力](/specification/capability/overview)
5. [实验方法](/specification/methods/overview)
