codetether-agent 4.6.0

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Agent-facing tool for managing the session's goal and task log.
//!
//! Writes append-only events to
//! `<sessions_dir>/<CODETETHER_SESSION_ID>.tasks.jsonl` via
//! [`crate::session::tasks::TaskLog`]. The session id is supplied via
//! the `CODETETHER_SESSION_ID` environment variable which the agent
//! runtime already sets for every turn (see `bash.rs`).

mod handlers;
mod params;
mod tool;

#[allow(unused_imports)]
pub use tool::SessionTaskTool;