文件读写操作,支持创建、读取、写入、删除文件
提供文件系统操作能力,包括:
| 操作 | 说明 | 风险等级 | |-----|------|---------| | read | 读取文件内容 | 低 | | write | 写入文件(覆盖已有内容) | 中 | | create | 创建新文件(如存在则覆盖) | 中 | | delete | 删除文件 | 高 | | exists | 检查文件是否存在 | 低 |
{
"action": "create",
"path": "G:/test.txt",
"content": "Hello World"
}
{
"action": "read",
"path": "G:/test.txt"
}
{
"action": "write",
"path": "G:/test.txt",
"content": "新的内容"
}
{
"action": "delete",
"path": "G:/test.txt"
}
{
"action": "exists",
"path": "G:/test.txt"
}
G:/test.txt)和相对路径| 错误 | 原因 | 解决方案 | |-----|------|---------| | 文件不存在 | read/delete时文件不存在 | 先使用exists检查 | | 权限不足 | 没有读写权限 | 检查文件权限 | | 路径无效 | 路径格式错误 | 使用正确的路径格式 |
Search for places (restaurants, cafes, etc.) via Google Places API proxy on localhost.
Interact with GitHub using the `gh` CLI. Use `gh issue`, `gh pr`, `gh run`, and `gh api` for issues, PRs, CI runs, and advanced queries.
Create or update AgentSkills. Use when designing, structuring, or packaging skills with scripts, references, and assets.
Start voice calls via the OpenClaw voice-call plugin.
Notion API for creating and managing pages, databases, and blocks.
Gemini CLI for one-shot Q&A, summaries, and generation.
Category:developer