> For the complete documentation index, see [llms.txt](https://tinyhumans.gitbook.io/openhuman/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tinyhumans.gitbook.io/openhuman/zh/gong-neng/native-tools.md).

# 可用工具

OpenHuman 的 agent 不会空手而出。安装后，agent 背后的每个模型都能立即使用一套精心筛选的工具——没有插件市场，没有要对接的 API 密钥，也没有要注册的 MCP 服务器。整套工具箱都在盒子里。

本页是索引。每个子页面涵盖一类工具。

## 为什么原生提供它们

仅插件模式意味着工具驻留在不同进程中，通过 RPC 访问，并且各自有自己的认证和打包方式。对于开放式扩展性来说，这没问题，但对于 **核心** 每个 agent 都需要的工具（读文件、搜索网页、编辑代码、设置提醒、加入会议）来说，将它们以内进程方式提供意味着：

* 一致的错误处理。
* 零安装摩擦。
* 所有输出都会经过 [智能 Token 压缩](/openhuman/zh/gong-neng/token-compression.md) ，免费。
* 可预测的安全边界——文件系统工具遵守工作区范围，而网络工具默认使用托管的 OpenHuman 代理，除非你选择接入自托管路径，例如 SearXNG。

## 工具带

| 类别                                                                       | 涵盖内容                                                                     |
| ------------------------------------------------------------------------ | ------------------------------------------------------------------------ |
| [网页搜索](/openhuman/zh/gong-neng/native-tools/web-search.md)               | 通过托管代理搜索实时网页，或选择接入自托管的 SearXNG。                                          |
| [网页抓取](/openhuman/zh/gong-neng/native-tools/web-scraper.md)              | 从任何 URL 中提取干净文本——文章、文档、README。                                           |
| [代码工具](/openhuman/zh/gong-neng/native-tools/coder.md)                    | 读/写/编辑/修补文件，glob，grep，git，lint，测试。                                       |
| [浏览器与电脑控制](/openhuman/zh/gong-neng/native-tools/browser-and-computer.md) | 打开 URL，检查 DOM 快照，点击、输入、移动鼠标。                                             |
| [定时任务与调度](/openhuman/zh/gong-neng/native-tools/cron.md)                  | 周期性任务、一次性提醒、定时的 agent 运行。                                                |
| [语音](/openhuman/zh/gong-neng/native-tools/voice.md)                      | 语音转文字输入，文字转语音输出，实时 Google Meet agent。                                    |
| [记忆工具](/openhuman/zh/gong-neng/native-tools/memory-tools.md)             | 回忆、存储、遗忘和搜索 [记忆树](/openhuman/zh/gong-neng/obsidian-wiki/memory-tree.md). |
| [第三方集成](/openhuman/zh/gong-neng/integrations.md)                         | agent 对 [118+ 个已连接服务的视图](/openhuman/zh/gong-neng/integrations.md).       |
| [Agent 协调](/openhuman/zh/gong-neng/native-tools/agent-coordination.md)   | 生成子 agent、委派给技能、规划、询问用户。                                                 |
| [系统与实用工具](/openhuman/zh/gong-neng/native-tools/system-and-utilities.md)  | Shell、node、SQL、当前时间、推送通知、LSP。                                            |

## 另见

* [智能 Token 压缩](/openhuman/zh/gong-neng/token-compression.md) ——用于控制工具输出成本。
* [第三方集成](/openhuman/zh/gong-neng/integrations.md) ——面向用户的介绍以及 118+ 目录的 OAuth 流程。
* [隐私与安全](/openhuman/zh/gong-neng/privacy-and-security.md) ——每个工具运行所在的边界。
