runtimo-core 0.1.1

Agent-centric capability runtime with telemetry, process tracking, and crash recovery for persistent machines
//! Built-in capabilities.
//!
//! - [`FileRead`] — Read file contents
//! - [`FileWrite`] — Write file contents with automatic backup
//! - [`ShellExec`] — Execute shell commands with audit logging
//! - [`Undo`] — Restore files from backup
//! - [`Kill`] — Kill runaway processes by PID
//! - [`GitExec`] — Git operations with state tracking and undo support

mod file_read;
mod file_write;
mod git_exec;
mod kill;
mod shell_exec;
mod undo;

pub use file_read::FileRead;
pub use file_write::FileWrite;
pub use git_exec::GitExec;
pub use kill::Kill;
pub use shell_exec::ShellExec;
pub use undo::Undo;