Native Bun runtime operations for filesystem, process, and network tasks.
Use this skill when:
Bun.file(), Bun.write(), Bun.glob())scripts/bun-fs.sh read /path/to/file.txt
Returns JSON: {"content": "file contents"}
scripts/bun-fs.sh write /path/to/file.txt "content here"
Creates parent directories automatically.
Returns JSON: {"written": true, "path": "/path/to/file.txt"}
scripts/bun-glob.sh "/tmp/*.txt"
Returns JSON: {"files": ["/tmp/file1.txt", "/tmp/file2.txt"], "count": 2}
scripts/bun-process.sh "ls -la"
Runs shell command and returns output.
scripts/bun-fetch.sh "https://api.example.com" "GET"
Makes HTTP request using Bun's native fetch.
共 1 个版本