ag-clipboard 0.14.7

Agentty is an ADE (Agentic Development Environment) for structured, controllable AI-assisted software development.
Documentation
mod contract;
#[cfg(any(target_os = "linux", test))]
mod linux;
#[cfg(target_os = "macos")]
mod macos;
#[cfg(not(any(target_os = "linux", target_os = "macos")))]
mod unsupported;
#[cfg(any(target_os = "linux", test))]
mod wayland;
#[cfg(any(target_os = "linux", test))]
mod x11;

pub(crate) use contract::ClipboardBackend;
#[cfg(target_os = "linux")]
pub(crate) use linux::new_backend;
#[cfg(target_os = "macos")]
pub(crate) use macos::new_backend;
#[cfg(not(any(target_os = "linux", target_os = "macos")))]
pub(crate) use unsupported::new_backend;