quotch 0.5.5

Fast cross-platform CLI for AI coding-agent usage limits
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::providers::{
    Provider, antigravity::Antigravity, claude::Claude, codex::Codex, copilot::Copilot,
};

pub fn all() -> Vec<Box<dyn Provider>> {
    // Discovery order is display order; claude stays first, then codex groups the
    // "big three" agents; antigravity stays last.
    vec![
        Box::new(Claude),
        Box::new(Codex),
        Box::new(Copilot),
        Box::new(Antigravity),
    ]
}