Install
openclaw skills install bun-runtimeBun runtime capabilities for filesystem, process, and network operations. Use when you need to execute Bun-specific operations like Bun.file(), Bun.write(), or Bun.glob() for optimized file handling, or when working with Bun's native process/network APIs. Triggered by requests for Bun runtime features, file operations with Bun, or high-performance I/O tasks.
openclaw skills install bun-runtimeNative 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.