clark-agent 0.2.0

Typed agent loop with typed messages, typed events, swappable LLM transport, and plugin hooks. Provider-agnostic, sandbox-agnostic, tooling-agnostic. By Clark Labs Inc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Built-in plugins shipped with `clark-agent`.
//!
//! These cover safety-net concerns that every product variant needs and
//! that would otherwise have to be re-implemented per call-site. Each
//! plugin is a regular [`Plugin`](crate::plugin::Plugin) implementation —
//! nothing magic about its placement here.

pub mod graceful_turn_limit;
pub mod opening_gate;

pub use graceful_turn_limit::GracefulTurnLimit;
pub use opening_gate::OpeningGate;