Loading...
Loading...
File and directory management tool. Create, read, write, delete, move, copy files. Search for files, list directories, get file information. Keywords: file, directory, create, delete, copy, move, search, list
npx skill4agent add openakita/openakita file-managerpython scripts/file_ops.py list <path> [--recursive] [--pattern "*.py"]python scripts/file_ops.py read <file_path> [--encoding utf-8]python scripts/file_ops.py write <file_path> --content "content" [--append]python scripts/file_ops.py copy <source> <destination>python scripts/file_ops.py move <source> <destination>python scripts/file_ops.py delete <path> [--recursive]python scripts/file_ops.py search <directory> --pattern "*.py" [--content "search_text"]python scripts/file_ops.py info <path>{
"success": true,
"operation": "list",
"data": {
"files": ["file1.py", "file2.py"],
"directories": ["subdir"],
"count": 3
}
}