codetether-agent 4.7.0-a-002.3

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Clipboard image bridge helpers.
//!
//! These helpers support SSH sessions by converting a local clipboard image
//! into a text data URL that can be pasted through a terminal.

mod capture;
mod data_url;

#[cfg(test)]
mod tests;

pub use capture::{capture_image, copy_text};
pub use data_url::attachment_from_data_url;