一键导入
file-utils
File system utilities for reading, writing, listing, and searching files. Includes tree view, file search by pattern, and text search within files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
File system utilities for reading, writing, listing, and searching files. Includes tree view, file search by pattern, and text search within files.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Control headless Chrome via Cloudflare Browser Rendering CDP WebSocket. Use for screenshots, page navigation, scraping, and video capture when browser automation is needed in a Cloudflare Workers environment. Requires CDP_SECRET env var and cdpUrl configured in browser.profiles.
AI/ML utilities including embeddings generation, vision analysis, text-to-speech, and structured output extraction. Supports Anthropic Claude, OpenAI, and compatible APIs.
Dubai Real Estate Intelligence Suite - RFM Lead Scoring, Voice Campaigns, Property Search, Market Analysis
Execute code snippets in multiple languages with sandboxed environments. Supports JavaScript, TypeScript, Python, and shell scripts with timeout protection and output capture.
Cryptographic utilities for encryption, hashing, key generation, and secure random data. Supports AES-GCM, RSA, ECDSA, SHA-256/384/512, Argon2, and modern cryptographic standards.
Data transformation utilities for JSON, CSV, XML, YAML, and Markdown. Parse, convert, query, and transform data between formats with JQ-like filtering support.
| name | file-utils |
| description | File system utilities for reading, writing, listing, and searching files. Includes tree view, file search by pattern, and text search within files. |
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
}