with one click
file-operations
Read, write, and manage files on the local system.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Read, write, and manage files on the local system.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Display interactive HTML content, visualizations, dashboards, or games on connected OpenClaw nodes (Mac, iOS, Android). Supports live reloading, remote navigation, JS execution, and canvas snapshots for development, testing, and presentation scenarios.
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
Execute shell commands and scripts on the user's local machine.
多模态 AI 图片理解工具。将图片发送给支持 vision 的 LLM 模型,获取图片的语义理解和详细描述。可分析截图、设计稿、图表、报错信息等。
Unified memory search and management system for retrieving, storing, and organizing information across daily logs, persistent memory, SOPs, and execution traces. Use this skill to recall past events, manage knowledge bases, update important notes, or filter historical data by tags and time ranges.
智能 OCR 文字提取工具。从图片中识别文字,支持中英文混排、图像预处理(灰度化+二值化提升识别率)、表格结构还原为 Markdown 格式。
| name | file-operations |
| description | Read, write, and manage files on the local system. |
| version | 1.0.0 |
| author | DunCrew |
| metadata | {"openclaw":{"emoji":"🔧","primaryEnv":"shell"}} |
Read, write, and manage files on the local system.
{"thought": "...", "tool": "readFile|writeFile|appendFile|listDir", "args": {...}}
User: "帮我看看 config.json 的内容,把端口改成 8080" Step 1:
{"thought": "先读取 config.json 查看当前内容", "tool": "readFile", "args": {"path": "config.json"}}
Step 2 (after reading, found port: 3000):
{"thought": "当前端口是 3000,需要改为 8080。将修改后的完整内容写回文件。", "tool": "writeFile", "args": {"path": "config.json", "content": "{\"port\": 8080, \"host\": \"localhost\"}"}}
User: "帮我看看项目里有哪些 markdown 文件" Step 1:
{"thought": "先列出项目根目录,查找 .md 文件", "tool": "listDir", "args": {"path": "."}}
Step 2 (if found subdirectories):
{"thought": "根目录有 docs 文件夹,可能有更多 markdown 文件", "tool": "listDir", "args": {"path": "docs"}}
User: "帮我在日志文件里记录一下今天完成了登录功能"
{"thought": "用 appendFile 追加记录到日志,不会覆盖已有内容", "tool": "appendFile", "args": {"path": "dev-log.md", "content": "\n- 2024-01-15: 完成登录功能开发\n"}}