mahbot 0.1.1

An autonomous agentic engineering system that manages software development through role separation, subagents, and deterministic diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
#![warn(clippy::pedantic)]

use anyhow::Result;
use chrono::{Duration as ChronoDuration, Utc};
use futures_util::FutureExt;
use std::panic::AssertUnwindSafe;
use std::sync::Arc;
use std::time::Duration;
use tokio::task::spawn;
use tracing::{debug, error, info, warn};

use std::future::Future;
use tokio::task::JoinSet;
use tokio_util::sync::CancellationToken;

use mahbot::channels::{
    send_channel_reply, send_channel_reply_with_buttons, spawn_scoped_typing_task, stop_typing,
    write_incoming_to_broadcast,
};
use mahbot::config::CONFIG;
use mahbot::extraction::{decode_action, decode_callback, is_action, is_callback};
use mahbot::gui::{BOOT_LOG_STORE, Dashboard, JETBRAINS_MONO, Message as DashboardMessage};
use mahbot::manager_queue;
use mahbot::session::{Session, direct_session_key, manager_session_key};
use mahbot::util::UnwrapPoison;
use mahbot::{Agent, Channel, ChannelMessage, Command, Role, Workspace};
/// JetBrainsMono-Regular.ttf embedded for Iced dashboard default font.
const JETBRAINS_MONO_FONT_BYTES: &[u8] = include_bytes!("gui/JetBrainsMono-Regular.ttf");

/// JetBrainsMono-Bold.ttf embedded for header text in the Iced dashboard.
const JETBRAINS_MONO_BOLD_FONT_BYTES: &[u8] = include_bytes!("gui/JetBrainsMono-Bold.ttf");

/// Resolve the workspace for a user, falling back to a personal workspace
/// if `get_workspace` fails or returns `None`.
async fn resolve_workspace_for_user(msg: &ChannelMessage) -> Workspace {
    if let Ok(Some(ws)) = mahbot::users::get_workspace(&msg.user_name).await {
        ws
    } else {
        // Fallback: construct a bare workspace from the user_name.
        // This should not happen in practice since get_workspace always
        // returns a personal workspace when no shared workspace is selected.
        let path = mahbot::users::personal_workspace_path(&msg.user_name);
        mahbot::users::personal_workspace_struct(&msg.user_name, &path)
    }
}

/// Enrich a message with multimodal transcription and link summarization.
///
/// Multimodal enrichment dispatches by role: full transcription if the role
/// requires it (currently only Artist), otherwise non-multimodal processing
/// (text extraction from photos/audio). Link enrichment always runs,
/// prepending URL summaries to the message content.
async fn enrich_message_for_role(msg: &mut ChannelMessage, role: Role, ws: &Workspace) {
    let strategy = if role.requires_multimodal() {
        mahbot::channels::EnrichmentStrategy::Multimodal {
            workspace_path: Some(ws.as_path().to_path_buf()),
        }
    } else {
        mahbot::channels::EnrichmentStrategy::NonMultimodal
    };
    mahbot::channels::enrich_message(msg, &strategy).await;

    // Link enrichment always runs, regardless of modality.
    let enriched = mahbot::channels::enrich_links(&msg.content).await;
    if enriched != msg.content {
        tracing::info!(
            channel = %msg.source_channel,
            user_name = %msg.user_name,
            "Link enricher: prepended URL summaries to message"
        );
        msg.content = enriched;
    }
}

/// Handle a dynamic option callback (prefixed `__opt__`).
///
/// Parses the callback data, constructs an injected user message
/// (e.g. "mahbot-625 - A"), and routes it to the Manager session,
/// bypassing the user's currently active role.
async fn handle_option_callback(mut msg: ChannelMessage) {
    let Some((ticket_id, label)) = decode_callback(&msg.content) else {
        return;
    };

    // Construct the injected user message
    msg.content = match &ticket_id {
        Some(ticket_id_val) => format!("{ticket_id_val} - {label}"),
        None => label,
    };

    let ws = resolve_workspace_for_user(&msg).await;

    // Route directly to Manager session, bypassing resolve_active_role.
    // Enrichment is skipped — synthetic callback text has no media markers or URLs.
    manager_queue::manager_queue().enqueue(manager_queue::ManagerJob {
        content: msg.content.clone(),
        workspace_name: ws.name.clone(),
        kind: manager_queue::JobKind::UserMessage,
    });
}

/// Build a session key for a given user, role, and source channel.
/// Non-Manager sessions include the channel scope: `{channel}_{user_name}_{role}_{ws}`.
/// Manager sessions stay channel-agnostic: `manager_{ws_name}`.
async fn build_session_key(user_name: &str, role: &Role, source_channel: &str) -> String {
    let ws_name = match mahbot::users::get_workspace(user_name).await {
        Ok(Some(ws)) => ws.name,
        _ => "unknown".to_string(),
    };
    if *role == Role::Manager {
        manager_session_key(&ws_name)
    } else {
        direct_session_key(source_channel, user_name, role.as_str(), &ws_name)
    }
}

/// Run [`bootstrap_mahbot`] and convert panics into `Err` so the dashboard shows
/// a boot error instead of hanging on "Starting…" forever.
async fn bootstrap_mahbot_safe() -> Result<(), String> {
    match AssertUnwindSafe(bootstrap_mahbot()).catch_unwind().await {
        Ok(Ok(())) => Ok(()),
        Ok(Err(e)) => Err(e.to_string()),
        Err(payload) => Err(format_startup_panic(&*payload)),
    }
}

/// Extract a human-readable message from a panic payload (e.g. from
/// [`catch_unwind`](futures_util::FutureExt::catch_unwind)).
fn panic_message(payload: &(dyn std::any::Any + Send)) -> String {
    if let Some(msg) = payload.downcast_ref::<&str>() {
        msg.to_string()
    } else if let Some(msg) = payload.downcast_ref::<String>() {
        msg.clone()
    } else {
        "unknown panic".to_string()
    }
}

/// Format a startup panic payload into an error string for the boot log.
fn format_startup_panic(payload: &(dyn std::any::Any + Send)) -> String {
    format!("Startup panicked: {}", panic_message(payload))
}

/// Async startup for `MahBot` — runs on Iced's Tokio runtime via a boot [`Task`].
async fn bootstrap_mahbot() -> Result<()> {
    mahbot::config::load_or_init().await?;

    let (log_store, log_broadcast) =
        mahbot::logs::init_tracing(&CONFIG.global_storage_root()).await?;

    let _ = mahbot::gui::LOG_BROADCAST.set(log_broadcast);

    mahbot::search_engine::init_global(); // sync — no I/O
    mahbot::ticket_buffer::init_global(); // sync — no I/O
    mahbot::manager_queue::init_global()?;

    tokio::try_join!(
        mahbot::session::init_global(),
        mahbot::workspace::init_global(),
        mahbot::users::init_global(),
        mahbot::board::init_global(),
        mahbot::stats::init_global(),
        mahbot::chat_history::init_global(),
    )?;

    // Config DB must be initialized and loaded before providers,
    // so that API keys and model settings take effect.
    mahbot::config_db::init_global().await?;
    mahbot::config::reload_from_db().await?;
    mahbot::providers::init_global().await?;

    spawn_background_tasks(log_store.clone());

    info!("MahBot initialized — dashboard ready");

    BOOT_LOG_STORE
        .set(log_store.as_ref().clone())
        .map_err(|_| anyhow::anyhow!("BOOT_LOG_STORE already set"))?;

    let admin_target = mahbot::self_update::resolve_admin_telegram_target().await;
    mahbot::self_update::notify_admin("✅ MahBot is back online.", admin_target.as_ref()).await;

    Ok(())
}

/// Global `JoinSet` tracking all background task handles for clean shutdown.
static BACKGROUND_TASKS: std::sync::Mutex<Option<JoinSet<()>>> = std::sync::Mutex::new(None);

/// Spawn a cancellable background task that runs `fut` until the global
/// shutdown token is cancelled. The future must return `()` — use
/// [`race_shutdown`](mahbot::shutdown::race_shutdown) if you need to
/// capture a return value.
///
/// Unlike a bare [`JoinSet::spawn`], this function catches panics inside
/// `fut` and logs them via [`tracing::error!`] so that background tasks
/// don't die silently. The `name` parameter identifies the task in the
/// log message.
fn spawn_cancellable<F>(
    tasks: &mut JoinSet<()>,
    shutdown_token: &CancellationToken,
    name: &'static str,
    fut: F,
) where
    F: Future<Output = ()> + Send + 'static,
{
    let cancel = shutdown_token.clone();
    tasks.spawn(async move {
        tokio::select! {
            result = AssertUnwindSafe(fut).catch_unwind() => {
                if let Err(payload) = result {
                    error!(
                        "Background task panicked [{name}]: {}",
                        panic_message(&*payload),
                    );
                }
            }
            () = cancel.cancelled() => {},
        }
    });
}

fn spawn_background_tasks(log_store: Arc<mahbot::logs::LogStore>) {
    let mut tasks = JoinSet::<()>::new();
    let shutdown_token = mahbot::shutdown::shutdown_token();

    tasks.spawn(cleanup_loop_task("Session cleanup", |cutoff| async move {
        mahbot::session::cleanup_old_transient_sessions(&cutoff).await
    }));

    tasks.spawn(cleanup_loop_task("Log cleanup", {
        let store = log_store;
        move |cutoff| {
            let store = store.clone();
            async move { store.delete_older_than("INFO", &cutoff).await }
        }
    }));

    spawn_cancellable(
        &mut tasks,
        &shutdown_token,
        "maintainer",
        mahbot::maintainer::run_maintainer_loop(),
    );

    spawn_cancellable(
        &mut tasks,
        &shutdown_token,
        "archive-cancelled",
        mahbot::board::run_archive_cancelled_loop(),
    );

    // Eagerly initialize search engines for all existing workspaces.
    spawn_cancellable(
        &mut tasks,
        &shutdown_token,
        "search-engine-init",
        mahbot::search_engine::init_all_engines(),
    );

    let rx = init_message_pipeline(&mut tasks, &shutdown_token);

    // `handle_messages` runs unconditionally. When no channels are registered,
    // tx is never cloned into a listener, rx is dropped, and the handler exits
    // gracefully (rx.recv() returns `None` immediately).
    spawn_cancellable(
        &mut tasks,
        &shutdown_token,
        "message-handler",
        handle_messages(rx),
    );

    spawn_cancellable(
        &mut tasks,
        &shutdown_token,
        "management",
        mahbot::management::run_management(),
    );

    // Listen for SIGTERM/SIGINT and trigger shutdown — cancels the global
    // token, which the dashboard subscription picks up to close the window.
    tasks.spawn(async move {
        if mahbot::shutdown::wait_for_shutdown_signal().await.is_ok() {
            info!("Received OS signal, triggering shutdown");
            mahbot::shutdown::shutdown();
        }
    });

    // Store handles so shutdown_after_dashboard can await completion.
    {
        let mut guard = BACKGROUND_TASKS.lock().unwrap_poison();
        let _ = guard.insert(tasks);
    }
}

/// Initialize the message pipeline: creates the shared mpsc channel,
/// broadcast channel, channel registry, and spawns Telegram + GUI
/// channel listeners. Returns the receiver half for [`handle_messages`].
fn init_message_pipeline(
    tasks: &mut JoinSet<()>,
    cancel: &CancellationToken,
) -> tokio::sync::mpsc::Receiver<ChannelMessage> {
    // Create the shared message channel before any channel listeners are
    // spawned. All channels push into the same tx; rx is consumed by the
    // single `handle_messages` consumer. `ChannelMessage.source_channel`
    // disambiguates origins.
    let (tx, rx) = tokio::sync::mpsc::channel::<ChannelMessage>(100);

    // Store pipeline tx globally so GuiChannel can forward messages,
    // and keep a local clone for channel listener registration below.
    mahbot::MESSAGE_TX
        .set(tx.clone())
        .expect("MESSAGE_TX already set — should be first init");

    // Clone tx for GuiChannel before it's consumed by the Telegram listener.
    let gui_pipeline_tx = tx.clone();

    // Create the chat broadcast channel (capacity 256 for burst tolerance).
    let (chat_tx, _chat_rx) = tokio::sync::broadcast::channel::<mahbot::ChatEvent>(256);
    mahbot::CHAT_BROADCAST
        .set(chat_tx)
        .expect("CHAT_BROADCAST already set — should be first init");

    // Initialize the channel registry (empty — channels register below).
    let _ = mahbot::CHANNEL_REGISTRY.set(mahbot::ChannelRegistry::default());

    // Only create and start the Telegram channel if a bot token is configured.
    if let Some(token) = CONFIG.telegram_bot_token() {
        use mahbot::channels::telegram::TelegramChannel;
        let channel: Arc<dyn Channel> = Arc::new(TelegramChannel::new(token));
        mahbot::channel_registry().register(Arc::clone(&channel));
        spawn_cancellable(tasks, cancel, "telegram-listener", {
            let channel = Arc::clone(&channel);
            async move {
                let _ = channel.listen(tx).await;
            }
        });
    } else {
        info!("No Telegram bot token configured — running in dashboard-only mode");
    }

    // Always register the GUI channel — even in dashboard-only mode it provides
    // the bridge between the Iced UI and the message pipeline.
    {
        use mahbot::channels::gui::GuiChannel;
        let (gui_channel, gui_tx) = GuiChannel::new();
        mahbot::GUI_MESSAGE_TX
            .set(gui_tx)
            .expect("GUI_MESSAGE_TX already set — should be first init");
        let gui_channel: Arc<dyn Channel> = Arc::new(gui_channel);
        mahbot::channel_registry().register(Arc::clone(&gui_channel));
        spawn_cancellable(tasks, cancel, "gui-listener", {
            let channel = Arc::clone(&gui_channel);
            async move {
                let _ = channel.listen(gui_pipeline_tx).await;
            }
        });
    }

    rx
}

async fn shutdown_after_dashboard() {
    info!("Dashboard window closed — shutting down");
    mahbot::shutdown::shutdown();
    mahbot::registry::AGENT_REGISTRY.shutdown_all();
    mahbot::tools::browser::close_all_browser_sessions().await;

    // Take the JoinSet out of the lock before awaiting (drop guard).
    let maybe_tasks = {
        let mut guard = BACKGROUND_TASKS.lock().unwrap_poison();
        guard.take()
    };

    if let Some(mut tasks) = maybe_tasks {
        while let Some(result) = tasks.join_next().await {
            match result {
                Ok(()) => {}
                Err(e) if e.is_cancelled() => {
                    debug!("background task cancelled during shutdown");
                }
                Err(e) => {
                    warn!("background task panicked: {e}");
                }
            }
        }
    }
}

fn main() -> Result<()> {
    mahbot::shutdown::install_fatal_signal_handlers();

    // Debug subcommand: run SQL query directly, skip all GUI/daemon setup.
    // Must be checked before lock acquisition so the debug tool can query
    // databases while the daemon is running. No tracing init, no lock, no Iced.
    if std::env::args().nth(1).as_deref() == Some("debug") {
        let rt = tokio::runtime::Builder::new_current_thread()
            .enable_all()
            .build()?;
        match rt.block_on(mahbot::debug::run_debug()) {
            Ok(()) => std::process::exit(0),
            Err(e) => {
                eprintln!("Error: {e:#}");
                std::process::exit(1);
            }
        }
    }

    // Detect self-update availability before any async work.
    let update_available = mahbot::self_update::is_update_available();

    // Resolve storage root before config init, so we can acquire the lock.
    let storage_root = mahbot::config::default_config_dir()?;

    // Acquire the instance lock before Iced runtime starts.
    // Stored in a global so the update flow can release/re-acquire it.
    mahbot::self_update::acquire_lock(&storage_root)?;

    // Read persisted window state (sync, before Iced runtime starts).
    let window_state = mahbot::gui::read_window_state();

    iced::application(
        move || {
            (
                Dashboard::loading(update_available),
                iced::Task::perform(bootstrap_mahbot_safe(), DashboardMessage::Boot),
            )
        },
        Dashboard::update,
        Dashboard::view,
    )
    .title(Dashboard::title)
    .font(iced_fonts::LUCIDE_FONT_BYTES)
    .font(JETBRAINS_MONO_FONT_BYTES)
    .font(JETBRAINS_MONO_BOLD_FONT_BYTES)
    .default_font(JETBRAINS_MONO)
    .subscription(Dashboard::subscription)
    .theme(Dashboard::theme)
    .window(iced::window::Settings {
        size: iced::Size::new(window_state.width, window_state.height),
        position: window_state.position(),
        min_size: Some(iced::Size::new(800.0, 500.0)),
        ..iced::window::Settings::default()
    })
    .exit_on_close_request(false)
    .run()
    .map_err(|e| anyhow::anyhow!("Iced application error: {e}"))?;

    // Iced dropped its runtime; use a short-lived one for async teardown.
    let rt = tokio::runtime::Builder::new_current_thread()
        .enable_all()
        .build()
        .map_err(|e| anyhow::anyhow!("shutdown runtime: {e}"))?;
    rt.block_on(shutdown_after_dashboard());

    Ok(())
}

/// Background cleanup loop adapter — runs every 10 minutes until cancelled.
async fn cleanup_loop_task<F, Fut>(label: &'static str, cleanup: F)
where
    F: Fn(String) -> Fut + Send + 'static,
    Fut: Future<Output = anyhow::Result<u64>> + Send,
{
    loop {
        if !mahbot::shutdown::sleep_or_shutdown(Duration::from_mins(10)).await {
            break;
        }
        let cutoff = (Utc::now() - ChronoDuration::hours(8)).to_rfc3339();
        match cleanup(cutoff).await {
            Ok(n) if n > 0 => info!(deleted = n, "{label}: deleted old entries"),
            Ok(_) => tracing::debug!("{label}: nothing to delete"),
            Err(e) => warn!(error = %e, "{label} failed"),
        }
    }
}

async fn handle_messages(mut rx: tokio::sync::mpsc::Receiver<ChannelMessage>) {
    let shutdown_token = mahbot::shutdown::shutdown_token();

    loop {
        let mut msg = tokio::select! {
            () = shutdown_token.cancelled() => break,
            msg = rx.recv() => match msg {
                Some(msg) => msg,
                None => break,
            },
        };

        // Handle dynamic option callbacks — route directly to Manager
        // session, bypassing the user's currently active role.
        if is_callback(&msg.content) {
            spawn(handle_option_callback(msg));
            continue;
        }

        // Handle action callbacks (__act__ prefix) — route to inline handler
        // that updates config / clears session without involving the Manager agent.
        if is_action(&msg.content) {
            handle_action_callback(msg).await;
            continue;
        }

        if handle_dispatch_command(&mut msg).await {
            continue;
        }

        spawn(process_channel_message(msg));
    }
}

/// Handle a dispatch-level command. Returns `true` if the message was handled
/// (loop should `continue`), `false` if it should be processed by the agent.
async fn handle_dispatch_command(msg: &mut ChannelMessage) -> bool {
    let cmd = parse(&msg.content);
    let Some(cmd) = cmd else {
        return false;
    };

    // Only Telegram gets the /start inline keyboard; GUI and other channels
    // route /start as a normal message (returns false to fall through to
    // process_channel_message).
    if msg.source_channel != "telegram" {
        return false;
    }

    match cmd {
        Command::Start => handle_start_command(msg).await,
    }
    true
}

/// Handle `/start` command for Telegram — sends an inline keyboard with
/// context-appropriate action buttons.
async fn handle_start_command(msg: &ChannelMessage) {
    let Some(reply_markup) = build_start_keyboard(msg).await else {
        return;
    };
    let reply = mahbot::SendMessage {
        content: "Choose an action:".to_string(),
        recipient: msg.reply_target.clone(),
        reply_markup: Some(reply_markup),
        agent_role: None,
        workspace: msg.workspace.clone(),
    };
    // Send directly through the channel so the inline_keyboard structure
    // (rows of buttons) is preserved exactly — send_channel_reply_with_buttons
    // wraps everything in a single row.
    if let Some(channel) = mahbot::channel_registry().get(&msg.source_channel) {
        let _ = channel.send(&reply).await;
    }
}

/// Build inline keyboard for `/start` based on the user's current role.
///
/// Returns the full Telegram `inline_keyboard` JSON array, where each element
/// is a row (list of buttons in that row). Currently each button gets its own
/// row. Returns `None` if the caller is not on a Telegram channel.
///
/// For Artist: shows image model selection, video model selection, and clear session.
/// For other roles: shows only clear session.
async fn build_start_keyboard(msg: &ChannelMessage) -> Option<serde_json::Value> {
    // Only Telegram gets inline keyboards — other channels get None
    if msg.source_channel != "telegram" {
        return None;
    }

    let role = mahbot::users::resolve_active_role(&msg.user_name).await;

    let rows = if role == Role::Artist {
        let mut rows: Vec<serde_json::Value> = Vec::new();

        // Image model buttons — each on its own row
        build_model_button_rows(
            &mut rows,
            &CONFIG.image_gen_models(),
            &CONFIG.image_gen_model(),
            "__act__set_image_model",
        );

        // Video model buttons — each on its own row
        build_model_button_rows(
            &mut rows,
            &CONFIG.video_gen_models(),
            &CONFIG.video_gen_model(),
            "__act__set_video_model",
        );

        // Clear session button
        rows.push(serde_json::json!([{
            "text": "Clear session",
            "callback_data": "__act__clear_session|",
        }]));

        rows
    } else {
        // Non-Artist: just a clear session button
        vec![serde_json::json!([{
            "text": "Clear session",
            "callback_data": "__act__clear_session|",
        }])]
    };

    Some(serde_json::json!({ "inline_keyboard": rows }))
}

/// Push one row per model to `rows`, marking the active model with ✓.
fn build_model_button_rows(
    rows: &mut Vec<serde_json::Value>,
    models: &[String],
    active_model: &str,
    action_prefix: &str,
) {
    for model in models {
        let label = if model == active_model {
            format!("\u{2713} {model}")
        } else {
            model.clone()
        };
        rows.push(serde_json::json!([{
            "text": label,
            "callback_data": format!("{action_prefix}|{model}"),
        }]));
    }
}

/// Handle an action callback (`__act__` prefix).
///
/// Actions are processed inline without involving the Manager agent queue.
async fn handle_action_callback(msg: ChannelMessage) {
    let Some((action, payload)) = decode_action(&msg.content) else {
        tracing::warn!("Malformed __act__ callback data: {}", &msg.content);
        return;
    };

    match action.as_str() {
        "set_image_model" => {
            handle_set_model_action(&msg, &payload, "image_gen_model", "Image").await;
        }
        "set_video_model" => {
            handle_set_model_action(&msg, &payload, "video_gen_model", "Video").await;
        }
        "clear_session" => {
            // Acknowledge callback silently first (dismiss spinner)
            answer_telegram_callback(&msg, None).await;

            // Resolve role and reset session
            let role = mahbot::users::resolve_active_role(&msg.user_name).await;
            let session_key = build_session_key(&msg.user_name, &role, &msg.source_channel).await;
            let reply = Session::reset(&session_key).await;
            send_channel_reply(reply, &msg).await;
        }
        _ => {
            // Always acknowledge callback queries to dismiss the Telegram
            // loading spinner, even for unknown actions.
            answer_telegram_callback(&msg, None).await;
            tracing::warn!(action = %action, "Unknown __act__ action — ignoring");
        }
    }
}

/// Common handler for setting a model config field via callback action.
///
/// Validates payload, writes to `config_kv` table, updates the in-memory
/// config, and acknowledges the callback with a toast.
async fn handle_set_model_action(
    msg: &ChannelMessage,
    payload: &str,
    config_key: &str,
    display_name: &str,
) {
    if payload.is_empty() {
        tracing::warn!(config_key, "{config_key} action with empty payload");
        answer_telegram_callback(msg, Some("No model specified.".to_string())).await;
        return;
    }
    // Direct-write to config_kv table (bypasses save_and_reload which
    // triggers provider warmup — unnecessary for a model name change).
    let store = mahbot::config_db::store();
    if let Err(e) = store.set_kv(config_key, payload).await {
        tracing::error!(config_key, error = %e, "Failed to save {config_key}");
        answer_telegram_callback(msg, Some(format!("Failed to save model: {e}"))).await;
        return;
    }
    // Lightweight in-memory update — no DB read, no provider warmup
    let _ = CONFIG.set_string_field_and_apply(config_key, payload);

    answer_telegram_callback(
        msg,
        Some(format!("{display_name} generation model set to: {payload}")),
    )
    .await;
}

/// Acknowledge a Telegram callback query with an optional toast message.
/// If the message doesn't have a `callback_query_id` (non-Telegram channel),
/// this is a no-op.
async fn answer_telegram_callback(msg: &ChannelMessage, toast: Option<String>) {
    let Some(cq_id) = &msg.callback_query_id else {
        return;
    };
    if let Some(channel) = mahbot::channel_registry().get("telegram")
        && let Some(tc) = channel
            .as_any()
            .downcast_ref::<mahbot::channels::telegram::TelegramChannel>()
    {
        tc.answer_callback_query(cq_id, toast.as_deref()).await;
    }
}

async fn process_channel_message(mut msg: ChannelMessage) {
    tracing::info!(
        "💬 [{}] from {}: {}",
        msg.source_channel,
        msg.user_name,
        mahbot::util::truncate(&msg.content, 80)
    );

    let ws = resolve_workspace_for_user(&msg).await;

    // Populate workspace on the message so downstream broadcasts and
    // chat_history writes carry the correct workspace (non-Manager agent
    // responses go through send_channel_reply_with_buttons, which reads
    // msg.workspace for broadcast filtering).
    msg.workspace = ws.name.clone();

    // Broadcast incoming user message to GUI dashboard and persist to
    // chat_history. Workspace resolution must happen first so the
    // workspace field is correct.
    write_incoming_to_broadcast(&msg).await;

    let role = mahbot::users::resolve_active_role(&msg.user_name).await;

    // Personal workspaces do not support the Manager agent — no board
    // pipeline, no maintainer. If the role is Manager and we're in a
    // personal workspace, fall back to Analyst.
    let effective_role = if role == Role::Manager && mahbot::users::is_personal_workspace(&ws.name)
    {
        Role::Analyst
    } else {
        role
    };

    // Enrichment: multimodal + link summarization — applied after
    // effective_role resolution so the correct role's settings are used.
    enrich_message_for_role(&mut msg, effective_role, &ws).await;

    // Manager messages route through the serialized queue; non-Manager roles
    // use the traditional inline agent dispatch path.
    if effective_role == Role::Manager {
        manager_queue::manager_queue().enqueue(manager_queue::ManagerJob {
            content: msg.content.clone(),
            workspace_name: ws.name.clone(),
            kind: manager_queue::JobKind::UserMessage,
        });
        return;
    }

    // ── Non-Manager inline agent dispatch ─────────────────────────
    // Agent creation, work execution, and reply delivery all happen
    // inline in the calling task.

    let session_key = direct_session_key(
        &msg.source_channel,
        &msg.user_name,
        effective_role.as_str(),
        &ws.name,
    );
    let mut agent = Agent::new(session_key, effective_role, &ws, None);
    let cancel = agent.cancel_token();
    let typing_handle = spawn_scoped_typing_task(
        msg.reply_target.clone(),
        msg.source_channel.clone(),
        cancel.clone(),
    );

    let agent_result = tokio::select! {
        () = cancel.cancelled() => return,
        result = agent.work(&msg.content) => result,
    };

    let response = match agent_result {
        Ok(response) => response,
        Err(e) => {
            tracing::error!("❌ Agent error: {e}");
            format!("⚠️ `{e}`")
        }
    };

    if agent.is_cancelled() {
        stop_typing(typing_handle).await;
        return;
    }

    send_channel_reply_with_buttons(response, &msg, None, Some(effective_role.to_string())).await;

    cancel.cancel();
    stop_typing(typing_handle).await;
}

/// Parse a channel message's content and classify it.
///
/// Command names are case-insensitive. `/start` is the only recognized command.
/// All other `/`-prefixed text is treated as a normal message (routed to agent).
#[must_use]
pub fn parse(content: &str) -> Option<Command> {
    let cmd_line = content.trim().strip_prefix('/')?;
    let (cmd, _arg) = cmd_line
        .split_once(' ')
        .map_or((cmd_line, ""), |(c, a)| (c, a.trim()));

    match cmd.to_ascii_lowercase().as_str() {
        "start" => Some(Command::Start),
        _ => None,
    }
}