limit-cli 0.0.46

AI-powered terminal coding assistant with TUI. Multi-provider LLM support, session persistence, and built-in tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Handler modules for browser tool
//!
//! Each module contains handlers for a specific category of browser actions.
//! These handlers extract arguments and call the appropriate client methods.

pub mod dialog;
pub mod interaction;
pub mod navigation;
pub mod query;
pub mod settings;
pub mod state;
pub mod storage;
pub mod tabs;
pub mod wait;