limit-cli 0.0.46

AI-powered terminal coding assistant with TUI. Multi-provider LLM support, session persistence, and built-in tools.
Documentation
mod analysis;
mod bash;
pub mod browser;
mod file;
mod git;
mod web_fetch;
mod web_search;

pub use analysis::{AstGrepTool, GrepTool, LspTool};
pub use bash::BashTool;
pub use browser::{
    BrowserClient, BrowserConfig, BrowserEngine, BrowserError, BrowserExecutor, BrowserOutput,
    BrowserTool, CliExecutor, SnapshotResult,
};
pub use file::{FileEditTool, FileReadTool, FileWriteTool};
pub use git::{
    GitAddTool, GitCloneTool, GitCommitTool, GitDiffTool, GitLogTool, GitPullTool, GitPushTool,
    GitStatusTool,
};
pub use web_fetch::WebFetchTool;
pub use web_search::WebSearchTool;