echo_core 0.2.0

Core traits and types for the echo-agent framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Hook type definitions — shared across all workspace crates.
//!
//! This module contains the core types for the unified hook system,
//! defined here in `echo-core` so that both `echo-execution` and
//! `echo-orchestration` can reference them without circular dependencies.

pub mod types;

pub use types::{
    CompressHookStats, HookContext, HookEvent, HookEventCategory, HookResult, HookSource,
    UnifiedHookExecutorFn,
};