# 1.5 本章小结

## 1.5.1 要点回顾

* OpenClaw 是一个本地优先、可自托管的个人智能体系统，可以接入多种渠道（Telegram、WhatsApp、飞书等），调用本地工具完成真实任务——不只是聊天，是真正“把活干完”。
* 它解决了智能体落地的三个核心痛点：对话过长后 AI 忘事、AI 可能越权操作、出了问题无法追溯。
* 最适合场景：执行链条较长、允许异步、需要多工具组合的任务。不适合：纯聊天问答、毫秒级实时系统、无运维能力的团队。
* 五个核心概念：**Gateway**（门）、**Agent**（干活的）、**Tool**（手）、**Session**（记忆本）、**Node**（执行节点）。记住这五个名字，后面各章会逐一深入讲解。
* Token 成本容易被低估：只在需要自然语言理解、模糊决策或多步推理的环节使用智能体，其余部分用确定性代码实现。

## 1.5.2 读者自检

阅读完本章后，尝试回答以下问题：

* 能否用一句话分别描述 Gateway、Agent、Tool、Session、Node 各自负责什么？
* 如果让你向同事推荐 OpenClaw，你会说它适合解决什么问题，不适合什么场景？
* 比起直接用 ChatGPT，OpenClaw 多出来的价值是什么？

## 1.5.3 下一章预告

[第二章](/openclaw_guide/di-yi-bu-fen-ji-chu-ru-men/02_setup.md)将进入实际安装：系统前置检查、安装方式选择、初始化向导与首次运行验收。

***

> 发现错误或有改进建议？欢迎提交 [Issue](https://github.com/yeasy/openclaw_guide/issues) 或 [PR](https://github.com/yeasy/openclaw_guide/pulls)。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://yeasy.gitbook.io/openclaw_guide/di-yi-bu-fen-ji-chu-ru-men/01_overview/summary.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
