ai-agent 0.88.0

Idiomatic agent sdk inspired by the claude code source leak
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Source: ~/claudecode/openclaudecode/src/ink/events/mod.ts

pub mod click_event;
pub mod emitter;
pub mod event;
pub mod input_event;
pub mod paste_event;
pub mod resize_event;
pub mod terminal_focus_event;

// Re-export types for convenience
pub use click_event::ClickEvent;
pub use emitter::EventEmitter;
pub use event::Event;
pub use input_event::{InputEvent, Key, ParsedKey};
pub use paste_event::PasteEvent;
pub use resize_event::ResizeEvent;
pub use terminal_focus_event::{TerminalFocusEvent, TerminalFocusEventType};