codetether-agent 4.5.7

A2A-native AI coding agent for the CodeTether ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod layout;
pub mod metrics;
pub mod tool_history;

use ratatui::Frame;

use crate::tui::app::state::App;

use self::layout::render_inspector;

pub fn render_inspector_view(f: &mut Frame, app: &App) {
    render_inspector(f, &app.state);
}