소스 정보
- 저장소
- wnzzer/zhipu-tools-coding-plan
- 최근 소스 활동
- 2026년 3월 23일 10:47
- 감지된 SKILL.md 언어
- 중국어
- 스타
- 1
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/wnzzer/zhipu-tools-coding-plan --skill zhipu-tools-coding-plan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | zhipu-tools-coding-plan |
| description | 智谱 AI 原生工具 - 网络搜索、网页读取、仓库文档搜索和文件解析。基于 Z.AI Coding Plan MCP 端点,全部免费使用。 |
| license | MIT |
基于 Z.AI Coding Plan MCP 端点 的免费工具集:网络搜索、网页读取、GitHub 仓库文档搜索和文件解析。
| 功能 | MCP 工具 | 端点 | 说明 |
|---|---|---|---|
| 网络搜索 | web_search_prime | /web_search_prime/mcp | 实时互联网搜索,支持过滤 |
| 网页读取 | webReader | /web_reader/mcp | 抓取网页标题、正文、元数据 |
| 仓库文档搜索 | search_doc | /zread/mcp | 搜索 GitHub 仓库文档 |
| 仓库目录结构 | get_repo_structure | /zread/mcp | 查看 GitHub 仓库目录树 |
| 仓库文件读取 | read_file | /zread/mcp | 读取 GitHub 仓库指定文件 |
| 文件解析 | — | Legacy API | 解析 PDF/Word/Excel/PPT 等 |
前五项通过 Coding Plan MCP 端点免费调用,文件解析仅支持旧版 API。
在 openclaw.json 中配置 API Key:
{
"skills": {
"entries": {
"zhipu-tools": {
"apiKey": "YOUR_ZHIPU_API_KEY"
}
}
}
}
或设置环境变量:ZHIPU_API_KEY
| 模式 | 端点 | 额度 | 切换方式 |
|---|---|---|---|
| MCP (默认) | api.z.ai/api/mcp/... | Z.AI Coding Plan 免费 | 默认启用 |
| Legacy | open.bigmodel.cn/api/paas/v4/... | 账户余额 | ZHIPU_USE_MCP=false |
MCP 模式自动 fallback:MCP 失败时会自动尝试 Legacy API。
cd ~/.openclaw/workspace/skills/zhipu-tools
# Shell
./scripts/web_search.sh "搜索关键词" [count]
# Python(支持更多参数)
python3 scripts/zhipu_tool.py web_search "搜索关键词" \
--count 10 --recency week --domain example.com
# Shell
./scripts/web_reader.sh "https://www.example.com"
# Python
python3 scripts/zhipu_tool.py web_reader "https://www.example.com"
# Shell - 搜索仓库文档
./scripts/zread.sh search "openai/openai" "how to use"
# Shell - 查看目录结构
./scripts/zread.sh structure "openai/openai"
./scripts/zread.sh structure "openai/openai" "src/"
# Shell - 读取文件
./scripts/zread.sh read "openai/openai" "README.md"
# Python
python3 scripts/zhipu_tool.py zread search "openai/openai" "how to use"
python3 scripts/zhipu_tool.py zread structure "openai/openai" --path src/
python3 scripts/zhipu_tool.py zread read "openai/openai" "README.md"
./scripts/file_parser.sh /path/to/document.pdf PDF
python3 scripts/zhipu_tool.py file_parser /path/to/document.docx --file-type DOCX
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| search_query | string | 是 | 搜索内容,建议不超过 70 字符 |
| search_recency_filter | string | 否 | oneDay, oneWeek, oneMonth, oneYear, noLimit |
| content_size | string | 否 | medium (默认), high |
| location | string | 否 | cn, us |
| search_domain_filter | string | 否 | 限制搜索域名 |
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| url | string | 是 | 目标网页 URL |
返回:标题、正文内容、元数据、链接列表。
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| repo | string | 是 | GitHub 仓库,如 "openai/openai" |
| query | string | 是 | 搜索关键词 |
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| repo | string | 是 | GitHub 仓库 |
| path | string | 否 | 子目录路径 |
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| repo | string | 是 | GitHub 仓库 |
| path | string | 是 | 文件路径,如 "README.md" |
所有远程 MCP 端点通过 streamableHttp 协议交互:
mcp-session-idHeaders: Authorization: Bearer $API_KEY, Content-Type: application/json, Accept: text/event-stream, application/json
| 套餐 | 搜索/网页读取/仓库搜索 次数/月 | 价格 |
|---|---|---|
| Lite | 100 次 | 免费 |
| Pro | 1,000 次 | 免费 |
| Max | 4,000 次 | 免费 |
额度次月自动重置。