traitclaw-core 1.0.0

Core traits, types, and runtime for the TraitClaw AI Agent Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core trait definitions for `TraitClaw`.
//!
//! All framework extension points are defined as traits in this module.

pub mod context_manager;
pub mod execution_strategy;
pub mod guard;
pub mod hint;
pub mod hook;
pub mod memory;
pub mod output_transformer;
pub mod provider;
pub mod strategy;
pub mod tool;
pub mod tool_registry;
pub mod tracker;