oris-runtime 0.61.0

An agentic workflow runtime and programmable AI execution system in Rust: stateful graphs, agents, tools, and multi-step execution.
1
2
3
4
5
6
7
8
9
10
11
12
//! Built-in tools for Deep Agent: write_todos, file system (ls, read_file, write_file, edit_file, glob, grep), task.

mod task;
mod tool_wrapper;
mod write_todos;

pub use task::TaskTool;
pub use tool_wrapper::ToolWithCustomDescription;
pub use write_todos::{TodoItem, TodoStatus, WriteTodosTool};

pub mod fs;
pub use fs::{EditFileTool, GlobTool, GrepTool, LsTool, ReadFileTool, WriteFileTool};