adk-code 0.6.0

Code execution substrate for ADK-Rust — typed executor abstraction, sandbox policy model, and built-in execution backends
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
//! Workspace and collaboration types for collaborative project builds.
//!
//! This module provides the [`Workspace`] abstraction for multi-agent code generation
//! and project-building flows, along with typed [`CollaborationEvent`]s that support
//! ownership, correlation, and wait/resume semantics.
//!
//! ## Overview
//!
//! A [`Workspace`] represents a shared project context where specialist agents
//! coordinate through typed collaboration events rather than raw pub/sub.
//! The collaboration model preserves ownership, correlation, and completion
//! semantics so agents can request dependencies and resume only when matching
//! work is published.
//!
//! ## Quick Start
//!
//! ```rust
//! use adk_code::Workspace;
//!
//! let workspace = Workspace::new("./demo-site")
//!     .project_name("demo-site")
//!     .session_id("session-123")
//!     .build();
//! assert_eq!(workspace.metadata().project_name, "demo-site");
//! ```
//!
//! ## Collaboration Events
//!
//! ```rust
//! use adk_code::{CollaborationEvent, CollaborationEventKind};
//!
//! let event = CollaborationEvent::new(
//!     "corr-001",
//!     "backend-api",
//!     "backend_engineer",
//!     CollaborationEventKind::WorkPublished,
//! );
//! assert_eq!(event.kind, CollaborationEventKind::WorkPublished);
//! ```
//!
//! ## Publish, Subscribe, and Wait/Resume
//!
//! ```rust,no_run
//! # async fn example() {
//! use adk_code::{CollaborationEvent, CollaborationEventKind, Workspace};
//! use std::time::Duration;
//!
//! let workspace = Workspace::new("./project").build();
//!
//! // Subscribe to all events
//! let mut rx = workspace.subscribe();
//!
//! // Publish an event
//! workspace.publish(CollaborationEvent::new(
//!     "corr-1", "api", "backend", CollaborationEventKind::WorkPublished,
//! ));
//!
//! // Wait for a correlated response
//! let result = workspace.wait_for("corr-1", Duration::from_secs(5)).await;
//! # }
//! ```

use serde::{Deserialize, Serialize};
use serde_json::Value;
use std::path::PathBuf;
use std::sync::{Arc, RwLock};
use std::time::Duration;
use tokio::sync::broadcast;

/// Default capacity for the internal broadcast channel.
const DEFAULT_CHANNEL_CAPACITY: usize = 256;

/// Internal shared state behind [`Workspace`].
///
/// This struct is wrapped in `Arc` so that `Workspace` can be cheaply cloned
/// and shared across agents and async tasks. The broadcast channel provides
/// the in-process collaboration transport.
#[derive(Debug)]
struct WorkspaceInner {
    /// The shared project root directory.
    root: PathBuf,
    /// Project and session metadata.
    metadata: WorkspaceMetadata,
    /// Sender side of the broadcast channel for collaboration events.
    tx: broadcast::Sender<CollaborationEvent>,
    /// Append-only event log so [`Workspace::events`] can return history
    /// regardless of when subscribers were created.
    event_log: RwLock<Vec<CollaborationEvent>>,
}

/// A shared project context for collaborative code generation and execution.
///
/// `Workspace` is the public anchor for multi-agent project-building flows.
/// It represents a shared project root, metadata, and collaboration state.
/// Specialist agents attached to the same workspace can publish and consume
/// typed [`CollaborationEvent`]s without configuring raw pub/sub directly.
///
/// Internally, `Workspace` uses `Arc<WorkspaceInner>` so it can be cheaply
/// cloned and shared across agents and async boundaries. The collaboration
/// transport is an in-process broadcast channel — transport details are hidden
/// from the public API.
///
/// Use [`Workspace::new`] to get a [`WorkspaceBuilder`] for ergonomic construction.
///
/// # Example
///
/// ```rust
/// use adk_code::Workspace;
///
/// let workspace = Workspace::new("./my-project")
///     .project_name("my-project")
///     .session_id("sess-abc")
///     .build();
///
/// assert_eq!(workspace.root(), &std::path::PathBuf::from("./my-project"));
/// assert_eq!(workspace.metadata().project_name, "my-project");
/// assert_eq!(workspace.metadata().session_id.as_deref(), Some("sess-abc"));
/// ```
#[derive(Debug, Clone)]
pub struct Workspace {
    inner: Arc<WorkspaceInner>,
}

impl Workspace {
    /// Start building a new workspace rooted at the given path.
    ///
    /// Returns a [`WorkspaceBuilder`] for fluent configuration.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("/tmp/project").build();
    /// assert_eq!(ws.root(), &std::path::PathBuf::from("/tmp/project"));
    /// ```
    // Intentional: `new` returns a builder per the design doc's fluent API
    // (`Workspace::new("./path").project_name("demo").build()`).
    #[allow(clippy::new_ret_no_self)]
    pub fn new(root: impl Into<PathBuf>) -> WorkspaceBuilder {
        WorkspaceBuilder {
            root: root.into(),
            project_name: None,
            session_id: None,
            created_at: None,
            channel_capacity: DEFAULT_CHANNEL_CAPACITY,
        }
    }

    /// The shared project root directory.
    pub fn root(&self) -> &PathBuf {
        &self.inner.root
    }

    /// Project and session metadata.
    pub fn metadata(&self) -> &WorkspaceMetadata {
        &self.inner.metadata
    }

    /// Publish a collaboration event to all subscribers.
    ///
    /// This is a non-blocking operation. If there are no active subscribers,
    /// the event is silently dropped. Returns the number of receivers that
    /// received the event.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::{CollaborationEvent, CollaborationEventKind, Workspace};
    ///
    /// let ws = Workspace::new("./proj").build();
    /// let mut rx = ws.subscribe();
    ///
    /// ws.publish(CollaborationEvent::new(
    ///     "c1", "api", "backend", CollaborationEventKind::WorkPublished,
    /// ));
    /// ```
    pub fn publish(&self, event: CollaborationEvent) -> usize {
        // Append to the persistent event log before broadcasting.
        if let Ok(mut log) = self.inner.event_log.write() {
            log.push(event.clone());
        }
        // If no receivers are listening, send returns Err — that is fine.
        self.inner.tx.send(event).unwrap_or(0)
    }

    /// Subscribe to collaboration events on this workspace.
    ///
    /// Returns a [`broadcast::Receiver`] that yields every event published
    /// after the subscription is created. Each subscriber gets its own
    /// independent stream of events.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::{CollaborationEvent, CollaborationEventKind, Workspace};
    ///
    /// let ws = Workspace::new("./proj").build();
    /// let mut rx = ws.subscribe();
    ///
    /// ws.publish(CollaborationEvent::new(
    ///     "c1", "topic", "producer", CollaborationEventKind::NeedWork,
    /// ));
    /// ```
    pub fn subscribe(&self) -> broadcast::Receiver<CollaborationEvent> {
        self.inner.tx.subscribe()
    }

    /// Wait for a collaboration event matching the given `correlation_id`.
    ///
    /// Subscribes to the workspace event stream and returns the first event
    /// whose `correlation_id` matches. If no matching event arrives within
    /// `timeout`, returns `None`.
    ///
    /// This implements the wait/resume pattern: an agent can publish a
    /// [`CollaborationEventKind::NeedWork`] event and then call `wait_for`
    /// to suspend until the matching [`CollaborationEventKind::WorkPublished`]
    /// (or other correlated response) arrives.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// # async fn example() {
    /// use adk_code::{CollaborationEvent, CollaborationEventKind, Workspace};
    /// use std::time::Duration;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// // In practice another agent would publish the matching event.
    /// let result = ws.wait_for("corr-42", Duration::from_millis(100)).await;
    /// assert!(result.is_none()); // timed out — no publisher
    /// # }
    /// ```
    pub async fn wait_for(
        &self,
        correlation_id: &str,
        timeout: Duration,
    ) -> Option<CollaborationEvent> {
        let mut rx = self.subscribe();
        let deadline = tokio::time::sleep(timeout);
        tokio::pin!(deadline);

        loop {
            tokio::select! {
                result = rx.recv() => {
                    match result {
                        Ok(event) if event.correlation_id == correlation_id => {
                            return Some(event);
                        }
                        Ok(_) => {
                            // Not our correlation — keep waiting.
                            continue;
                        }
                        Err(broadcast::error::RecvError::Lagged(skipped)) => {
                            tracing::warn!(
                                skipped,
                                "workspace subscriber lagged, {skipped} events dropped"
                            );
                            continue;
                        }
                        Err(broadcast::error::RecvError::Closed) => {
                            return None;
                        }
                    }
                }
                () = &mut deadline => {
                    return None;
                }
            }
        }
    }

    /// Get a snapshot of all events published to this workspace.
    ///
    /// Returns a clone of the internal event log. Unlike the broadcast
    /// channel (which has a fixed capacity and drops old events for slow
    /// subscribers), the event log retains every event published since
    /// workspace creation.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::{CollaborationEvent, CollaborationEventKind, Workspace};
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.publish(CollaborationEvent::new(
    ///     "c1", "topic", "producer", CollaborationEventKind::Completed,
    /// ));
    /// let events = ws.events();
    /// // events may contain the published event if still in the buffer
    /// ```
    pub fn events(&self) -> Vec<CollaborationEvent> {
        self.inner.event_log.read().map(|log| log.clone()).unwrap_or_default()
    }

    // ── Agent-facing workspace integration helpers ──────────────────────
    //
    // These thin wrappers make the common collaborative patterns easy
    // without exposing event construction details. Each method constructs
    // the appropriate `CollaborationEvent` and publishes it.

    /// Request work from another specialist or coordinator.
    ///
    /// Publishes a [`CollaborationEventKind::NeedWork`] event and returns
    /// the event that was published. The caller can then use
    /// [`Workspace::wait_for_work`] to suspend until the matching
    /// [`CollaborationEventKind::WorkPublished`] event arrives.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// let event = ws.request_work("corr-1", "api-routes", "frontend_engineer");
    /// assert_eq!(event.kind, adk_code::CollaborationEventKind::NeedWork);
    /// ```
    pub fn request_work(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
    ) -> CollaborationEvent {
        let event = CollaborationEvent::new(
            correlation_id,
            topic,
            producer,
            CollaborationEventKind::NeedWork,
        );
        self.publish(event.clone());
        event
    }

    /// Claim ownership of a requested work item.
    ///
    /// Publishes a [`CollaborationEventKind::WorkClaimed`] event to signal
    /// that this agent is taking responsibility for the work.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.claim_work("corr-1", "api-routes", "backend_engineer");
    /// ```
    pub fn claim_work(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
    ) {
        self.publish(CollaborationEvent::new(
            correlation_id,
            topic,
            producer,
            CollaborationEventKind::WorkClaimed,
        ));
    }

    /// Publish completed work to the workspace.
    ///
    /// Publishes a [`CollaborationEventKind::WorkPublished`] event with the
    /// given payload. Agents waiting via [`Workspace::wait_for_work`] on the
    /// same `correlation_id` will be resumed.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.publish_work(
    ///     "corr-1",
    ///     "api-routes",
    ///     "backend_engineer",
    ///     serde_json::json!({ "routes": ["/api/users"] }),
    /// );
    /// ```
    pub fn publish_work(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
        payload: Value,
    ) {
        self.publish(
            CollaborationEvent::new(
                correlation_id,
                topic,
                producer,
                CollaborationEventKind::WorkPublished,
            )
            .payload(payload),
        );
    }

    /// Request feedback from another specialist or reviewer.
    ///
    /// Publishes a [`CollaborationEventKind::FeedbackRequested`] event.
    /// The caller can then use [`Workspace::wait_for_feedback`] to suspend
    /// until the matching [`CollaborationEventKind::FeedbackProvided`] arrives.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.request_feedback(
    ///     "corr-2",
    ///     "api-contract",
    ///     "backend_engineer",
    ///     serde_json::json!({ "schema": "v1" }),
    /// );
    /// ```
    pub fn request_feedback(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
        payload: Value,
    ) {
        self.publish(
            CollaborationEvent::new(
                correlation_id,
                topic,
                producer,
                CollaborationEventKind::FeedbackRequested,
            )
            .payload(payload),
        );
    }

    /// Provide feedback in response to a feedback request.
    ///
    /// Publishes a [`CollaborationEventKind::FeedbackProvided`] event.
    /// Agents waiting via [`Workspace::wait_for_feedback`] on the same
    /// `correlation_id` will be resumed.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.provide_feedback(
    ///     "corr-2",
    ///     "api-contract",
    ///     "reviewer",
    ///     serde_json::json!({ "approved": true }),
    /// );
    /// ```
    pub fn provide_feedback(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
        payload: Value,
    ) {
        self.publish(
            CollaborationEvent::new(
                correlation_id,
                topic,
                producer,
                CollaborationEventKind::FeedbackProvided,
            )
            .payload(payload),
        );
    }

    /// Signal that this agent is blocked and cannot continue.
    ///
    /// Publishes a [`CollaborationEventKind::Blocked`] event with a payload
    /// describing what is needed to unblock.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.signal_blocked(
    ///     "corr-3",
    ///     "database-schema",
    ///     "backend_engineer",
    ///     serde_json::json!({ "needs": "schema approval" }),
    /// );
    /// ```
    pub fn signal_blocked(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
        payload: Value,
    ) {
        self.publish(
            CollaborationEvent::new(
                correlation_id,
                topic,
                producer,
                CollaborationEventKind::Blocked,
            )
            .payload(payload),
        );
    }

    /// Signal that a work item is completed.
    ///
    /// Publishes a [`CollaborationEventKind::Completed`] event.
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::Workspace;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// ws.signal_completed("corr-1", "api-routes", "backend_engineer");
    /// ```
    pub fn signal_completed(
        &self,
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
    ) {
        self.publish(CollaborationEvent::new(
            correlation_id,
            topic,
            producer,
            CollaborationEventKind::Completed,
        ));
    }

    /// Wait for a [`CollaborationEventKind::WorkPublished`] event matching
    /// the given `correlation_id`.
    ///
    /// This is a convenience wrapper over [`Workspace::wait_for_kind`] that
    /// filters for `WorkPublished` events specifically.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// # async fn example() {
    /// use adk_code::Workspace;
    /// use std::time::Duration;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// let result = ws.wait_for_work("corr-1", Duration::from_secs(5)).await;
    /// # }
    /// ```
    pub async fn wait_for_work(
        &self,
        correlation_id: &str,
        timeout: Duration,
    ) -> Option<CollaborationEvent> {
        self.wait_for_kind(correlation_id, CollaborationEventKind::WorkPublished, timeout).await
    }

    /// Wait for a [`CollaborationEventKind::FeedbackProvided`] event matching
    /// the given `correlation_id`.
    ///
    /// This is a convenience wrapper over [`Workspace::wait_for_kind`] that
    /// filters for `FeedbackProvided` events specifically.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// # async fn example() {
    /// use adk_code::Workspace;
    /// use std::time::Duration;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// let result = ws.wait_for_feedback("corr-2", Duration::from_secs(5)).await;
    /// # }
    /// ```
    pub async fn wait_for_feedback(
        &self,
        correlation_id: &str,
        timeout: Duration,
    ) -> Option<CollaborationEvent> {
        self.wait_for_kind(correlation_id, CollaborationEventKind::FeedbackProvided, timeout).await
    }

    /// Wait for a collaboration event matching both `correlation_id` and `kind`.
    ///
    /// Subscribes to the workspace event stream and returns the first event
    /// whose `correlation_id` and `kind` both match. If no matching event
    /// arrives within `timeout`, returns `None`.
    ///
    /// This is the most precise wait primitive — use it when you need to
    /// filter on a specific event kind rather than any correlated event.
    ///
    /// # Example
    ///
    /// ```rust,no_run
    /// # async fn example() {
    /// use adk_code::{CollaborationEventKind, Workspace};
    /// use std::time::Duration;
    ///
    /// let ws = Workspace::new("./proj").build();
    /// let result = ws
    ///     .wait_for_kind("corr-1", CollaborationEventKind::WorkClaimed, Duration::from_secs(5))
    ///     .await;
    /// # }
    /// ```
    pub async fn wait_for_kind(
        &self,
        correlation_id: &str,
        kind: CollaborationEventKind,
        timeout: Duration,
    ) -> Option<CollaborationEvent> {
        let mut rx = self.subscribe();
        let deadline = tokio::time::sleep(timeout);
        tokio::pin!(deadline);

        loop {
            tokio::select! {
                result = rx.recv() => {
                    match result {
                        Ok(event)
                            if event.correlation_id == correlation_id
                                && event.kind == kind =>
                        {
                            return Some(event);
                        }
                        Ok(_) => continue,
                        Err(broadcast::error::RecvError::Lagged(skipped)) => {
                            tracing::warn!(
                                skipped,
                                "workspace subscriber lagged, {skipped} events dropped"
                            );
                            continue;
                        }
                        Err(broadcast::error::RecvError::Closed) => {
                            return None;
                        }
                    }
                }
                () = &mut deadline => {
                    return None;
                }
            }
        }
    }
}

/// Builder for constructing a [`Workspace`] with fluent configuration.
///
/// # Example
///
/// ```rust
/// use adk_code::Workspace;
///
/// let workspace = Workspace::new("./app")
///     .project_name("my-app")
///     .session_id("session-42")
///     .created_at(1719000000)
///     .build();
///
/// assert_eq!(workspace.metadata().project_name, "my-app");
/// assert_eq!(workspace.metadata().created_at, Some(1719000000));
/// ```
#[derive(Debug, Clone)]
pub struct WorkspaceBuilder {
    root: PathBuf,
    project_name: Option<String>,
    session_id: Option<String>,
    created_at: Option<u64>,
    channel_capacity: usize,
}

impl WorkspaceBuilder {
    /// Set the project name.
    ///
    /// If not set, defaults to the root directory's file name or `"unnamed"`.
    pub fn project_name(mut self, name: impl Into<String>) -> Self {
        self.project_name = Some(name.into());
        self
    }

    /// Set the session ID for execution correlation.
    pub fn session_id(mut self, id: impl Into<String>) -> Self {
        self.session_id = Some(id.into());
        self
    }

    /// Set the workspace creation timestamp (Unix epoch seconds).
    pub fn created_at(mut self, timestamp: u64) -> Self {
        self.created_at = Some(timestamp);
        self
    }

    /// Set the broadcast channel capacity for collaboration events.
    ///
    /// Defaults to 256. Larger values retain more event history at the cost
    /// of memory. Events beyond the capacity are dropped for slow subscribers.
    pub fn channel_capacity(mut self, capacity: usize) -> Self {
        self.channel_capacity = capacity;
        self
    }

    /// Build the [`Workspace`].
    ///
    /// If `project_name` was not set, it defaults to the root directory's
    /// file name component, or `"unnamed"` if the path has no file name.
    pub fn build(self) -> Workspace {
        let project_name = self.project_name.unwrap_or_else(|| {
            self.root.file_name().and_then(|n| n.to_str()).unwrap_or("unnamed").to_string()
        });

        let (tx, _rx) = broadcast::channel(self.channel_capacity);

        Workspace {
            inner: Arc::new(WorkspaceInner {
                root: self.root,
                metadata: WorkspaceMetadata {
                    project_name,
                    session_id: self.session_id,
                    created_at: self.created_at,
                },
                tx,
                event_log: RwLock::new(Vec::new()),
            }),
        }
    }
}

/// Metadata about a workspace project and execution session.
///
/// # Example
///
/// ```rust
/// use adk_code::WorkspaceMetadata;
///
/// let meta = WorkspaceMetadata {
///     project_name: "demo".to_string(),
///     session_id: Some("sess-1".to_string()),
///     created_at: Some(1719000000),
/// };
/// assert_eq!(meta.project_name, "demo");
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct WorkspaceMetadata {
    /// Human-readable project name.
    pub project_name: String,
    /// Optional session ID for execution and telemetry correlation.
    pub session_id: Option<String>,
    /// Optional creation timestamp (Unix epoch seconds).
    pub created_at: Option<u64>,
}

/// The kind of a collaboration event in a shared workspace.
///
/// These typed event kinds support ownership, correlation, and wait/resume
/// semantics for multi-agent project builds. They are more disciplined than
/// raw pub/sub and preserve completion semantics.
///
/// # Example
///
/// ```rust
/// use adk_code::CollaborationEventKind;
///
/// let kind = CollaborationEventKind::NeedWork;
/// assert_ne!(kind, CollaborationEventKind::Completed);
/// ```
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub enum CollaborationEventKind {
    /// An agent requests a dependency from another specialist or coordinator.
    NeedWork,
    /// Another agent or coordinator accepts ownership of the requested work.
    WorkClaimed,
    /// The requested work product is now available in the workspace.
    WorkPublished,
    /// The producer asks for review or contract validation.
    FeedbackRequested,
    /// A specialist responds with approval or requested changes.
    FeedbackProvided,
    /// The producer cannot continue without another dependency or decision.
    Blocked,
    /// The work item is done.
    Completed,
}

impl std::fmt::Display for CollaborationEventKind {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            Self::NeedWork => write!(f, "NeedWork"),
            Self::WorkClaimed => write!(f, "WorkClaimed"),
            Self::WorkPublished => write!(f, "WorkPublished"),
            Self::FeedbackRequested => write!(f, "FeedbackRequested"),
            Self::FeedbackProvided => write!(f, "FeedbackProvided"),
            Self::Blocked => write!(f, "Blocked"),
            Self::Completed => write!(f, "Completed"),
        }
    }
}

/// A typed collaboration event for cross-agent coordination in a shared workspace.
///
/// Collaboration events carry correlation IDs, topic names, producer/consumer
/// identities, and structured payloads. They support the wait/resume pattern:
/// an agent can publish a [`CollaborationEventKind::NeedWork`] event and resume
/// only when a matching [`CollaborationEventKind::WorkPublished`] event arrives.
///
/// # Example
///
/// ```rust
/// use adk_code::{CollaborationEvent, CollaborationEventKind};
///
/// let event = CollaborationEvent::new(
///     "corr-42",
///     "api-routes",
///     "backend_engineer",
///     CollaborationEventKind::WorkPublished,
/// )
/// .consumer("frontend_engineer")
/// .payload(serde_json::json!({ "routes": ["/api/users"] }));
///
/// assert_eq!(event.correlation_id, "corr-42");
/// assert_eq!(event.consumer.as_deref(), Some("frontend_engineer"));
/// ```
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct CollaborationEvent {
    /// Correlation ID linking related events (e.g., request and response).
    pub correlation_id: String,
    /// Topic or work item name this event relates to.
    pub topic: String,
    /// Identity of the agent that produced this event.
    pub producer: String,
    /// Identity of the intended consumer, if targeted.
    pub consumer: Option<String>,
    /// The kind of collaboration event.
    pub kind: CollaborationEventKind,
    /// Structured payload carrying event-specific data.
    pub payload: Value,
    /// Timestamp when the event was created (Unix epoch milliseconds).
    pub timestamp: u64,
}

impl CollaborationEvent {
    /// Create a new collaboration event with the given correlation ID, topic,
    /// producer, and kind.
    ///
    /// The payload defaults to `null`, consumer defaults to `None`, and
    /// timestamp defaults to `0` (callers should set it via [`Self::timestamp`]).
    ///
    /// # Example
    ///
    /// ```rust
    /// use adk_code::{CollaborationEvent, CollaborationEventKind};
    ///
    /// let event = CollaborationEvent::new(
    ///     "req-1",
    ///     "database-schema",
    ///     "coordinator",
    ///     CollaborationEventKind::NeedWork,
    /// );
    /// assert_eq!(event.kind, CollaborationEventKind::NeedWork);
    /// assert_eq!(event.producer, "coordinator");
    /// ```
    pub fn new(
        correlation_id: impl Into<String>,
        topic: impl Into<String>,
        producer: impl Into<String>,
        kind: CollaborationEventKind,
    ) -> Self {
        Self {
            correlation_id: correlation_id.into(),
            topic: topic.into(),
            producer: producer.into(),
            consumer: None,
            kind,
            payload: Value::Null,
            timestamp: 0,
        }
    }

    /// Set the intended consumer for this event.
    pub fn consumer(mut self, consumer: impl Into<String>) -> Self {
        self.consumer = Some(consumer.into());
        self
    }

    /// Set the structured payload for this event.
    pub fn payload(mut self, payload: Value) -> Self {
        self.payload = payload;
        self
    }

    /// Set the timestamp (Unix epoch milliseconds).
    pub fn timestamp(mut self, ts: u64) -> Self {
        self.timestamp = ts;
        self
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn workspace_builder_defaults_project_name_from_root() {
        let ws = Workspace::new("/tmp/my-project").build();
        assert_eq!(ws.root(), &PathBuf::from("/tmp/my-project"));
        assert_eq!(ws.metadata().project_name, "my-project");
        assert_eq!(ws.metadata().session_id, None);
        assert_eq!(ws.metadata().created_at, None);
    }

    #[test]
    fn workspace_builder_with_all_fields() {
        let ws = Workspace::new("./demo")
            .project_name("demo-site")
            .session_id("sess-abc")
            .created_at(1719000000)
            .build();
        assert_eq!(ws.root(), &PathBuf::from("./demo"));
        assert_eq!(ws.metadata().project_name, "demo-site");
        assert_eq!(ws.metadata().session_id.as_deref(), Some("sess-abc"));
        assert_eq!(ws.metadata().created_at, Some(1719000000));
    }

    #[test]
    fn workspace_builder_unnamed_fallback() {
        let ws = Workspace::new("/").build();
        assert_eq!(ws.metadata().project_name, "unnamed");
    }

    #[test]
    fn workspace_clone_shares_transport() {
        let ws1 = Workspace::new("./proj").build();
        let ws2 = ws1.clone();
        let mut rx = ws2.subscribe();

        ws1.publish(CollaborationEvent::new(
            "c1",
            "topic",
            "producer",
            CollaborationEventKind::WorkPublished,
        ));

        let event = rx.try_recv().expect("should receive event from clone");
        assert_eq!(event.correlation_id, "c1");
    }

    #[test]
    fn publish_with_no_subscribers_returns_zero() {
        let ws = Workspace::new("./proj").build();
        let count = ws.publish(CollaborationEvent::new(
            "c1",
            "topic",
            "producer",
            CollaborationEventKind::NeedWork,
        ));
        assert_eq!(count, 0);
    }

    #[test]
    fn publish_with_subscriber_returns_count() {
        let ws = Workspace::new("./proj").build();
        let _rx1 = ws.subscribe();
        let _rx2 = ws.subscribe();

        let count = ws.publish(CollaborationEvent::new(
            "c1",
            "topic",
            "producer",
            CollaborationEventKind::NeedWork,
        ));
        assert_eq!(count, 2);
    }

    #[test]
    fn subscribe_receives_published_events() {
        let ws = Workspace::new("./proj").build();
        let mut rx = ws.subscribe();

        ws.publish(CollaborationEvent::new(
            "c1",
            "api",
            "backend",
            CollaborationEventKind::WorkPublished,
        ));
        ws.publish(CollaborationEvent::new(
            "c2",
            "schema",
            "db",
            CollaborationEventKind::Completed,
        ));

        let e1 = rx.try_recv().unwrap();
        assert_eq!(e1.correlation_id, "c1");
        assert_eq!(e1.kind, CollaborationEventKind::WorkPublished);

        let e2 = rx.try_recv().unwrap();
        assert_eq!(e2.correlation_id, "c2");
        assert_eq!(e2.kind, CollaborationEventKind::Completed);
    }

    #[tokio::test]
    async fn wait_for_returns_matching_event() {
        let ws = Workspace::new("./proj").build();
        let ws_clone = ws.clone();

        // Spawn a task that publishes the matching event after a short delay.
        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(10)).await;
            // Publish a non-matching event first.
            ws_clone.publish(CollaborationEvent::new(
                "other",
                "unrelated",
                "someone",
                CollaborationEventKind::NeedWork,
            ));
            // Then publish the matching event.
            ws_clone.publish(
                CollaborationEvent::new(
                    "target",
                    "api",
                    "backend",
                    CollaborationEventKind::WorkPublished,
                )
                .payload(serde_json::json!({ "done": true })),
            );
        });

        let result = ws.wait_for("target", Duration::from_secs(1)).await;
        let event = result.expect("should receive matching event");
        assert_eq!(event.correlation_id, "target");
        assert_eq!(event.kind, CollaborationEventKind::WorkPublished);
        assert_eq!(event.payload, serde_json::json!({ "done": true }));
    }

    #[tokio::test]
    async fn wait_for_times_out_when_no_match() {
        let ws = Workspace::new("./proj").build();
        let result = ws.wait_for("nonexistent", Duration::from_millis(50)).await;
        assert!(result.is_none());
    }

    #[tokio::test]
    async fn wait_for_ignores_non_matching_events() {
        let ws = Workspace::new("./proj").build();
        let ws_clone = ws.clone();

        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(5)).await;
            // Publish several non-matching events.
            for i in 0..5 {
                ws_clone.publish(CollaborationEvent::new(
                    format!("wrong-{i}"),
                    "topic",
                    "producer",
                    CollaborationEventKind::NeedWork,
                ));
            }
            // Then publish the matching one.
            ws_clone.publish(CollaborationEvent::new(
                "right",
                "topic",
                "producer",
                CollaborationEventKind::WorkPublished,
            ));
        });

        let result = ws.wait_for("right", Duration::from_secs(1)).await;
        assert!(result.is_some());
        assert_eq!(result.unwrap().correlation_id, "right");
    }

    #[test]
    fn events_returns_buffered_events() {
        let ws = Workspace::new("./proj").channel_capacity(16).build();

        ws.publish(CollaborationEvent::new("c1", "t1", "p1", CollaborationEventKind::NeedWork));
        ws.publish(CollaborationEvent::new("c2", "t2", "p2", CollaborationEventKind::Completed));

        let events = ws.events();
        assert_eq!(events.len(), 2);
        assert_eq!(events[0].correlation_id, "c1");
        assert_eq!(events[1].correlation_id, "c2");
    }

    #[test]
    fn collaboration_event_kind_display() {
        assert_eq!(CollaborationEventKind::NeedWork.to_string(), "NeedWork");
        assert_eq!(CollaborationEventKind::WorkClaimed.to_string(), "WorkClaimed");
        assert_eq!(CollaborationEventKind::WorkPublished.to_string(), "WorkPublished");
        assert_eq!(CollaborationEventKind::FeedbackRequested.to_string(), "FeedbackRequested");
        assert_eq!(CollaborationEventKind::FeedbackProvided.to_string(), "FeedbackProvided");
        assert_eq!(CollaborationEventKind::Blocked.to_string(), "Blocked");
        assert_eq!(CollaborationEventKind::Completed.to_string(), "Completed");
    }

    #[test]
    fn collaboration_event_new_defaults() {
        let event = CollaborationEvent::new(
            "corr-1",
            "backend-api",
            "coordinator",
            CollaborationEventKind::NeedWork,
        );
        assert_eq!(event.correlation_id, "corr-1");
        assert_eq!(event.topic, "backend-api");
        assert_eq!(event.producer, "coordinator");
        assert_eq!(event.consumer, None);
        assert_eq!(event.kind, CollaborationEventKind::NeedWork);
        assert_eq!(event.payload, Value::Null);
        assert_eq!(event.timestamp, 0);
    }

    #[test]
    fn collaboration_event_builder_methods() {
        let event = CollaborationEvent::new(
            "corr-2",
            "api-routes",
            "backend_engineer",
            CollaborationEventKind::WorkPublished,
        )
        .consumer("frontend_engineer")
        .payload(serde_json::json!({ "routes": ["/api/users"] }))
        .timestamp(1719000000000);

        assert_eq!(event.consumer.as_deref(), Some("frontend_engineer"));
        assert_eq!(event.payload, serde_json::json!({ "routes": ["/api/users"] }));
        assert_eq!(event.timestamp, 1719000000000);
    }

    #[test]
    fn collaboration_event_kind_equality_and_hash() {
        use std::collections::HashSet;
        let mut set = HashSet::new();
        set.insert(CollaborationEventKind::NeedWork);
        set.insert(CollaborationEventKind::NeedWork);
        set.insert(CollaborationEventKind::Completed);
        assert_eq!(set.len(), 2);
    }

    #[test]
    fn collaboration_event_kind_copy() {
        let kind = CollaborationEventKind::Blocked;
        let copy = kind;
        assert_eq!(kind, copy);
    }

    #[test]
    fn workspace_metadata_serialization_roundtrip() {
        let meta = WorkspaceMetadata {
            project_name: "test-proj".to_string(),
            session_id: Some("sess-1".to_string()),
            created_at: Some(1719000000),
        };
        let json = serde_json::to_string(&meta).unwrap();
        let deserialized: WorkspaceMetadata = serde_json::from_str(&json).unwrap();
        assert_eq!(meta, deserialized);
    }

    #[test]
    fn collaboration_event_serialization_roundtrip() {
        let event = CollaborationEvent::new(
            "corr-rt",
            "schema",
            "db_engineer",
            CollaborationEventKind::FeedbackRequested,
        )
        .consumer("reviewer")
        .payload(serde_json::json!({ "tables": ["users"] }))
        .timestamp(1719000000000);

        let json = serde_json::to_string(&event).unwrap();
        let deserialized: CollaborationEvent = serde_json::from_str(&json).unwrap();
        assert_eq!(deserialized.correlation_id, "corr-rt");
        assert_eq!(deserialized.kind, CollaborationEventKind::FeedbackRequested);
        assert_eq!(deserialized.consumer.as_deref(), Some("reviewer"));
    }

    // ── Agent-facing helper tests ──────────────────────────────────────

    #[test]
    fn request_work_publishes_need_work_event() {
        let ws = Workspace::new("./proj").build();
        let event = ws.request_work("corr-rw", "api-routes", "frontend");
        assert_eq!(event.correlation_id, "corr-rw");
        assert_eq!(event.topic, "api-routes");
        assert_eq!(event.producer, "frontend");
        assert_eq!(event.kind, CollaborationEventKind::NeedWork);

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].kind, CollaborationEventKind::NeedWork);
    }

    #[test]
    fn claim_work_publishes_work_claimed_event() {
        let ws = Workspace::new("./proj").build();
        ws.claim_work("corr-cw", "api-routes", "backend");

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].correlation_id, "corr-cw");
        assert_eq!(events[0].kind, CollaborationEventKind::WorkClaimed);
    }

    #[test]
    fn publish_work_publishes_work_published_with_payload() {
        let ws = Workspace::new("./proj").build();
        ws.publish_work(
            "corr-pw",
            "api-routes",
            "backend",
            serde_json::json!({ "routes": ["/users"] }),
        );

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].kind, CollaborationEventKind::WorkPublished);
        assert_eq!(events[0].payload, serde_json::json!({ "routes": ["/users"] }));
    }

    #[test]
    fn request_feedback_publishes_feedback_requested_with_payload() {
        let ws = Workspace::new("./proj").build();
        ws.request_feedback(
            "corr-rf",
            "api-contract",
            "backend",
            serde_json::json!({ "schema": "v1" }),
        );

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].kind, CollaborationEventKind::FeedbackRequested);
        assert_eq!(events[0].payload, serde_json::json!({ "schema": "v1" }));
    }

    #[test]
    fn provide_feedback_publishes_feedback_provided_with_payload() {
        let ws = Workspace::new("./proj").build();
        ws.provide_feedback(
            "corr-pf",
            "api-contract",
            "reviewer",
            serde_json::json!({ "approved": true }),
        );

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].kind, CollaborationEventKind::FeedbackProvided);
        assert_eq!(events[0].payload, serde_json::json!({ "approved": true }));
    }

    #[test]
    fn signal_blocked_publishes_blocked_with_payload() {
        let ws = Workspace::new("./proj").build();
        ws.signal_blocked(
            "corr-sb",
            "database-schema",
            "backend",
            serde_json::json!({ "needs": "approval" }),
        );

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].kind, CollaborationEventKind::Blocked);
        assert_eq!(events[0].payload, serde_json::json!({ "needs": "approval" }));
    }

    #[test]
    fn signal_completed_publishes_completed_event() {
        let ws = Workspace::new("./proj").build();
        ws.signal_completed("corr-sc", "api-routes", "backend");

        let events = ws.events();
        assert_eq!(events.len(), 1);
        assert_eq!(events[0].correlation_id, "corr-sc");
        assert_eq!(events[0].kind, CollaborationEventKind::Completed);
    }

    #[tokio::test]
    async fn wait_for_work_returns_work_published_event() {
        let ws = Workspace::new("./proj").build();
        let ws_clone = ws.clone();

        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(10)).await;
            // Publish a non-matching kind first (same correlation).
            ws_clone.claim_work("corr-wfw", "api", "backend");
            // Then publish the matching WorkPublished.
            ws_clone.publish_work(
                "corr-wfw",
                "api",
                "backend",
                serde_json::json!({ "done": true }),
            );
        });

        let result = ws.wait_for_work("corr-wfw", Duration::from_secs(1)).await;
        let event = result.expect("should receive WorkPublished event");
        assert_eq!(event.kind, CollaborationEventKind::WorkPublished);
        assert_eq!(event.payload, serde_json::json!({ "done": true }));
    }

    #[tokio::test]
    async fn wait_for_feedback_returns_feedback_provided_event() {
        let ws = Workspace::new("./proj").build();
        let ws_clone = ws.clone();

        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(10)).await;
            // Publish a FeedbackRequested first (same correlation, wrong kind).
            ws_clone.request_feedback(
                "corr-wff",
                "contract",
                "backend",
                serde_json::json!({ "schema": "v1" }),
            );
            // Then publish the matching FeedbackProvided.
            ws_clone.provide_feedback(
                "corr-wff",
                "contract",
                "reviewer",
                serde_json::json!({ "approved": true }),
            );
        });

        let result = ws.wait_for_feedback("corr-wff", Duration::from_secs(1)).await;
        let event = result.expect("should receive FeedbackProvided event");
        assert_eq!(event.kind, CollaborationEventKind::FeedbackProvided);
        assert_eq!(event.payload, serde_json::json!({ "approved": true }));
    }

    #[tokio::test]
    async fn wait_for_kind_filters_by_both_correlation_and_kind() {
        let ws = Workspace::new("./proj").build();
        let ws_clone = ws.clone();

        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(10)).await;
            // Same correlation, wrong kind.
            ws_clone.request_work("corr-wfk", "topic", "agent-a");
            // Wrong correlation, right kind.
            ws_clone.claim_work("other-corr", "topic", "agent-b");
            // Both match.
            ws_clone.claim_work("corr-wfk", "topic", "agent-b");
        });

        let result = ws
            .wait_for_kind("corr-wfk", CollaborationEventKind::WorkClaimed, Duration::from_secs(1))
            .await;
        let event = result.expect("should receive matching event");
        assert_eq!(event.correlation_id, "corr-wfk");
        assert_eq!(event.kind, CollaborationEventKind::WorkClaimed);
        assert_eq!(event.producer, "agent-b");
    }

    #[tokio::test]
    async fn wait_for_kind_times_out_when_kind_does_not_match() {
        let ws = Workspace::new("./proj").build();
        let ws_clone = ws.clone();

        tokio::spawn(async move {
            tokio::time::sleep(Duration::from_millis(5)).await;
            // Right correlation, wrong kind.
            ws_clone.request_work("corr-to", "topic", "agent");
        });

        let result = ws
            .wait_for_kind("corr-to", CollaborationEventKind::Completed, Duration::from_millis(100))
            .await;
        assert!(result.is_none());
    }

    #[test]
    fn full_collaboration_flow_via_helpers() {
        let ws = Workspace::new("./proj").build();

        // Coordinator requests work.
        ws.request_work("flow-1", "backend-api", "coordinator");
        // Specialist claims it.
        ws.claim_work("flow-1", "backend-api", "backend_engineer");
        // Specialist publishes the result.
        ws.publish_work(
            "flow-1",
            "backend-api",
            "backend_engineer",
            serde_json::json!({ "endpoints": 3 }),
        );
        // Specialist requests feedback.
        ws.request_feedback(
            "flow-1",
            "backend-api",
            "backend_engineer",
            serde_json::json!({ "review": "please" }),
        );
        // Reviewer provides feedback.
        ws.provide_feedback(
            "flow-1",
            "backend-api",
            "reviewer",
            serde_json::json!({ "approved": true }),
        );
        // Specialist signals completion.
        ws.signal_completed("flow-1", "backend-api", "backend_engineer");

        let events = ws.events();
        assert_eq!(events.len(), 6);
        assert_eq!(events[0].kind, CollaborationEventKind::NeedWork);
        assert_eq!(events[1].kind, CollaborationEventKind::WorkClaimed);
        assert_eq!(events[2].kind, CollaborationEventKind::WorkPublished);
        assert_eq!(events[3].kind, CollaborationEventKind::FeedbackRequested);
        assert_eq!(events[4].kind, CollaborationEventKind::FeedbackProvided);
        assert_eq!(events[5].kind, CollaborationEventKind::Completed);
    }
}