docs: add CLI system docs

This commit is contained in:
zhayujie
2026-03-29 17:57:12 +08:00
parent e06925ab85
commit 3cb5a0fbd6
62 changed files with 2995 additions and 750 deletions

32
docs/tools/web-fetch.mdx Normal file
View File

@@ -0,0 +1,32 @@
---
title: web_fetch - 网页获取
description: 获取网页或文档内容
---
获取 HTTP/HTTPS URL 的内容。对网页提取可读文本对文档文件PDF、Word、Excel 等)自动下载并解析内容。
## 参数
| 参数 | 类型 | 必填 | 说明 |
| --- | --- | --- | --- |
| `url` | string | 是 | HTTP/HTTPS URL网页或文档链接 |
## 支持的文件类型
| 类型 | 格式 |
| --- | --- |
| PDF | `.pdf` |
| Word | `.docx` |
| 文本 | `.txt`、`.md`、`.csv`、`.log` |
| 表格 | `.xls`、`.xlsx` |
| 演示文稿 | `.ppt`、`.pptx` |
## 使用场景
- 获取网页的文本内容
- 下载并解析远程文档
- 获取 API 响应内容
<Note>
`web_fetch` 只能获取静态 HTML 内容。如果页面需要 JavaScript 渲染(如 SPA 单页应用),请使用 `browser` 工具。
</Note>