@helixharness/tools
v0.1.0
Published
Built-in tools for the Helix agent runtime — file system, shell, and more
Maintainers
Readme
@helixharness/tools
Built-in tools for the Helix agent runtime.
Install
npm install @helixharness/toolsBuilt-in Tools
readFileTool— read file contents with optional offset/limitwriteFileTool— create or overwrite filesglobTool— file pattern matchingbashTool— execute shell commands (sandboxed)
Quick Example
import { readFileTool, writeFileTool, bashTool } from "@helixharness/tools";
const agent = new Agent({
tools: [
readFileTool(),
writeFileTool({ allowedDirs: ["/tmp"] }),
bashTool(),
],
});