agent-line 0.1.1

A batteries-included Rust library for building agent workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Standalone utility functions for common agent tasks.

pub mod command;
pub mod file;
pub mod http;
pub mod parse;

pub use command::{CmdOutput, run_cmd, run_cmd_in_dir};
pub use file::{append_file, create_dir, delete_file, file_exists, find_files, list_dir, read_file, write_file};
pub use http::{http_get, http_post, http_post_json};
pub use parse::{extract_json, parse_lines, strip_code_fences};