clark-agent 0.4.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
//! 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 opening_gate;

pub use opening_gate::OpeningGate;