draftline 0.2.1

Git-native versioning for creative content workflows.
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
//! Dependency-free command adapter for Tauri Workbench hosts.
//!
//! The functions in this module intentionally do not depend on Tauri. A host can
//! expose them behind `#[tauri::command]` wrappers while preserving Draftline's
//! existing preflight, recovery, and verification semantics.

use std::path::PathBuf;

use serde::{Deserialize, Serialize};

use crate::{
    ApplyIncomingReport, ApplyIncomingResult, ChangeSet, ContentPolicy, ContentPolicyAudit,
    ContributorProfile, DirtySummary, DraftlineError, HistoryEntry, MergeConflictResolution,
    MergeIncomingReport, MergeIncomingResult, MergeIncomingToken, OperationLockInspection,
    PreflightReport, PreviewFile, PublishPreflight, PublishResult, RecoveryRepairResult,
    RecoveryState, RemoteCredential, RemoteCredentialRequest, RemoteOptions, Result, Shelf,
    ShelfApplyReport, SupportRef, SupportRefScope, SyncState, SyncStatus, VariationId,
    VariationSummary, Version, VersionDiff, VersionId, VersionPreview, Workspace,
    WorkspaceDiagnostic, WorkspaceId, WorkspaceInspection, WorkspaceSummary, WorkspaceVerification,
};

type CredentialProvider<'callbacks> =
    dyn FnMut(RemoteCredentialRequest<'_>) -> Result<RemoteCredential> + Send + 'callbacks;
type EventSink<'callbacks> = dyn FnMut(DraftlineEvent) + Send + 'callbacks;

/// Reusable host-side configuration for Draftline command adapters.
///
/// Tauri hosts can construct one context with their content policy, attribution,
/// credential callback, and event sink, then route all command wrappers through
/// the `_with_context` functions instead of forking per-command behavior.
pub struct DraftlineCommandContext<'callbacks> {
    content_policy: ContentPolicy,
    contributor_profile: Option<ContributorProfile>,
    credential_provider: Option<Box<CredentialProvider<'callbacks>>>,
    event_sink: Option<Box<EventSink<'callbacks>>>,
    next_event_sequence: u64,
}

impl<'callbacks> Default for DraftlineCommandContext<'callbacks> {
    fn default() -> Self {
        Self {
            content_policy: ContentPolicy::default(),
            contributor_profile: None,
            credential_provider: None,
            event_sink: None,
            next_event_sequence: 1,
        }
    }
}

impl<'callbacks> DraftlineCommandContext<'callbacks> {
    pub fn new() -> Self {
        Self::default()
    }

    pub fn with_content_policy(mut self, content_policy: ContentPolicy) -> Self {
        self.content_policy = content_policy;
        self
    }

    pub fn with_contributor_profile(mut self, contributor_profile: ContributorProfile) -> Self {
        self.contributor_profile = Some(contributor_profile);
        self
    }

    pub fn with_credentials(
        mut self,
        provider: impl FnMut(RemoteCredentialRequest<'_>) -> Result<RemoteCredential>
            + Send
            + 'callbacks,
    ) -> Self {
        self.credential_provider = Some(Box::new(provider));
        self
    }

    pub fn with_event_sink(mut self, sink: impl FnMut(DraftlineEvent) + Send + 'callbacks) -> Self {
        self.event_sink = Some(Box::new(sink));
        self
    }

    fn open_workspace(&self, path: impl AsRef<std::path::Path>) -> Result<Workspace> {
        Workspace::open_with_policy(path, self.content_policy.clone())
    }

    fn remote_options(&mut self) -> RemoteOptions<'_> {
        if let Some(provider) = self.credential_provider.as_mut() {
            RemoteOptions::new().with_credentials(provider)
        } else {
            RemoteOptions::new()
        }
    }

    fn emit(
        &mut self,
        workspace: &Workspace,
        kind: DraftlineEventKind,
        sync_status: Option<SyncStatus>,
    ) {
        let Some(sink) = self.event_sink.as_mut() else {
            return;
        };

        let event =
            DraftlineEvent::from_workspace(workspace, kind, self.next_event_sequence, sync_status);
        self.next_event_sequence += 1;
        sink(event);
    }
}

/// Stable event kinds emitted by Draftline command adapters.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(rename_all = "snake_case")]
#[non_exhaustive]
pub enum DraftlineEventKind {
    WorkspaceChanged,
    DirtyChanged,
    HistoryChanged,
    SyncChanged,
    RecoveryRequired,
    OperationLockChanged,
    PolicyChanged,
}

/// Redaction-safe event payload for host invalidation and frontend refresh.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DraftlineEvent {
    pub workspace_id: WorkspaceId,
    pub kind: DraftlineEventKind,
    pub sequence: u64,
    pub changed_paths: Vec<PathBuf>,
    pub active_variation: Option<VariationId>,
    pub dirty: Option<DirtySummary>,
    pub sync: Option<SyncStatus>,
    pub recovery: Option<RecoveryState>,
    pub diagnostics: Vec<WorkspaceDiagnostic>,
}

impl DraftlineEvent {
    fn from_workspace(
        workspace: &Workspace,
        kind: DraftlineEventKind,
        sequence: u64,
        sync: Option<SyncStatus>,
    ) -> Self {
        let inspection = workspace.inspect().ok();
        let dirty = inspection
            .as_ref()
            .map(|inspection| inspection.dirty.clone());
        let changed_paths = dirty
            .as_ref()
            .map(|dirty| dirty.files.iter().map(|file| file.path.clone()).collect())
            .unwrap_or_default();

        Self {
            workspace_id: WorkspaceId {
                root: workspace.root().to_path_buf(),
            },
            kind,
            sequence,
            changed_paths,
            active_variation: inspection
                .as_ref()
                .and_then(|inspection| inspection.current_variation.clone()),
            dirty,
            sync,
            recovery: inspection
                .as_ref()
                .and_then(|inspection| inspection.recovery.clone()),
            diagnostics: inspection
                .map(|inspection| inspection.diagnostics)
                .unwrap_or_default(),
        }
    }
}

/// Common request shape for read-only workspace diagnostics commands.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct WorkspaceRequest {
    pub workspace_path: PathBuf,
}

/// One workspace snapshot suitable for a Tauri diagnostics panel.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct WorkspaceDiagnostics {
    pub summary: WorkspaceSummary,
    pub inspection: WorkspaceInspection,
    pub verification: WorkspaceVerification,
    pub operation_lock: OperationLockInspection,
}

/// Best-effort postcondition state collected after a mutating command succeeds.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct CommandPostconditions {
    pub remaining_changes: Option<ChangeSet>,
    pub verification: Option<WorkspaceVerification>,
    pub errors: Vec<TauriCommandError>,
}

/// Request for listing support refs in a local or remote-tracking scope.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ListSupportRefsRequest {
    pub workspace_path: PathBuf,
    pub scope: SupportRefScope,
}

/// Request for commands that target one version.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct VersionRequest {
    pub workspace_path: PathBuf,
    pub version_id: String,
}

/// Request for reading one file from a version.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct PreviewVersionFileRequest {
    pub workspace_path: PathBuf,
    pub version_id: String,
    pub path: PathBuf,
}

/// Request for comparing two saved versions.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct DiffVersionsRequest {
    pub workspace_path: PathBuf,
    pub from_version_id: String,
    pub to_version_id: String,
}

/// Request for restoring one saved version as a new save.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct RestoreVersionRequest {
    pub workspace_path: PathBuf,
    pub version_id: String,
    pub label: String,
}

/// Restore result with postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct RestoreVersionResult {
    pub version: Version,
    pub postconditions: CommandPostconditions,
}

/// Request for one shelf by ID.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct ShelfRequest {
    pub workspace_path: PathBuf,
    pub shelf_id: String,
}

/// Shelf apply result with preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApplyShelfCommandResult {
    pub preflight: ShelfApplyReport,
    pub shelf: Shelf,
    pub postconditions: CommandPostconditions,
}

/// Shelf delete result with postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct DeleteShelfResult {
    pub postconditions: CommandPostconditions,
}

/// Request for recovery repair/rollback commands.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct RecoveryRequest {
    pub workspace_path: PathBuf,
    pub operation_id: String,
}

/// Request for selected-file save operations.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SelectedSaveRequest {
    pub workspace_path: PathBuf,
    pub paths: Vec<PathBuf>,
    pub label: String,
}

/// Selected-file save result with the preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SelectedSaveResult {
    pub preflight: PreflightReport,
    pub version: Version,
    pub postconditions: CommandPostconditions,
}

/// Request for selected-file shelf operations.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SelectedShelveRequest {
    pub workspace_path: PathBuf,
    pub paths: Vec<PathBuf>,
    pub name: String,
}

/// Selected-file shelf result with the preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SelectedShelveResult {
    pub preflight: PreflightReport,
    pub shelf: Shelf,
    pub postconditions: CommandPostconditions,
}

/// Request for selected-file discard operations.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct SelectedDiscardRequest {
    pub workspace_path: PathBuf,
    pub paths: Vec<PathBuf>,
}

/// Selected-file discard result with the preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct SelectedDiscardResult {
    pub preflight: PreflightReport,
    pub discarded: ChangeSet,
    pub postconditions: CommandPostconditions,
}

/// Request for publishing the current variation to a configured remote.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct PublishCurrentVariationRequest {
    pub workspace_path: PathBuf,
    pub remote: String,
}

/// Publish result with the preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PublishCurrentVariationResult {
    pub preflight: PublishPreflight,
    pub publish: PublishResult,
    pub postconditions: CommandPostconditions,
}

/// Request for remote collaboration diagnostics.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct RemoteRequest {
    pub workspace_path: PathBuf,
    pub remote: String,
}

/// Fetch result with current sync status after remote refs refresh.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct FetchRemoteResult {
    pub sync_status: SyncStatus,
    pub postconditions: CommandPostconditions,
}

/// Fast-forward apply result with the preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ApplyIncomingCommandResult {
    pub preflight: ApplyIncomingReport,
    pub apply: ApplyIncomingResult,
    pub postconditions: CommandPostconditions,
}

/// Request for writing a clean incoming merge.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct MergeIncomingRequest {
    pub workspace_path: PathBuf,
    pub remote: String,
    pub label: String,
}

/// Request for writing an incoming merge after explicit conflict resolution.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct MergeIncomingWithResolutionsRequest {
    pub workspace_path: PathBuf,
    pub remote: String,
    pub label: String,
    pub token: MergeIncomingToken,
    pub resolutions: Vec<MergeConflictResolution>,
}

/// Merge result with the preflight and postcondition state.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct MergeIncomingCommandResult {
    pub preflight: MergeIncomingReport,
    pub merge: MergeIncomingResult,
    pub postconditions: CommandPostconditions,
}

/// Error shape that Tauri commands can serialize directly.
#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)]
pub struct TauriCommandError {
    pub code: String,
    pub message: String,
    pub details: Option<serde_json::Value>,
}

impl From<DraftlineError> for TauriCommandError {
    fn from(error: DraftlineError) -> Self {
        Self {
            code: draftline_error_code(&error).to_string(),
            message: error.to_string(),
            details: draftline_error_details(&error),
        }
    }
}

/// Result alias for Tauri command wrappers that need a serializable error.
pub type TauriCommandResult<T> = std::result::Result<T, TauriCommandError>;

/// Returns a full diagnostics payload for the workspace dashboard.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn inspect_workspace(request: WorkspaceRequest) -> Result<WorkspaceDiagnostics> {
    inspect_workspace_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns a full diagnostics payload using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn inspect_workspace_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<WorkspaceDiagnostics> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    Ok(WorkspaceDiagnostics {
        summary: workspace.workspace_summary()?,
        inspection: workspace.inspect()?,
        verification: workspace.verify_workspace()?,
        operation_lock: workspace.inspect_operation_lock()?,
    })
}

/// Returns the workspace verification payload used by smoke postconditions.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn verify_workspace(request: WorkspaceRequest) -> Result<WorkspaceVerification> {
    verify_workspace_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns the workspace verification payload using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn verify_workspace_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<WorkspaceVerification> {
    context
        .open_workspace(&request.workspace_path)?
        .verify_workspace()
}

/// Returns per-variation summaries for a variation switcher.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn list_variations(request: WorkspaceRequest) -> Result<Vec<VariationSummary>> {
    list_variations_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns per-variation summaries using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn list_variations_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<Vec<VariationSummary>> {
    context
        .open_workspace(&request.workspace_path)?
        .variation_summaries()
}

/// Returns hidden recovery support refs for admin/recovery views.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), scope = ?request.scope)
)]
pub fn list_support_refs(request: ListSupportRefsRequest) -> Result<Vec<SupportRef>> {
    list_support_refs_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns support refs using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), scope = ?request.scope)
)]
pub fn list_support_refs_with_context(
    context: &DraftlineCommandContext<'_>,
    request: ListSupportRefsRequest,
) -> Result<Vec<SupportRef>> {
    context
        .open_workspace(&request.workspace_path)?
        .list_support_refs(request.scope)
}

/// Returns current content changes.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn get_changes(request: WorkspaceRequest) -> Result<ChangeSet> {
    get_changes_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns current content changes using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn get_changes_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<ChangeSet> {
    context.open_workspace(&request.workspace_path)?.changes()
}

/// Returns current-variation history.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn get_history(request: WorkspaceRequest) -> Result<Vec<HistoryEntry>> {
    get_history_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns current-variation history using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn get_history_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<Vec<HistoryEntry>> {
    context.open_workspace(&request.workspace_path)?.history()
}

/// Returns full cross-variation history.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn get_full_history(request: WorkspaceRequest) -> Result<Vec<HistoryEntry>> {
    get_full_history_with_context(&DraftlineCommandContext::new(), request)
}

/// Returns full cross-variation history using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn get_full_history_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<Vec<HistoryEntry>> {
    context
        .open_workspace(&request.workspace_path)?
        .full_history()
}

/// Diffs two saved versions.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn diff_versions(request: DiffVersionsRequest) -> Result<VersionDiff> {
    diff_versions_with_context(&DraftlineCommandContext::new(), request)
}

/// Diffs two saved versions using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn diff_versions_with_context(
    context: &DraftlineCommandContext<'_>,
    request: DiffVersionsRequest,
) -> Result<VersionDiff> {
    let from = parse_version_id(request.from_version_id)?;
    let to = parse_version_id(request.to_version_id)?;
    context
        .open_workspace(&request.workspace_path)?
        .diff_versions(&from, &to)
}

/// Diffs a saved version against the live workspace.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn diff_version_to_workspace(request: VersionRequest) -> Result<VersionDiff> {
    diff_version_to_workspace_with_context(&DraftlineCommandContext::new(), request)
}

/// Diffs a saved version against the live workspace using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn diff_version_to_workspace_with_context(
    context: &DraftlineCommandContext<'_>,
    request: VersionRequest,
) -> Result<VersionDiff> {
    let version = parse_version_id(request.version_id)?;
    context
        .open_workspace(&request.workspace_path)?
        .diff_version_to_workspace(&version)
}

/// Previews a saved version without mutating the workspace.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn preview_version(request: VersionRequest) -> Result<VersionPreview> {
    preview_version_with_context(&DraftlineCommandContext::new(), request)
}

/// Previews a saved version using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn preview_version_with_context(
    context: &DraftlineCommandContext<'_>,
    request: VersionRequest,
) -> Result<VersionPreview> {
    let version = parse_version_id(request.version_id)?;
    context
        .open_workspace(&request.workspace_path)?
        .preview_version(&version)
}

/// Previews one file from a saved version without mutating the workspace.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), path = %request.path.display())
)]
pub fn preview_version_file(request: PreviewVersionFileRequest) -> Result<Option<PreviewFile>> {
    preview_version_file_with_context(&DraftlineCommandContext::new(), request)
}

/// Previews one file from a saved version using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), path = %request.path.display())
)]
pub fn preview_version_file_with_context(
    context: &DraftlineCommandContext<'_>,
    request: PreviewVersionFileRequest,
) -> Result<Option<PreviewFile>> {
    let version = parse_version_id(request.version_id)?;
    context
        .open_workspace(&request.workspace_path)?
        .preview_version_file(&version, request.path)
}

/// Restores a saved version as a new save.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn restore_version_as_new_save(request: RestoreVersionRequest) -> Result<RestoreVersionResult> {
    restore_version_as_new_save_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Restores a saved version as a new save using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn restore_version_as_new_save_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RestoreVersionRequest,
) -> Result<RestoreVersionResult> {
    let version_id = parse_version_id(request.version_id)?;
    let workspace = context.open_workspace(&request.workspace_path)?;
    let version = workspace.restore_version_as_new_save(&version_id, request.label)?;
    context.emit(&workspace, DraftlineEventKind::HistoryChanged, None);
    Ok(RestoreVersionResult {
        version,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Lists local shelves.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn list_shelves(request: WorkspaceRequest) -> Result<Vec<Shelf>> {
    list_shelves_with_context(&DraftlineCommandContext::new(), request)
}

/// Lists local shelves using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn list_shelves_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<Vec<Shelf>> {
    context
        .open_workspace(&request.workspace_path)?
        .list_shelves()
}

/// Previews a shelf without mutating the workspace.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn preview_shelf(request: ShelfRequest) -> Result<VersionPreview> {
    preview_shelf_with_context(&DraftlineCommandContext::new(), request)
}

/// Previews a shelf using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn preview_shelf_with_context(
    context: &DraftlineCommandContext<'_>,
    request: ShelfRequest,
) -> Result<VersionPreview> {
    context
        .open_workspace(&request.workspace_path)?
        .preview_shelf(request.shelf_id)
}

/// Preflights applying a shelf without mutating the workspace.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn preflight_apply_shelf(request: ShelfRequest) -> Result<ShelfApplyReport> {
    preflight_apply_shelf_with_context(&DraftlineCommandContext::new(), request)
}

/// Preflights applying a shelf using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn preflight_apply_shelf_with_context(
    context: &DraftlineCommandContext<'_>,
    request: ShelfRequest,
) -> Result<ShelfApplyReport> {
    context
        .open_workspace(&request.workspace_path)?
        .preflight_apply_shelf(request.shelf_id)
}

/// Applies a shelf as workspace content and preserves the shelf.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn apply_shelf(request: ShelfRequest) -> Result<ApplyShelfCommandResult> {
    apply_shelf_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Applies a shelf using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn apply_shelf_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: ShelfRequest,
) -> Result<ApplyShelfCommandResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let preflight = workspace.preflight_apply_shelf(&request.shelf_id)?;
    let shelf = workspace.apply_shelf(request.shelf_id)?;
    context.emit(&workspace, DraftlineEventKind::DirtyChanged, None);
    Ok(ApplyShelfCommandResult {
        preflight,
        shelf,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Deletes a shelf.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn delete_shelf(request: ShelfRequest) -> Result<DeleteShelfResult> {
    delete_shelf_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Deletes a shelf using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn delete_shelf_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: ShelfRequest,
) -> Result<DeleteShelfResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    workspace.delete_shelf(request.shelf_id)?;
    context.emit(&workspace, DraftlineEventKind::WorkspaceChanged, None);
    Ok(DeleteShelfResult {
        postconditions: collect_postconditions(&workspace, false),
    })
}

/// Audits the configured content policy against Git metadata.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn audit_content_policy(request: WorkspaceRequest) -> Result<ContentPolicyAudit> {
    audit_content_policy_with_context(&DraftlineCommandContext::new(), request)
}

/// Audits the configured content policy using a configured host context.
#[tracing::instrument(err, skip_all, fields(workspace_path = %request.workspace_path.display()))]
pub fn audit_content_policy_with_context(
    context: &DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<ContentPolicyAudit> {
    context
        .open_workspace(&request.workspace_path)?
        .audit_content_policy()
}

/// Clears a stale operation lock when Draftline marks it clearable.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn clear_stale_lock(request: WorkspaceRequest) -> Result<CommandPostconditions> {
    clear_stale_lock_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Clears a stale operation lock using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn clear_stale_lock_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: WorkspaceRequest,
) -> Result<CommandPostconditions> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    workspace.clear_stale_lock()?;
    context.emit(&workspace, DraftlineEventKind::OperationLockChanged, None);
    Ok(collect_postconditions(&workspace, false))
}

/// Repairs an interrupted operation.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn repair_recovery(request: RecoveryRequest) -> Result<RecoveryRepairResult> {
    repair_recovery_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Repairs an interrupted operation using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn repair_recovery_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RecoveryRequest,
) -> Result<RecoveryRepairResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let result = {
        let mut options = context.remote_options();
        workspace.repair_recovery_with_options(request.operation_id, &mut options)?
    };
    context.emit(&workspace, DraftlineEventKind::RecoveryRequired, None);
    Ok(result)
}

/// Rolls back an interrupted operation when possible.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn rollback_recovery(request: RecoveryRequest) -> Result<RecoveryRepairResult> {
    rollback_recovery_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Rolls back an interrupted operation using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display())
)]
pub fn rollback_recovery_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RecoveryRequest,
) -> Result<RecoveryRepairResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let result = workspace.rollback_recovery(request.operation_id)?;
    context.emit(&workspace, DraftlineEventKind::RecoveryRequired, None);
    Ok(result)
}

/// Saves selected files after preflighting the exact selection.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), selected_count = request.paths.len())
)]
pub fn selected_save(request: SelectedSaveRequest) -> Result<SelectedSaveResult> {
    selected_save_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Saves selected files using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), selected_count = request.paths.len())
)]
pub fn selected_save_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: SelectedSaveRequest,
) -> Result<SelectedSaveResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let preflight = workspace.preflight_save_files(request.paths.clone())?;
    if !preflight.can_proceed {
        return Err(DraftlineError::PreflightFailed(Box::new(preflight)));
    }

    let version = if let Some(profile) = context.contributor_profile.as_ref() {
        workspace.save_files_with_profile(request.paths, request.label, profile)?
    } else {
        workspace.save_files(request.paths, request.label)?
    };
    context.emit(&workspace, DraftlineEventKind::HistoryChanged, None);
    Ok(SelectedSaveResult {
        preflight,
        version,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Shelves selected files after preflighting the exact selection.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), selected_count = request.paths.len())
)]
pub fn selected_shelve(request: SelectedShelveRequest) -> Result<SelectedShelveResult> {
    selected_shelve_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Shelves selected files using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), selected_count = request.paths.len())
)]
pub fn selected_shelve_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: SelectedShelveRequest,
) -> Result<SelectedShelveResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let preflight = workspace.preflight_shelve_files(&request.name, request.paths.clone())?;
    if !preflight.can_proceed {
        return Err(DraftlineError::PreflightFailed(Box::new(preflight)));
    }

    let shelf = workspace.shelve_files(request.name, request.paths)?;
    context.emit(&workspace, DraftlineEventKind::DirtyChanged, None);
    Ok(SelectedShelveResult {
        preflight,
        shelf,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Discards selected files after preflighting the exact selection.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), selected_count = request.paths.len())
)]
pub fn selected_discard(request: SelectedDiscardRequest) -> Result<SelectedDiscardResult> {
    selected_discard_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Discards selected files using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), selected_count = request.paths.len())
)]
pub fn selected_discard_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: SelectedDiscardRequest,
) -> Result<SelectedDiscardResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let preflight = workspace.preflight_discard_files(request.paths.clone())?;
    if !preflight.can_proceed {
        return Err(DraftlineError::PreflightFailed(Box::new(preflight)));
    }

    let discarded = workspace.discard_files(request.paths)?;
    context.emit(&workspace, DraftlineEventKind::DirtyChanged, None);
    Ok(SelectedDiscardResult {
        preflight,
        discarded,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Publishes the current variation through the tokenized publish path.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn publish_current_variation(
    request: PublishCurrentVariationRequest,
) -> Result<PublishCurrentVariationResult> {
    publish_current_variation_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Publishes using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn publish_current_variation_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: PublishCurrentVariationRequest,
) -> Result<PublishCurrentVariationResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let (preflight, publish) = {
        let mut options = context.remote_options();
        let preflight = workspace.preflight_publish_with_options(&request.remote, &mut options)?;
        if !preflight.can_publish {
            return Err(DraftlineError::SyncNeedsMerge(Box::new(
                preflight.sync_status.clone(),
            )));
        }

        let publish = workspace.publish_with_options(preflight.token.clone(), &mut options)?;
        (preflight, publish)
    };
    context.emit(
        &workspace,
        DraftlineEventKind::SyncChanged,
        Some(preflight.sync_status.clone()),
    );
    Ok(PublishCurrentVariationResult {
        preflight,
        publish,
        postconditions: collect_postconditions(&workspace, false),
    })
}

/// Fetches remote refs and returns the resulting collaboration status.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn fetch_remote(request: RemoteRequest) -> Result<FetchRemoteResult> {
    fetch_remote_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Fetches remote refs using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn fetch_remote_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RemoteRequest,
) -> Result<FetchRemoteResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    {
        let mut options = context.remote_options();
        workspace.fetch_remote_with_options(&request.remote, &mut options)?;
    }
    let sync_status = workspace.sync_status(&request.remote)?;
    context.emit(
        &workspace,
        DraftlineEventKind::SyncChanged,
        Some(sync_status.clone()),
    );
    Ok(FetchRemoteResult {
        sync_status,
        postconditions: collect_postconditions(&workspace, false),
    })
}

/// Preflights a fast-forward incoming apply without mutating workspace state.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn preflight_apply_incoming(request: RemoteRequest) -> Result<ApplyIncomingReport> {
    preflight_apply_incoming_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Preflights incoming apply using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn preflight_apply_incoming_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RemoteRequest,
) -> Result<ApplyIncomingReport> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let mut options = context.remote_options();
    workspace.fetch_remote_with_options(&request.remote, &mut options)?;
    workspace.preflight_apply_incoming(&request.remote)
}

/// Applies incoming fast-forward work after preflighting the current remote state.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn apply_incoming(request: RemoteRequest) -> Result<ApplyIncomingCommandResult> {
    apply_incoming_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Applies incoming fast-forward work using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn apply_incoming_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RemoteRequest,
) -> Result<ApplyIncomingCommandResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let (preflight, apply) = {
        let mut options = context.remote_options();
        workspace.fetch_remote_with_options(&request.remote, &mut options)?;
        let preflight = workspace.preflight_apply_incoming(&request.remote)?;
        let apply = workspace.apply_incoming(&request.remote, &mut options)?;
        (preflight, apply)
    };
    context.emit(&workspace, DraftlineEventKind::HistoryChanged, None);
    Ok(ApplyIncomingCommandResult {
        preflight,
        apply,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Preflights an incoming merge without mutating workspace state.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn preflight_merge_incoming(request: RemoteRequest) -> Result<MergeIncomingReport> {
    preflight_merge_incoming_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Preflights incoming merge using a configured host context.
#[tracing::instrument(
    err,
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn preflight_merge_incoming_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: RemoteRequest,
) -> Result<MergeIncomingReport> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let mut options = context.remote_options();
    workspace.fetch_remote_with_options(&request.remote, &mut options)?;
    workspace.preflight_merge_incoming(&request.remote)
}

/// Writes a clean incoming merge through Draftline's tokenized merge path.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn merge_incoming(request: MergeIncomingRequest) -> Result<MergeIncomingCommandResult> {
    merge_incoming_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Writes a clean incoming merge using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn merge_incoming_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: MergeIncomingRequest,
) -> Result<MergeIncomingCommandResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let contributor_profile = context.contributor_profile.clone();
    let (preflight, merge) = {
        let mut options = context.remote_options();
        workspace.fetch_remote_with_options(&request.remote, &mut options)?;
        let preflight = workspace.preflight_merge_incoming(&request.remote)?;
        let Some(token) = preflight.token.clone() else {
            return Err(merge_preflight_error(preflight));
        };
        let merge = match contributor_profile.as_ref() {
            Some(profile) => workspace.merge_incoming_with_profile(
                token,
                request.label,
                &mut options,
                profile,
            )?,
            None => workspace.merge_incoming(token, request.label, &mut options)?,
        };
        (preflight, merge)
    };
    context.emit(&workspace, DraftlineEventKind::HistoryChanged, None);
    Ok(MergeIncomingCommandResult {
        preflight,
        merge,
        postconditions: collect_postconditions(&workspace, true),
    })
}

/// Writes an incoming merge using explicit user-provided conflict resolutions.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn merge_incoming_with_resolutions(
    request: MergeIncomingWithResolutionsRequest,
) -> Result<MergeIncomingCommandResult> {
    merge_incoming_with_resolutions_with_context(&mut DraftlineCommandContext::new(), request)
}

/// Writes an incoming merge with resolutions using a configured host context.
#[tracing::instrument(
    err(level = tracing::Level::WARN),
    skip_all,
    fields(workspace_path = %request.workspace_path.display(), remote = %request.remote)
)]
pub fn merge_incoming_with_resolutions_with_context(
    context: &mut DraftlineCommandContext<'_>,
    request: MergeIncomingWithResolutionsRequest,
) -> Result<MergeIncomingCommandResult> {
    let workspace = context.open_workspace(&request.workspace_path)?;
    let contributor_profile = context.contributor_profile.clone();
    let (preflight, merge) = {
        let mut options = context.remote_options();
        let preflight = workspace.preflight_merge_incoming(&request.remote)?;
        if preflight.token.as_ref() != Some(&request.token) {
            return Err(merge_preflight_error(preflight));
        }
        let merge = match contributor_profile.as_ref() {
            Some(profile) => workspace.merge_incoming_with_resolutions_and_profile(
                request.token,
                request.label,
                request.resolutions,
                &mut options,
                profile,
            )?,
            None => workspace.merge_incoming_with_resolutions(
                request.token,
                request.label,
                request.resolutions,
                &mut options,
            )?,
        };
        (preflight, merge)
    };
    context.emit(
        &workspace,
        DraftlineEventKind::HistoryChanged,
        Some(preflight.sync_status.clone()),
    );
    Ok(MergeIncomingCommandResult {
        preflight,
        merge,
        postconditions: collect_postconditions(&workspace, true),
    })
}

fn merge_preflight_error(preflight: MergeIncomingReport) -> DraftlineError {
    if matches!(preflight.sync_status.state, SyncState::NeedsMerge) {
        return DraftlineError::PreflightFailed(Box::new(PreflightReport {
            operation: "merge_incoming".to_string(),
            will_write_files: true,
            dirty_files: preflight.dirty_files,
            file_hazards: preflight.file_hazards,
            untracked_assets: Vec::new(),
            unresolved_conflicts: preflight
                .conflicts
                .into_iter()
                .map(|conflict| conflict.path)
                .collect(),
            large_files: Vec::new(),
            binary_files: Vec::new(),
            variation_divergence: Some("incoming merge is blocked".to_string()),
            can_proceed: false,
        }));
    }

    DraftlineError::SyncNeedsMerge(Box::new(preflight.sync_status))
}

/// Converts a Draftline result into a Tauri-serializable result.
pub fn into_tauri_result<T>(result: Result<T>) -> TauriCommandResult<T> {
    result.map_err(TauriCommandError::from)
}

fn parse_version_id(version_id: String) -> Result<VersionId> {
    VersionId::from_canonical_string(version_id)
}

fn collect_postconditions(workspace: &Workspace, include_changes: bool) -> CommandPostconditions {
    let mut errors = Vec::new();
    let remaining_changes = if include_changes {
        match workspace.changes() {
            Ok(changes) => Some(changes),
            Err(error) => {
                errors.push(TauriCommandError::from(error));
                None
            }
        }
    } else {
        None
    };
    let verification = match workspace.verify_workspace() {
        Ok(verification) => Some(verification),
        Err(error) => {
            errors.push(TauriCommandError::from(error));
            None
        }
    };

    if !errors.is_empty() {
        tracing::warn!(
            postcondition_error_count = errors.len(),
            "mutating command succeeded but postcondition collection failed"
        );
    }

    CommandPostconditions {
        remaining_changes,
        verification,
        errors,
    }
}

fn draftline_error_code(error: &DraftlineError) -> &'static str {
    match error {
        DraftlineError::Git(_) => "git",
        DraftlineError::Io(_) => "io",
        DraftlineError::Json(_) => "json",
        DraftlineError::PathEscapesWorkspace(_) => "path_escapes_workspace",
        DraftlineError::AbsolutePath(_) => "absolute_path",
        DraftlineError::WorkspaceDirty => "dirty_workspace",
        DraftlineError::PreflightFailed(_) => "preflight_failed",
        DraftlineError::RecoveryRequired(_) => "recovery_required",
        DraftlineError::RecoveryNotFound(_) => "recovery_not_found",
        DraftlineError::InvalidVariationName(_) => "invalid_variation_name",
        DraftlineError::CannotDeleteCurrentVariation(_) => "cannot_delete_current_variation",
        DraftlineError::VersionNotFound(_) => "version_not_found",
        DraftlineError::NoCurrentVariation => "no_current_variation",
        DraftlineError::WorkspaceLocked => "workspace_locked",
        DraftlineError::UnsupportedSwitchPolicy(_) => "unsupported_switch_policy",
        DraftlineError::InvalidContentPolicyPath(_) => "invalid_content_policy_path",
        DraftlineError::InvalidContentPolicyExtension(_) => "invalid_content_policy_extension",
        DraftlineError::PathOutsideContentPolicy(_) => "path_outside_content_policy",
        DraftlineError::SyncNeedsMerge(_) => "sync_needs_merge",
        DraftlineError::RemoteRace { .. } => "remote_race",
        DraftlineError::LocalStateChanged { .. } => "local_state_changed",
        DraftlineError::ConsentRequired(_) => "consent_required",
        DraftlineError::InvalidSquashCount(_) => "invalid_squash_count",
        DraftlineError::NotEnoughVersionsToSquash { .. } => "not_enough_versions_to_squash",
        DraftlineError::InvalidContributorIdentity(_) => "invalid_contributor_identity",
        DraftlineError::InvalidMergeResolution(_) => "invalid_merge_resolution",
    }
}

fn draftline_error_details(error: &DraftlineError) -> Option<serde_json::Value> {
    match error {
        DraftlineError::PreflightFailed(report) => match serde_json::to_value(report.as_ref()) {
            Ok(value) => Some(value),
            Err(error) => Some(serde_json::json!({
                "serialization_error": error.to_string(),
            })),
        },
        DraftlineError::RecoveryRequired(state) => match serde_json::to_value(state.as_ref()) {
            Ok(value) => Some(value),
            Err(error) => Some(serde_json::json!({
                "serialization_error": error.to_string(),
            })),
        },
        DraftlineError::SyncNeedsMerge(status) => match serde_json::to_value(status.as_ref()) {
            Ok(value) => Some(value),
            Err(error) => Some(serde_json::json!({
                "serialization_error": error.to_string(),
            })),
        },
        _ => None,
    }
}