ironclaw 0.24.0

Secure personal AI assistant that protects your data and expands its capabilities on the fly
Documentation
//! Handler modules for the web gateway API.
//!
//! Each module groups related endpoint handlers by domain.

pub mod jobs;
pub mod llm;
pub mod memory;
pub mod routines;
pub mod secrets;
pub mod skills;
pub mod tokens;
pub mod users;

// Modules not yet wired into server.rs router -- suppress dead_code until
// they replace their inline counterparts.
#[allow(dead_code)]
pub mod chat;
#[allow(dead_code)]
pub mod extensions;
#[allow(dead_code)]
pub mod settings;
#[allow(dead_code)]
pub mod static_files;
pub mod webhooks;