Loading skill
Install any skill in seconds. Free to start, no credit card required.
Get Started Free →File and directory management tool for creating, reading, writing, deleting, moving, copying, and searching files. Use this skill when the user needs to perform file operations, list directories, search by pattern or content, or get file metadata like size and modification time.
| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-01 | ✗→✓ | ▲ Improved | 24% | 0% |
| case-02 | ✗→✓ | ▲ Improved | 86% | 0% |
| case-03 | ✗→✓ | ▲ Improved | -37% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 224% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 186% | 0% |
管理文件和目录的工具集。
bashpython scripts/file_ops.py list <path> [--recursive] [--pattern "*.py"]
bashpython scripts/file_ops.py read <file_path> [--encoding utf-8]
bashpython scripts/file_ops.py write <file_path> --content "内容" [--append]
bashpython scripts/file_ops.py copy <source> <destination>
bashpython scripts/file_ops.py move <source> <destination>
bashpython scripts/file_ops.py delete <path> [--recursive]
bashpython scripts/file_ops.py search <directory> --pattern "*.py" [--content "search_text"]
bashpython scripts/file_ops.py info <path>
所有操作返回 JSON 格式:
json{ "success": true, "operation": "list", "data": { "files": ["file1.py", "file2.py"], "directories": ["subdir"], "count": 3 } }
Other measured skills in the registry, with their headline benchmark lift.