skills/file-utils/SKILL.md
File system utilities for reading, writing, listing, and searching files. Includes tree view, file search by pattern, and text search within files.
npx skillsauth add sahiixx/moltworker file-utilsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
File system operations for reading, writing, and searching files.
node /path/to/skills/file-utils/scripts/list.js /path/to/directory
node /path/to/skills/file-utils/scripts/read.js /path/to/file.txt
node /path/to/skills/file-utils/scripts/write.js /path/to/file.txt "Content to write"
node /path/to/skills/file-utils/scripts/search.js /path/to/dir "pattern" --content
List directory contents with details.
Usage:
node list.js <path> [OPTIONS]
Options:
--recursive or -r - List recursively--tree - Show as tree view--hidden - Include hidden files--json - Output as JSONRead file contents.
Usage:
node read.js <path> [OPTIONS]
Options:
--lines <start>:<end> - Read specific line range--head <n> - Read first n lines--tail <n> - Read last n lines--json - Parse as JSONWrite content to a file.
Usage:
node write.js <path> <content> [OPTIONS]
Options:
--append - Append to existing file--mkdir - Create parent directoriesSearch for files or content.
Usage:
node search.js <path> <pattern> [OPTIONS]
Options:
--content - Search file contents (default: filename)--ignore-case or -i - Case insensitive search--max <n> - Maximum results (default: 100)node list.js . --tree --recursive
node read.js file.txt --lines 10:20
node search.js . "\.js$"
node search.js ./src "TODO" --content
[
{ "name": "file.txt", "type": "file", "size": 1234, "modified": "2024-01-15T10:30:00Z" }
]
{
"pattern": "TODO",
"matches": [
{ "file": "src/index.js", "line": 42, "content": "// TODO: fix this" }
],
"count": 1
}
development
Modern web scraping with structured data extraction. Fetch web pages, extract content using CSS selectors, parse structured data (JSON-LD, Open Graph, meta tags), and handle pagination.
development
System monitoring and diagnostics. Get CPU, memory, disk, network stats, process information, environment details, and health checks for services and endpoints.
development
Persistent key-value storage for notes, reminders, and user preferences. Store and retrieve information across conversations using a simple JSON-based storage system.
tools
Make HTTP requests to external APIs. Supports GET, POST, PUT, DELETE with JSON and form data. Use for fetching data, calling APIs, and webhooks.