一键导入
repo-fs
OpenClaw-style workspace file skill for listing, reading, writing, appending, deleting, and creating directories.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
OpenClaw-style workspace file skill for listing, reading, writing, appending, deleting, and creating directories.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
LocalClaw-native adaptation of web-access for real web tasks, search, logged-in browsing, dynamic pages, and browser interaction through the local Chrome session.
Summarize invoice amounts and purposes from PDF files in directories
Extract text content from PDF files
Read a file and summarize its content using the local model
Fetch a page or endpoint over HTTP when a lightweight browser-style read is enough.
Search bundled skills and ClawHub skills that match a user need.
| name | repo.fs |
| version | 1.0.0 |
| description | OpenClaw-style workspace file skill for listing, reading, writing, appending, deleting, and creating directories. |
| type | workflow |
| inputs | {"action":"string","path":"string","content":"string","mode":"string","recursive":"boolean","parents":"boolean","all":"boolean","long":"boolean"} |
| tools | ["file_list","file_read","file_write","file_append","file_delete","file_mkdir"] |
| actions | [{"type":"tool_call","name":"list_workspace","tool":"file_list","condition":"{{action == 'list'}}","params":{"path":"{{path}}","all":"{{all}}","long":"{{long}}"}},{"type":"tool_call","name":"read_file","tool":"file_read","condition":"{{action == 'read'}}","params":{"path":"{{path}}"}},{"type":"tool_call","name":"write_file","tool":"file_write","condition":"{{action == 'write'}}","params":{"path":"{{path}}","content":"{{content}}","mode":"{{mode}}"}},{"type":"tool_call","name":"append_file","tool":"file_append","condition":"{{action == 'append'}}","params":{"path":"{{path}}","content":"{{content}}"}},{"type":"tool_call","name":"delete_path","tool":"file_delete","condition":"{{action == 'delete'}}","params":{"path":"{{path}}","recursive":"{{recursive}}"}},{"type":"tool_call","name":"make_directory","tool":"file_mkdir","condition":"{{action == 'mkdir'}}","params":{"path":"{{path}}","parents":"{{parents}}"}}] |
| permissions | {"risk_level":"low"} |
| metadata | {"author":"LocalClaw","homepage":"https://github.com/openclaw/openclaw","repository":"https://github.com/openclaw/openclaw","category":"workspace","tags":["openclaw","workspace","files"],"catalog_id":"repo.fs","skill_key":"repo.fs","aliases":["workspace-files","fs-workspace"],"openclaw":{"skillKey":"repo.fs","aliases":["workspace-files","fs-workspace"],"homepage":"https://github.com/openclaw/openclaw"}} |
Use this skill when the user needs to interact with files inside the current workspace.
Supported actions:
list: list files or directoriesread: read a filewrite: overwrite or create a fileappend: append content to an existing filedelete: remove a file or directorymkdir: create a directoryPrefer this skill over raw shell commands for normal workspace file operations.