pub(crate) const TOOL_STATUS_QUIPS: &[&str] = &[
"โ Grab a coffee โ my sub-agents are on fire right now",
"๐ฆ My crabs are working their claws off โ hang tight",
"๐ฅ Still cooking... deep in the code",
"โก Sub-agents going brrr โ almost there",
"๐ง Thinking hard so you don't have to",
"๐๏ธ Building something beautiful โ one sec",
"๐ฏ Locked in โ the crabs are laser-focused",
"๐ Full speed ahead โ engines at max",
"๐ช Crunching through the code like a boss",
"๐ Riding the wave โ results incoming",
"๐ช The circus is in town โ all crabs performing",
"๐ง Wrenching away at it โ precision work",
"๐๏ธ Pedal to the metal โ no brakes",
"๐งช Experimenting... for science!",
"๐ต Working to the rhythm โ almost done",
];
const WINDOW_SECS: u64 = 15;
pub(crate) fn rotating_quip(elapsed_secs: u64) -> &'static str {
let idx = (elapsed_secs / WINDOW_SECS) as usize % TOOL_STATUS_QUIPS.len();
TOOL_STATUS_QUIPS[idx]
}