Expand description
Built-in tools, wired to a real SessionEnv.
Each tool operates purely against the env, so the same tools work over a
local directory, a virtual fs, or a remote container. Mirrors Flue’s tools
in packages/runtime/src/agent.ts.
Structs§
- Bash
Tool bash— run a shell command in the sandbox.- Edit
Tool edit— replace a unique snippet in a file.- Glob
Tool glob— list files matching a pattern.- Grep
Tool grep— search file contents.- Read
Tool read— read a file from the sandbox, bounded by line/byte limits.- Write
Tool write— write a file, creating parent directories.
Functions§
- mvp_
tools - Build the MVP toolset over
env:read,write,edit,bash,glob,grep. - mvp_
tools_ with_ limits - Like
mvp_toolsbut with explicit resource limits.