zeptoclaw 0.7.4

Ultra-lightweight personal AI assistant
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
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
//! Container-based agent proxy that spawns containers for each request
//!
//! This module provides the `ContainerAgentProxy` which runs agents in isolated
//! containers (Docker or Apple Container), enabling multi-user scenarios with
//! proper isolation.

use std::path::Path;
use std::process::Stdio;
use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, RwLock};
use std::time::Duration;

use tokio::io::AsyncWriteExt;
use tokio::process::Command;
use tokio::sync::{watch, Semaphore};
use tracing::{debug, error, info, warn};
use uuid::Uuid;

use crate::bus::{InboundMessage, MessageBus, OutboundMessage};
use crate::config::{Config, ContainerAgentBackend, ContainerAgentConfig};
use crate::error::{Result, ZeptoError};
use crate::health::UsageMetrics;
use crate::security::mount::validate_mount_not_blocked;
use crate::security::pairing::PairingManager;
use crate::session::SessionManager;

use super::idempotency::IdempotencyStore;
use super::ipc::{parse_marked_response, AgentRequest, AgentResponse, AgentResult};
use super::rate_limit::GatewayRateLimiter;

const CONTAINER_WORKSPACE_DIR: &str = "/data/.zeptoclaw/workspace";
const CONTAINER_SESSIONS_DIR: &str = "/data/.zeptoclaw/sessions";
const CONTAINER_CONFIG_PATH: &str = "/data/.zeptoclaw/config.json";

/// Path inside the container where the env file is mounted (Apple Container only).
#[cfg(target_os = "macos")]
const CONTAINER_ENV_DIR: &str = "/tmp/zeptoclaw-env";

/// Resolved backend after auto-detection.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ResolvedBackend {
    Docker,
    #[cfg(target_os = "macos")]
    Apple,
}

impl std::fmt::Display for ResolvedBackend {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ResolvedBackend::Docker => write!(f, "docker"),
            #[cfg(target_os = "macos")]
            ResolvedBackend::Apple => write!(f, "apple-container"),
        }
    }
}

#[derive(Debug, Clone)]
struct ContainerInvocation {
    binary: String,
    args: Vec<String>,
    env: Vec<(String, String)>,
    /// Temp directory to clean up after container exits (Apple Container env file).
    temp_dir: Option<std::path::PathBuf>,
}

/// Proxy that spawns containers to process agent requests.
///
/// Each inbound message is processed in an isolated container, providing
/// security isolation for multi-user scenarios.
pub struct ContainerAgentProxy {
    config: Config,
    container_config: ContainerAgentConfig,
    bus: Arc<MessageBus>,
    session_manager: Option<SessionManager>,
    running: AtomicBool,
    shutdown_tx: watch::Sender<bool>,
    shutdown_rx: watch::Receiver<bool>,
    usage_metrics: RwLock<Option<Arc<UsageMetrics>>>,
    resolved_backend: ResolvedBackend,
    semaphore: Arc<Semaphore>,
    /// Optional pairing manager for device token validation.
    /// Present only when `config.pairing.enabled` is true.
    pairing: Option<std::sync::Mutex<PairingManager>>,
    /// Per-IP rate limiter (None when both limits are 0 = unlimited).
    rate_limiter: Option<Arc<GatewayRateLimiter>>,
    /// Idempotency store for deduplicating messages with a "message_id" metadata key.
    idempotency: Arc<IdempotencyStore>,
}

impl ContainerAgentProxy {
    /// Create a new container agent proxy with explicit resolved backend.
    pub fn new(config: Config, bus: Arc<MessageBus>, backend: ResolvedBackend) -> Self {
        let (shutdown_tx, shutdown_rx) = watch::channel(false);
        let container_config = config.container_agent.clone();
        let max_concurrent = container_config.max_concurrent.max(1);
        let session_manager = match SessionManager::new() {
            Ok(manager) => Some(manager),
            Err(e) => {
                warn!(
                    "Failed to initialize session manager for container agent proxy: {}",
                    e
                );
                None
            }
        };

        let pairing = if config.pairing.enabled {
            Some(std::sync::Mutex::new(PairingManager::new(
                config.pairing.max_attempts,
                config.pairing.lockout_secs,
            )))
        } else {
            None
        };

        let rl = &config.gateway.rate_limit;
        let rate_limiter = if rl.pair_per_min > 0 || rl.webhook_per_min > 0 {
            Some(Arc::new(GatewayRateLimiter::new(
                rl.pair_per_min,
                rl.webhook_per_min,
                Duration::from_secs(60),
            )))
        } else {
            None
        };

        let idempotency = Arc::new(IdempotencyStore::new(
            Duration::from_secs(300), // 5-minute dedup window
            10_000,                   // max tracked IDs
        ));

        Self {
            config,
            container_config,
            bus,
            session_manager,
            running: AtomicBool::new(false),
            shutdown_tx,
            shutdown_rx,
            usage_metrics: RwLock::new(None),
            resolved_backend: backend,
            semaphore: Arc::new(Semaphore::new(max_concurrent)),
            pairing,
            rate_limiter,
            idempotency,
        }
    }

    /// Return the resolved backend.
    pub fn backend(&self) -> ResolvedBackend {
        self.resolved_backend
    }

    /// Enable usage metrics collection for this proxy.
    pub fn set_usage_metrics(&self, metrics: Arc<UsageMetrics>) {
        match self.usage_metrics.write() {
            Ok(mut guard) => *guard = Some(metrics),
            Err(e) => warn!("Failed to set usage metrics (poisoned lock): {}", e),
        }
    }

    /// Start the proxy loop, processing messages from the bus.
    ///
    /// Each inbound message is processed concurrently in its own spawned task,
    /// gated by a semaphore that limits the number of simultaneous container
    /// invocations to `container_agent.max_concurrent` (default: 5).
    pub async fn start(self: Arc<Self>) -> Result<()> {
        if self.running.swap(true, Ordering::SeqCst) {
            return Err(ZeptoError::Config(
                "Container agent proxy already running".into(),
            ));
        }

        info!(
            "Starting containerized agent proxy (backend={}, max_concurrent={})",
            self.resolved_backend, self.container_config.max_concurrent,
        );

        let mut shutdown_rx = self.shutdown_rx.clone();

        loop {
            tokio::select! {
                _ = shutdown_rx.changed() => {
                    if *shutdown_rx.borrow() {
                        info!("Container agent proxy shutting down");
                        break;
                    }
                }
                msg = self.bus.consume_inbound() => {
                    match msg {
                        Some(inbound) => {
                            // Rate limit check (by source_ip metadata if present)
                            if let Some(ref limiter) = self.rate_limiter {
                                if let Some(ip_str) = inbound.metadata.get("source_ip") {
                                    if let Ok(ip) = ip_str.parse::<std::net::IpAddr>() {
                                        if !limiter.check_webhook(ip) {
                                            warn!(
                                                sender = %inbound.sender_id,
                                                ip = %ip,
                                                "Rate limited inbound message"
                                            );
                                            let rejection = OutboundMessage::new(
                                                &inbound.channel,
                                                &inbound.chat_id,
                                                "Rate limit exceeded. Please wait before sending another message.",
                                            );
                                            if let Err(e) = self.bus.publish_outbound(rejection).await {
                                                error!("Failed to publish rate limit rejection: {}", e);
                                            }
                                            continue;
                                        }
                                    }
                                }
                            }

                            // Idempotency check (by message_id metadata if present)
                            if let Some(msg_id) = inbound.metadata.get("message_id") {
                                let key = format!("{}:{}", inbound.channel, msg_id);
                                if !self.idempotency.check_and_record(&key) {
                                    debug!(
                                        sender = %inbound.sender_id,
                                        msg_id = %msg_id,
                                        "Skipping duplicate message"
                                    );
                                    continue;
                                }
                            }

                            // Device pairing check: if enabled, validate bearer token
                            if let Some(ref pairing_mutex) = self.pairing {
                                let identifier = inbound.sender_id.clone();
                                let token = inbound.metadata.get("auth_token").cloned();
                                let valid = match token {
                                    Some(raw_token) => {
                                        match pairing_mutex.lock() {
                                            Ok(mut mgr) => mgr.validate_token(&raw_token, &identifier).is_some(),
                                            Err(_) => false,
                                        }
                                    }
                                    None => false,
                                };
                                if !valid {
                                    warn!(
                                        sender = %inbound.sender_id,
                                        channel = %inbound.channel,
                                        "Rejected unpaired device (pairing enabled)"
                                    );
                                    let rejection = OutboundMessage::new(
                                        &inbound.channel,
                                        &inbound.chat_id,
                                        "Access denied: device not paired. Use `zeptoclaw pair new` to generate a pairing code.",
                                    );
                                    if let Err(e) = self.bus.publish_outbound(rejection).await {
                                        error!("Failed to publish pairing rejection: {}", e);
                                    }
                                    continue;
                                }
                            }

                            let permit = self.semaphore.clone().acquire_owned().await;
                            match permit {
                                Ok(permit) => {
                                    let proxy = Arc::clone(&self);
                                    tokio::spawn(async move {
                                        let response = proxy.process_in_container(&inbound).await;
                                        if let Err(e) = proxy.bus.publish_outbound(response).await {
                                            error!("Failed to publish response: {}", e);
                                        }
                                        drop(permit);
                                    });
                                }
                                Err(_) => {
                                    error!("Concurrency semaphore closed unexpectedly");
                                    break;
                                }
                            }
                        }
                        None => {
                            error!("Inbound channel closed");
                            break;
                        }
                    }
                }
            }
        }

        self.running.store(false, Ordering::SeqCst);
        Ok(())
    }

    /// Stop the proxy loop.
    pub fn stop(&self) {
        let _ = self.shutdown_tx.send(true);
    }

    /// Check if the proxy is running.
    pub fn is_running(&self) -> bool {
        self.running.load(Ordering::SeqCst)
    }

    /// Process a message in a container.
    async fn process_in_container(&self, message: &InboundMessage) -> OutboundMessage {
        let usage_metrics = self
            .usage_metrics
            .read()
            .ok()
            .and_then(|guard| guard.clone());
        if let Some(metrics) = usage_metrics.as_ref() {
            metrics.record_request();
        }

        let request_id = Uuid::new_v4().to_string();
        let session_snapshot = self.load_session_snapshot(&message.session_key).await;

        let request = AgentRequest {
            request_id: request_id.clone(),
            message: message.clone(),
            agent_config: self.config.agents.defaults.clone(),
            session: session_snapshot,
        };

        match self.spawn_container(&request).await {
            Ok(response) => {
                // Record usage metrics reported by the containerized agent.
                if let (Some(metrics), Some(usage)) =
                    (usage_metrics.as_ref(), response.usage.as_ref())
                {
                    metrics.record_tokens(usage.input_tokens, usage.output_tokens);
                    metrics.record_tool_calls(usage.tool_calls);
                    if usage.errors > 0 {
                        metrics
                            .errors
                            .fetch_add(usage.errors, std::sync::atomic::Ordering::Relaxed);
                    }
                }

                match response.result {
                    AgentResult::Success { content, session } => {
                        self.persist_session_snapshot(&message.session_key, session)
                            .await;
                        OutboundMessage::new(&message.channel, &message.chat_id, &content)
                    }
                    AgentResult::Error { message: err, .. } => {
                        // Only record a request-level error when the usage
                        // snapshot is absent; when present, the error count
                        // was already replayed above via usage.errors.
                        if response.usage.is_none() {
                            if let Some(metrics) = usage_metrics.as_ref() {
                                metrics.record_error();
                            }
                        }
                        OutboundMessage::new(
                            &message.channel,
                            &message.chat_id,
                            &format!("Error: {}", err),
                        )
                    }
                }
            }
            Err(e) => {
                error!("Container execution failed: {}", e);
                if let Some(metrics) = usage_metrics.as_ref() {
                    metrics.record_error();
                }
                OutboundMessage::new(
                    &message.channel,
                    &message.chat_id,
                    &format!("Container error: {}", e),
                )
            }
        }
    }

    async fn load_session_snapshot(&self, session_key: &str) -> Option<crate::session::Session> {
        let manager = self.session_manager.as_ref()?;

        match manager.get(session_key).await {
            Ok(session) => session,
            Err(e) => {
                warn!("Failed to load session snapshot for {}: {}", session_key, e);
                None
            }
        }
    }

    async fn persist_session_snapshot(
        &self,
        expected_session_key: &str,
        session: Option<crate::session::Session>,
    ) {
        let Some(session) = session else {
            return;
        };

        if session.key != expected_session_key {
            warn!(
                expected = %expected_session_key,
                actual = %session.key,
                "Ignoring container session snapshot with mismatched key"
            );
            return;
        }

        let Some(manager) = self.session_manager.as_ref() else {
            return;
        };

        if let Err(e) = manager.save(&session).await {
            warn!(
                session = %expected_session_key,
                "Failed to persist container session snapshot: {}",
                e
            );
        }
    }

    /// Spawn a container and communicate via stdin/stdout.
    async fn spawn_container(&self, request: &AgentRequest) -> Result<AgentResponse> {
        let config_root = dirs::home_dir().unwrap_or_default().join(".zeptoclaw");
        let workspace_dir = config_root.join("workspace");
        let sessions_dir = config_root.join("sessions");
        let config_path = config_root.join("config.json");

        tokio::fs::create_dir_all(&workspace_dir)
            .await
            .map_err(|e| ZeptoError::Config(format!("Failed to create workspace dir: {}", e)))?;
        tokio::fs::create_dir_all(&sessions_dir)
            .await
            .map_err(|e| ZeptoError::Config(format!("Failed to create sessions dir: {}", e)))?;
        tokio::fs::create_dir_all(&config_root)
            .await
            .map_err(|e| ZeptoError::Config(format!("Failed to create config dir: {}", e)))?;

        let invocation = match self.resolved_backend {
            ResolvedBackend::Docker => {
                self.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path)?
            }
            #[cfg(target_os = "macos")]
            ResolvedBackend::Apple => {
                self.build_apple_invocation(&workspace_dir, &sessions_dir, &config_path)
                    .await?
            }
        };

        debug!(
            request_id = %request.request_id,
            backend = %self.resolved_backend,
            image = %self.container_config.image,
            args_len = invocation.args.len(),
            env_len = invocation.env.len(),
            "Spawning containerized agent request"
        );

        let mut command = Command::new(&invocation.binary);
        command.args(&invocation.args);
        for (name, value) in &invocation.env {
            command.env(name, value);
        }

        let result = self.run_container_process(&mut command, request).await;

        // Clean up temp dir (Apple Container env file) regardless of outcome.
        if let Some(ref temp_dir) = invocation.temp_dir {
            if let Err(e) = tokio::fs::remove_dir_all(temp_dir).await {
                warn!("Failed to clean up temp env dir {:?}: {}", temp_dir, e);
            }
        }

        result
    }

    /// Run the container process, write request to stdin, and parse output.
    async fn run_container_process(
        &self,
        command: &mut Command,
        request: &AgentRequest,
    ) -> Result<AgentResponse> {
        let mut child = command
            .stdin(Stdio::piped())
            .stdout(Stdio::piped())
            .stderr(Stdio::piped())
            .spawn()
            .map_err(|e| ZeptoError::Config(format!("Failed to spawn container: {}", e)))?;

        // Write request to stdin
        let request_json = serde_json::to_string(request)
            .map_err(|e| ZeptoError::Config(format!("Failed to serialize request: {}", e)))?;

        if let Some(mut stdin) = child.stdin.take() {
            stdin
                .write_all(request_json.as_bytes())
                .await
                .map_err(|e| ZeptoError::Config(format!("Failed to write to stdin: {}", e)))?;
            stdin.write_all(b"\n").await?;
            stdin.shutdown().await?;
        }

        // Wait for output with timeout.
        //
        // On timeout the inner future (and the `Child`) is dropped. On Unix,
        // dropping a `tokio::process::Child` sends SIGKILL if the process is
        // still running, so the container process IS cleaned up.  We log a
        // warning here to make this implicit behaviour visible in traces.
        let timeout_duration = Duration::from_secs(self.container_config.timeout_secs);
        let output = tokio::time::timeout(timeout_duration, child.wait_with_output())
            .await
            .map_err(|_| {
                warn!(
                    timeout_secs = self.container_config.timeout_secs,
                    "Container process timed out; child will be killed on drop (SIGKILL)"
                );
                ZeptoError::Config(format!(
                    "Container timeout after {}s: process killed",
                    self.container_config.timeout_secs
                ))
            })?
            .map_err(|e| ZeptoError::Config(format!("Container failed: {}", e)))?;

        if !output.status.success() {
            let stderr = String::from_utf8_lossy(&output.stderr);
            return Err(ZeptoError::Config(format!(
                "Container exited with code {:?}: {}",
                output.status.code(),
                stderr
            )));
        }

        let stdout = String::from_utf8_lossy(&output.stdout);
        parse_marked_response(&stdout)
            .ok_or_else(|| ZeptoError::Config("Failed to parse container response".into()))
    }

    /// Collect env var pairs to pass into the container.
    fn collect_env_vars(&self) -> Vec<(String, String)> {
        let mut env_vars = Vec::new();

        // Provider API keys
        if let Some(ref anthropic) = self.config.providers.anthropic {
            if let Some(ref key) = anthropic.api_key {
                if !key.trim().is_empty() {
                    env_vars.push((
                        "ZEPTOCLAW_PROVIDERS_ANTHROPIC_API_KEY".to_string(),
                        key.clone(),
                    ));
                }
            }
            if let Some(ref base) = anthropic.api_base {
                if !base.trim().is_empty() {
                    env_vars.push((
                        "ZEPTOCLAW_PROVIDERS_ANTHROPIC_API_BASE".to_string(),
                        base.clone(),
                    ));
                }
            }
        }
        if let Some(ref openai) = self.config.providers.openai {
            if let Some(ref key) = openai.api_key {
                if !key.trim().is_empty() {
                    env_vars.push((
                        "ZEPTOCLAW_PROVIDERS_OPENAI_API_KEY".to_string(),
                        key.clone(),
                    ));
                }
            }
            if let Some(ref base) = openai.api_base {
                if !base.trim().is_empty() {
                    env_vars.push((
                        "ZEPTOCLAW_PROVIDERS_OPENAI_API_BASE".to_string(),
                        base.clone(),
                    ));
                }
            }
        }
        if let Some(ref openrouter) = self.config.providers.openrouter {
            if let Some(ref key) = openrouter.api_key {
                if !key.trim().is_empty() {
                    env_vars.push((
                        "ZEPTOCLAW_PROVIDERS_OPENROUTER_API_KEY".to_string(),
                        key.clone(),
                    ));
                }
            }
            if let Some(ref base) = openrouter.api_base {
                if !base.trim().is_empty() {
                    env_vars.push((
                        "ZEPTOCLAW_PROVIDERS_OPENROUTER_API_BASE".to_string(),
                        base.clone(),
                    ));
                }
            }
        }

        // Container-internal paths
        env_vars.push(("HOME".to_string(), "/data".to_string()));
        env_vars.push((
            "ZEPTOCLAW_AGENTS_DEFAULTS_WORKSPACE".to_string(),
            CONTAINER_WORKSPACE_DIR.to_string(),
        ));

        env_vars
    }

    /// Build Docker invocation arguments.
    fn build_docker_invocation(
        &self,
        workspace_dir: &Path,
        sessions_dir: &Path,
        config_path: &Path,
    ) -> Result<ContainerInvocation> {
        let mut args = vec![
            "run".to_string(),
            "--rm".to_string(),
            "-i".to_string(),
            "--network".to_string(),
            self.container_config.network.clone(),
        ];
        let env_vars = self.collect_env_vars();

        // Resource limits
        if let Some(ref mem) = self.container_config.memory_limit {
            args.push("--memory".to_string());
            args.push(mem.clone());
        }
        if let Some(ref cpu) = self.container_config.cpu_limit {
            args.push("--cpus".to_string());
            args.push(cpu.clone());
        }

        // Volume mounts
        args.push("-v".to_string());
        args.push(format!(
            "{}:{}",
            workspace_dir.display(),
            CONTAINER_WORKSPACE_DIR
        ));
        args.push("-v".to_string());
        args.push(format!(
            "{}:{}",
            sessions_dir.display(),
            CONTAINER_SESSIONS_DIR
        ));
        if config_path.exists() {
            args.push("-v".to_string());
            args.push(format!(
                "{}:{}:ro",
                config_path.display(),
                CONTAINER_CONFIG_PATH
            ));
        }

        // Environment variables — Docker uses `-e NAME` with process env for secrets
        let mut process_env = Vec::new();
        for (name, value) in &env_vars {
            args.push("-e".to_string());
            args.push(name.clone());
            process_env.push((name.clone(), value.clone()));
        }

        // Extra mounts from config — validate against blocked patterns first.
        for mount in &self.container_config.extra_mounts {
            validate_mount_not_blocked(mount)?;
            args.push("-v".to_string());
            args.push(mount.clone());
        }

        // Image and command
        args.push(self.container_config.image.clone());
        args.push("zeptoclaw".to_string());
        args.push("agent-stdin".to_string());

        let binary = validate_docker_binary(&self.container_config)?;

        Ok(ContainerInvocation {
            binary,
            args,
            env: process_env,
            temp_dir: None,
        })
    }

    /// Build Apple Container invocation arguments (macOS only).
    ///
    /// Key differences from Docker:
    /// - Binary: `container` not `docker`
    /// - RO mounts: `--mount type=bind,source=X,target=Y,readonly` (not `-v X:Y:ro`)
    /// - Env vars: `-e` flag is broken, use env file mount workaround
    /// - No `--memory`, `--cpus`, or `--network` flags
    /// - Needs explicit `--name` for container naming
    #[cfg(target_os = "macos")]
    async fn build_apple_invocation(
        &self,
        workspace_dir: &Path,
        sessions_dir: &Path,
        config_path: &Path,
    ) -> Result<ContainerInvocation> {
        let container_name = format!("zeptoclaw-{}", Uuid::new_v4());
        let mut args = vec![
            "run".to_string(),
            "--rm".to_string(),
            "-i".to_string(),
            "--name".to_string(),
            container_name,
        ];

        // Volume mounts — RW mounts use -v, RO mounts use --mount with readonly
        args.push("-v".to_string());
        args.push(format!(
            "{}:{}",
            workspace_dir.display(),
            CONTAINER_WORKSPACE_DIR
        ));
        args.push("-v".to_string());
        args.push(format!(
            "{}:{}",
            sessions_dir.display(),
            CONTAINER_SESSIONS_DIR
        ));
        if config_path.exists() {
            args.push("--mount".to_string());
            args.push(format!(
                "type=bind,source={},target={},readonly",
                config_path.display(),
                CONTAINER_CONFIG_PATH
            ));
        }

        // Extra mounts from config — validate against blocked patterns first.
        for mount in &self.container_config.extra_mounts {
            validate_mount_not_blocked(mount)?;
            args.push("-v".to_string());
            args.push(mount.clone());
        }

        // Env file workaround: Apple Container's -e flag is broken, so we write
        // env vars to a shell file, mount it read-only, and source it before exec.
        let env_vars = self.collect_env_vars();
        let temp_dir = tempfile::tempdir()
            .map_err(|e| ZeptoError::Config(format!("Failed to create temp dir for env: {}", e)))?;
        let env_file_path = temp_dir.path().join("env.sh");
        let env_content = generate_env_file_content(&env_vars);
        tokio::fs::write(&env_file_path, &env_content)
            .await
            .map_err(|e| ZeptoError::Config(format!("Failed to write env file: {}", e)))?;

        // Mount env dir read-only
        args.push("--mount".to_string());
        args.push(format!(
            "type=bind,source={},target={},readonly",
            temp_dir.path().display(),
            CONTAINER_ENV_DIR
        ));

        // Image
        args.push(self.container_config.image.clone());

        // Wrap command: source env file then exec zeptoclaw
        args.push("sh".to_string());
        args.push("-c".to_string());
        args.push(format!(
            ". {}/env.sh && exec zeptoclaw agent-stdin",
            CONTAINER_ENV_DIR
        ));

        // Keep temp_dir alive — `keep` prevents automatic cleanup on drop.
        let temp_path = temp_dir.keep();

        Ok(ContainerInvocation {
            binary: "container".to_string(),
            args,
            env: Vec::new(), // Env is passed via file mount, not process env
            temp_dir: Some(temp_path),
        })
    }
}

/// Generate shell-sourceable env file content.
///
/// Each variable is exported via `export NAME='VALUE'` with single quotes
/// escaped so that values containing special characters work correctly.
pub fn generate_env_file_content(env_vars: &[(String, String)]) -> String {
    let mut lines = Vec::with_capacity(env_vars.len() + 1);
    lines.push("#!/bin/sh".to_string());
    for (name, value) in env_vars {
        // Escape single quotes: replace ' with '\''
        let escaped = value.replace('\'', "'\\''");
        lines.push(format!("export {}='{}'", name, escaped));
    }
    lines.push(String::new()); // trailing newline
    lines.join("\n")
}

/// Resolve the container backend from config, performing auto-detection.
pub async fn resolve_backend(config: &ContainerAgentConfig) -> Result<ResolvedBackend> {
    match config.backend {
        ContainerAgentBackend::Docker => Ok(ResolvedBackend::Docker),
        #[cfg(target_os = "macos")]
        ContainerAgentBackend::Apple => Ok(ResolvedBackend::Apple),
        ContainerAgentBackend::Auto => auto_detect_backend(config).await,
    }
}

/// Auto-detect: on macOS try Apple Container first, then Docker.
async fn auto_detect_backend(config: &ContainerAgentConfig) -> Result<ResolvedBackend> {
    #[cfg(target_os = "macos")]
    {
        if is_apple_container_available().await {
            return Ok(ResolvedBackend::Apple);
        }
    }

    if is_docker_available_with_binary(configured_docker_binary_raw(config)).await {
        return Ok(ResolvedBackend::Docker);
    }

    Err(ZeptoError::Config(
        "No container backend available. Install Docker or Apple Container (macOS 15+).".into(),
    ))
}

/// Check if Docker is available and the daemon is running.
pub async fn is_docker_available() -> bool {
    is_docker_available_with_binary("docker").await
}

/// Check if a specific Docker binary is available and the daemon is running.
pub async fn is_docker_available_with_binary(binary: &str) -> bool {
    let binary = binary.trim();
    if binary.is_empty() {
        return false;
    }

    tokio::process::Command::new(binary)
        .args(["info"])
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .status()
        .await
        .map(|s| s.success())
        .unwrap_or(false)
}

/// Well-known Docker-compatible binary names that are accepted without path
/// validation.
const ALLOWED_DOCKER_BINARIES: &[&str] = &["docker", "podman"];

/// Resolve and validate the Docker binary from configuration.
///
/// Accepts:
/// - `None` / empty / whitespace-only -> defaults to `"docker"`
/// - A well-known name: `"docker"` or `"podman"`
/// - An absolute path that exists and is **not** inside a temp directory
///
/// Rejects everything else with a `SecurityViolation`.
fn validate_docker_binary(config: &ContainerAgentConfig) -> Result<String> {
    let raw = config
        .docker_binary
        .as_deref()
        .map(str::trim)
        .filter(|value| !value.is_empty());

    let binary = match raw {
        None => return Ok("docker".to_string()),
        Some(b) => b,
    };

    // Allow well-known names without further checks.
    if ALLOWED_DOCKER_BINARIES.contains(&binary) {
        return Ok(binary.to_string());
    }

    // Must be an absolute path.
    let path = Path::new(binary);
    if !path.is_absolute() {
        return Err(ZeptoError::SecurityViolation(format!(
            "docker_binary '{}' must be an absolute path or one of {:?}",
            binary, ALLOWED_DOCKER_BINARIES
        )));
    }

    // Must exist on disk.
    if !path.exists() {
        return Err(ZeptoError::SecurityViolation(format!(
            "docker_binary '{}' does not exist",
            binary
        )));
    }

    // Block temp directories to prevent untrusted binaries.
    let temp_prefixes: &[&str] = &["/tmp", "/var/tmp"];
    #[cfg(target_os = "macos")]
    let temp_prefixes_extra: &[&str] = &["/private/tmp", "/private/var/tmp"];
    #[cfg(not(target_os = "macos"))]
    let temp_prefixes_extra: &[&str] = &[];

    let lowered = binary.to_lowercase();
    for prefix in temp_prefixes.iter().chain(temp_prefixes_extra.iter()) {
        if lowered.starts_with(prefix) {
            return Err(ZeptoError::SecurityViolation(format!(
                "docker_binary '{}' is in a temporary directory; this is not allowed",
                binary
            )));
        }
    }

    warn!(
        docker_binary = binary,
        "Using non-default Docker binary from configuration"
    );

    Ok(binary.to_string())
}

/// Return the configured docker binary **without** validation.
///
/// This is only used in contexts where the caller needs the raw value for
/// probing (e.g. auto-detection).  The spawning code path always uses
/// [`validate_docker_binary`] instead.
fn configured_docker_binary_raw(config: &ContainerAgentConfig) -> &str {
    config
        .docker_binary
        .as_deref()
        .map(str::trim)
        .filter(|value| !value.is_empty())
        .unwrap_or("docker")
}

/// Check if Apple Container CLI is available (macOS only).
#[cfg(target_os = "macos")]
pub async fn is_apple_container_available() -> bool {
    // Check that the `container` binary exists and responds to --version
    let version_ok = tokio::process::Command::new("container")
        .arg("--version")
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .status()
        .await
        .map(|s| s.success())
        .unwrap_or(false);

    if !version_ok {
        return false;
    }

    // Also verify that `container run` is available via --help
    tokio::process::Command::new("container")
        .args(["run", "--help"])
        .stdout(Stdio::null())
        .stderr(Stdio::null())
        .status()
        .await
        .map(|s| s.success())
        .unwrap_or(false)
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::config::ProviderConfig;
    use tokio::time::{sleep, timeout};

    #[test]
    fn test_container_agent_proxy_creation() {
        let config = Config::default();
        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        assert!(!proxy.is_running());
        assert_eq!(proxy.backend(), ResolvedBackend::Docker);
    }

    #[test]
    fn test_build_docker_invocation_mounts_expected_paths_and_hides_secrets() {
        let mut config = Config::default();
        config.container_agent.image = "zeptoclaw:test".to_string();
        config.providers.anthropic = Some(ProviderConfig {
            api_key: Some("secret-anthropic-key".to_string()),
            ..Default::default()
        });

        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root =
            std::env::temp_dir().join(format!("zeptoclaw-proxy-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();
        std::fs::write(&config_path, "{}").unwrap();

        let invocation = proxy
            .build_docker_invocation(&workspace_dir, &sessions_dir, &config_path)
            .expect("build_docker_invocation should succeed with default binary");

        assert_eq!(invocation.binary, "docker");

        let workspace_mount = format!("{}:{}", workspace_dir.display(), CONTAINER_WORKSPACE_DIR);
        let sessions_mount = format!("{}:{}", sessions_dir.display(), CONTAINER_SESSIONS_DIR);
        let config_mount = format!("{}:{}:ro", config_path.display(), CONTAINER_CONFIG_PATH);

        assert!(has_arg_pair(&invocation.args, "-v", &workspace_mount));
        assert!(has_arg_pair(&invocation.args, "-v", &sessions_mount));
        assert!(has_arg_pair(&invocation.args, "-v", &config_mount));
        assert!(has_arg_pair(
            &invocation.args,
            "-e",
            "ZEPTOCLAW_PROVIDERS_ANTHROPIC_API_KEY"
        ));
        assert!(!invocation
            .args
            .iter()
            .any(|arg| arg.contains("secret-anthropic-key")));
        assert!(invocation.env.iter().any(|(name, value)| {
            name == "ZEPTOCLAW_PROVIDERS_ANTHROPIC_API_KEY" && value == "secret-anthropic-key"
        }));

        assert!(invocation.temp_dir.is_none());

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[tokio::test]
    async fn test_stop_unblocks_start_loop() {
        let config = Config::default();
        let bus = Arc::new(MessageBus::new());
        let proxy = Arc::new(ContainerAgentProxy::new(
            config,
            bus,
            ResolvedBackend::Docker,
        ));

        let proxy_task = Arc::clone(&proxy);
        let handle = tokio::spawn(async move { proxy_task.start().await });

        for _ in 0..50 {
            if proxy.is_running() {
                break;
            }
            sleep(Duration::from_millis(10)).await;
        }

        proxy.stop();
        let joined = timeout(Duration::from_secs(2), handle)
            .await
            .expect("proxy task should stop");
        joined
            .expect("proxy task should join")
            .expect("proxy start should exit cleanly");
        assert!(!proxy.is_running());
    }

    #[test]
    fn test_generate_env_file_content_basic() {
        let vars = vec![
            ("FOO".to_string(), "bar".to_string()),
            ("KEY".to_string(), "value with spaces".to_string()),
        ];
        let content = generate_env_file_content(&vars);
        assert!(content.starts_with("#!/bin/sh\n"));
        assert!(content.contains("export FOO='bar'"));
        assert!(content.contains("export KEY='value with spaces'"));
    }

    #[test]
    fn test_generate_env_file_content_special_chars() {
        let vars = vec![
            (
                "QUOTED".to_string(),
                "it's a \"test\" with $var".to_string(),
            ),
            ("EMPTY".to_string(), String::new()),
        ];
        let content = generate_env_file_content(&vars);
        // Single quotes inside value should be escaped
        assert!(content.contains("export QUOTED='it'\\''s a \"test\" with $var'"));
        assert!(content.contains("export EMPTY=''"));
    }

    #[test]
    fn test_collect_env_vars_includes_internal_paths() {
        let config = Config::default();
        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let vars = proxy.collect_env_vars();
        assert!(vars.iter().any(|(k, v)| k == "HOME" && v == "/data"));
        assert!(vars.iter().any(
            |(k, v)| k == "ZEPTOCLAW_AGENTS_DEFAULTS_WORKSPACE" && v == CONTAINER_WORKSPACE_DIR
        ));
    }

    #[test]
    fn test_build_docker_invocation_rejects_temp_binary() {
        let mut config = Config::default();
        config.container_agent.docker_binary = Some("/tmp/mock-docker".to_string());
        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root =
            std::env::temp_dir().join(format!("zeptoclaw-binary-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();
        std::fs::write(&config_path, "{}").unwrap();

        let result = proxy.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path);
        assert!(result.is_err());
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains("temporary directory") || err_msg.contains("does not exist"),
            "Expected temp dir or missing file error, got: {}",
            err_msg
        );

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[test]
    fn test_build_docker_invocation_accepts_well_known_binaries() {
        // "docker" is the default and should always work
        let config = Config::default();
        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root = std::env::temp_dir().join(format!("zeptoclaw-wk-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();
        std::fs::write(&config_path, "{}").unwrap();

        let invocation = proxy
            .build_docker_invocation(&workspace_dir, &sessions_dir, &config_path)
            .expect("default 'docker' binary should be accepted");
        assert_eq!(invocation.binary, "docker");

        // "podman" should also be accepted
        let mut config2 = Config::default();
        config2.container_agent.docker_binary = Some("podman".to_string());
        let bus2 = Arc::new(MessageBus::new());
        let proxy2 = ContainerAgentProxy::new(config2, bus2, ResolvedBackend::Docker);

        let invocation2 = proxy2
            .build_docker_invocation(&workspace_dir, &sessions_dir, &config_path)
            .expect("'podman' binary should be accepted");
        assert_eq!(invocation2.binary, "podman");

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[test]
    fn test_validate_docker_binary_rejects_relative_path() {
        let mut config = ContainerAgentConfig::default();
        config.docker_binary = Some("./my-docker".to_string());
        let result = validate_docker_binary(&config);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("absolute path"));
    }

    #[test]
    fn test_validate_docker_binary_rejects_nonexistent_absolute_path() {
        let mut config = ContainerAgentConfig::default();
        config.docker_binary = Some("/usr/local/bin/nonexistent-docker-zzz".to_string());
        let result = validate_docker_binary(&config);
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("does not exist"));
    }

    #[test]
    fn test_validate_docker_binary_defaults_to_docker_when_empty() {
        let mut config = ContainerAgentConfig::default();

        // None
        config.docker_binary = None;
        assert_eq!(validate_docker_binary(&config).unwrap(), "docker");

        // Empty string
        config.docker_binary = Some(String::new());
        assert_eq!(validate_docker_binary(&config).unwrap(), "docker");

        // Whitespace only
        config.docker_binary = Some("   ".to_string());
        assert_eq!(validate_docker_binary(&config).unwrap(), "docker");
    }

    #[cfg(not(target_os = "macos"))]
    #[tokio::test]
    async fn test_resolve_backend_auto_respects_docker_binary_override() {
        let mut config = ContainerAgentConfig::default();
        config.backend = ContainerAgentBackend::Auto;
        config.docker_binary = Some("/definitely-not-a-real-docker-binary".to_string());

        let result = resolve_backend(&config).await;
        assert!(result.is_err());
    }

    #[cfg(unix)]
    #[tokio::test]
    async fn test_proxy_end_to_end_with_mocked_docker_binary() {
        use std::os::unix::fs::PermissionsExt;

        // Place mock binary under the project target directory (not /tmp) so it
        // passes the validate_docker_binary temp-directory check.
        let manifest_dir = env!("CARGO_MANIFEST_DIR");
        let mock_dir = std::path::PathBuf::from(manifest_dir)
            .join("target")
            .join("test-mocks");
        std::fs::create_dir_all(&mock_dir).unwrap();
        let script_path = mock_dir.join(format!("mock-docker-{}.sh", Uuid::new_v4()));

        let chat_id = format!("chat-{}", Uuid::new_v4());
        let session_key = format!("test:{}", chat_id);
        let session_json = format!(
            r#"{{"request_id":"mock-req","result":{{"Success":{{"content":"mock response","session":{{"key":"{}","messages":[],"summary":null,"created_at":"2026-02-13T00:00:00Z","updated_at":"2026-02-13T00:00:00Z"}}}}}}}}"#,
            session_key
        );
        let script = format!(
            r#"#!/bin/sh
cat >/dev/null
cat <<'EOF'
<<<AGENT_RESPONSE_START>>>
{}
<<<AGENT_RESPONSE_END>>>
EOF
"#,
            session_json
        );
        std::fs::write(&script_path, script).unwrap();
        let mut permissions = std::fs::metadata(&script_path).unwrap().permissions();
        permissions.set_mode(0o755);
        std::fs::set_permissions(&script_path, permissions).unwrap();

        let mut config = Config::default();
        config.container_agent.image = "mock-image:latest".to_string();
        config.container_agent.timeout_secs = 5;
        config.container_agent.docker_binary = Some(script_path.to_string_lossy().to_string());

        let bus = Arc::new(MessageBus::new());
        let proxy = Arc::new(ContainerAgentProxy::new(
            config,
            bus.clone(),
            ResolvedBackend::Docker,
        ));

        let proxy_task = Arc::clone(&proxy);
        let handle = tokio::spawn(async move { proxy_task.start().await });

        let inbound = InboundMessage::new("test", "u1", &chat_id, "hello");
        bus.publish_inbound(inbound).await.unwrap();

        let outbound = timeout(Duration::from_secs(2), bus.consume_outbound())
            .await
            .expect("should receive outbound within timeout")
            .expect("outbound should be present");
        assert_eq!(outbound.channel, "test");
        assert_eq!(outbound.chat_id, chat_id);
        assert_eq!(outbound.content, "mock response");
        let saved_session = proxy
            .load_session_snapshot(&session_key)
            .await
            .expect("session snapshot should be persisted");
        assert_eq!(saved_session.key, session_key);
        if let Some(manager) = proxy.session_manager.as_ref() {
            let _ = manager.delete(&session_key).await;
        }

        proxy.stop();
        timeout(Duration::from_secs(2), handle)
            .await
            .expect("proxy should stop quickly")
            .expect("proxy task join should succeed")
            .expect("proxy start should return ok");

        // Clean up mock script
        let _ = std::fs::remove_file(&script_path);
    }

    #[test]
    fn test_container_agent_backend_serde_roundtrip() {
        // Auto
        let json = serde_json::to_string(&ContainerAgentBackend::Auto).unwrap();
        assert_eq!(json, "\"auto\"");
        let back: ContainerAgentBackend = serde_json::from_str(&json).unwrap();
        assert_eq!(back, ContainerAgentBackend::Auto);

        // Docker
        let json = serde_json::to_string(&ContainerAgentBackend::Docker).unwrap();
        assert_eq!(json, "\"docker\"");
        let back: ContainerAgentBackend = serde_json::from_str(&json).unwrap();
        assert_eq!(back, ContainerAgentBackend::Docker);

        // Apple (macOS only)
        #[cfg(target_os = "macos")]
        {
            let json = serde_json::to_string(&ContainerAgentBackend::Apple).unwrap();
            assert_eq!(json, "\"apple\"");
            let back: ContainerAgentBackend = serde_json::from_str(&json).unwrap();
            assert_eq!(back, ContainerAgentBackend::Apple);
        }
    }

    // -----------------------------------------------------------------------
    // Issue 2: extra_mounts blocked-pattern validation
    // -----------------------------------------------------------------------

    #[test]
    fn test_build_docker_invocation_rejects_sensitive_extra_mount() {
        let mut config = Config::default();
        config.container_agent.extra_mounts = vec!["/home/user/.ssh:/container/.ssh".to_string()];

        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root =
            std::env::temp_dir().join(format!("zeptoclaw-mount-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();

        let result = proxy.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path);
        assert!(result.is_err());
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains(".ssh"),
            "Expected .ssh blocked pattern in error, got: {}",
            err_msg
        );

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[test]
    fn test_build_docker_invocation_rejects_env_file_mount() {
        let mut config = Config::default();
        config.container_agent.extra_mounts = vec!["/app/.env:/container/.env".to_string()];

        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root = std::env::temp_dir().join(format!("zeptoclaw-env-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();

        let result = proxy.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path);
        assert!(result.is_err());
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains(".env"),
            "Expected .env blocked pattern in error, got: {}",
            err_msg
        );

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[test]
    fn test_build_docker_invocation_rejects_aws_credentials_mount() {
        let mut config = Config::default();
        config.container_agent.extra_mounts = vec!["/home/user/.aws:/container/aws:ro".to_string()];

        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root = std::env::temp_dir().join(format!("zeptoclaw-aws-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();

        let result = proxy.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path);
        assert!(result.is_err());
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains(".aws"),
            "Expected .aws blocked pattern in error, got: {}",
            err_msg
        );

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[test]
    fn test_build_docker_invocation_rejects_traversal_in_extra_mount() {
        let mut config = Config::default();
        config.container_agent.extra_mounts =
            vec!["/home/user/../etc/passwd:/container/passwd".to_string()];

        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root =
            std::env::temp_dir().join(format!("zeptoclaw-trav-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();

        let result = proxy.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path);
        assert!(result.is_err());
        let err_msg = result.unwrap_err().to_string();
        assert!(
            err_msg.contains("traversal"),
            "Expected path traversal error, got: {}",
            err_msg
        );

        let _ = std::fs::remove_dir_all(&temp_root);
    }

    #[test]
    fn test_build_docker_invocation_accepts_safe_extra_mount() {
        // Create a real directory to mount — no blocked patterns in path
        let mount_root =
            std::env::temp_dir().join(format!("zeptoclaw-safe-mount-{}", Uuid::new_v4()));
        let safe_dir = mount_root.join("project-data");
        std::fs::create_dir_all(&safe_dir).unwrap();

        let mut config = Config::default();
        config.container_agent.extra_mounts =
            vec![format!("{}:/container/data", safe_dir.display())];

        let bus = Arc::new(MessageBus::new());
        let proxy = ContainerAgentProxy::new(config, bus, ResolvedBackend::Docker);

        let temp_root =
            std::env::temp_dir().join(format!("zeptoclaw-safe-test-{}", Uuid::new_v4()));
        let workspace_dir = temp_root.join("workspace");
        let sessions_dir = temp_root.join("sessions");
        let config_path = temp_root.join("config.json");
        std::fs::create_dir_all(&workspace_dir).unwrap();
        std::fs::create_dir_all(&sessions_dir).unwrap();

        let result = proxy.build_docker_invocation(&workspace_dir, &sessions_dir, &config_path);
        assert!(result.is_ok(), "Safe mount should be accepted");
        let invocation = result.unwrap();
        assert!(
            invocation
                .args
                .iter()
                .any(|a| a.contains("/container/data")),
            "Extra mount should appear in args"
        );

        let _ = std::fs::remove_dir_all(&temp_root);
        let _ = std::fs::remove_dir_all(&mount_root);
    }

    // -----------------------------------------------------------------------
    // validate_mount_not_blocked unit tests (from security::mount)
    // -----------------------------------------------------------------------

    #[test]
    fn test_validate_mount_not_blocked_rejects_private_key() {
        let result = validate_mount_not_blocked("/home/user/private_key:/container/key");
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains("private_key"));
    }

    #[test]
    fn test_validate_mount_not_blocked_rejects_docker_dir() {
        let result = validate_mount_not_blocked("/home/user/.docker:/container/docker");
        assert!(result.is_err());
        assert!(result.unwrap_err().to_string().contains(".docker"));
    }

    #[test]
    fn test_validate_mount_not_blocked_rejects_invalid_container_path() {
        let result = validate_mount_not_blocked("/home/user/data:relative/path");
        assert!(result.is_err());
        assert!(result
            .unwrap_err()
            .to_string()
            .contains("Invalid container"));
    }

    #[test]
    fn test_validate_mount_not_blocked_rejects_container_path_traversal() {
        let result = validate_mount_not_blocked("/home/user/data:/container/../etc");
        assert!(result.is_err());
        assert!(result
            .unwrap_err()
            .to_string()
            .contains("Invalid container"));
    }

    fn has_arg_pair(args: &[String], flag: &str, value: &str) -> bool {
        args.windows(2)
            .any(|window| window[0] == flag && window[1] == value)
    }
}