diaryx_core 1.4.4

Core library for Diaryx - a tool to manage markdown files with YAML frontmatter
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
//! Command pattern API for unified command execution.
//!
//! This module provides a unified command pattern interface that eliminates
//! redundancy across different runtime environments (WASM, Tauri, CLI).
//!
//! # Usage
//!
//! ```ignore
//! use diaryx_core::{Command, Response, Diaryx};
//!
//! let cmd = Command::GetEntry { path: "notes/hello.md".to_string() };
//! let response = diaryx.execute(cmd).await?;
//!
//! if let Response::Entry(entry) = response {
//!     println!("Title: {:?}", entry.title);
//! }
//! ```

use std::path::PathBuf;

use indexmap::IndexMap;
use serde::{Deserialize, Serialize};
use serde_json::Value as JsonValue;

use crate::link_parser::LinkFormat;
use crate::search::SearchResults;
use crate::types::FileInfo;
use crate::validate::{
    FixResult, ValidationError, ValidationResult, ValidationResultWithMeta, ValidationWarning,
};
use crate::workspace::{TreeNode, WorkspaceConfig};
use crate::yaml_value::YamlValue;

// ============================================================================
// Command Types
// ============================================================================

/// All commands that can be executed against a Diaryx instance.
///
/// Commands are serializable for cross-runtime usage (WASM, IPC, etc.).
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
#[serde(tag = "type", content = "params")]
pub enum Command {
    // === Entry Operations ===
    /// Get an entry's content and metadata.
    GetEntry {
        /// Path to the entry file.
        path: String,
    },

    /// Save an entry's content.
    SaveEntry {
        /// Path to the entry file.
        path: String,
        /// New markdown content.
        content: String,
        /// Optional workspace root index path for reading workspace config.
        /// When provided, `auto_update_timestamp` from workspace config is respected.
        #[serde(default)]
        root_index_path: Option<String>,
        /// When true, detect the first-line H1 heading and sync it to the
        /// frontmatter title and filename. Used for manual save / editor blur
        /// (not auto-save) to avoid mid-typing renames.
        #[serde(default)]
        detect_h1_title: bool,
    },

    /// Create a new entry.
    CreateEntry {
        /// Path where the entry should be created.
        path: String,
        /// Optional creation options.
        #[serde(default)]
        options: CreateEntryOptions,
    },

    /// Delete an entry.
    DeleteEntry {
        /// Path to the entry to delete.
        path: String,
        /// If true, perform a hard delete (remove from filesystem).
        /// If false (default), perform a soft delete (mark as deleted in CRDT).
        #[serde(default)]
        hard_delete: bool,
    },

    /// Move/rename an entry.
    MoveEntry {
        /// Existing path to the entry file.
        from: String,
        /// New path for the entry file.
        to: String,
    },

    /// Update workspace hierarchy metadata after an external move.
    ///
    /// Unlike `MoveEntry`, this does NOT move the file on the filesystem.
    /// The file must already exist at `new_path`. Use this when an external
    /// tool (e.g., Obsidian, VS Code) has already performed the move and you
    /// need to fix up the `contents`/`part_of` frontmatter.
    SyncMoveMetadata {
        /// The file's previous path (before the move).
        old_path: String,
        /// The file's current path (after the move).
        new_path: String,
    },

    /// Update workspace hierarchy metadata after an external file creation.
    ///
    /// The file must already exist at `path`. Finds the nearest parent index
    /// and adds this file to its `contents`, then sets the file's `part_of`.
    /// Use this when an external tool (e.g., Obsidian) has created a file
    /// and you need to integrate it into the hierarchy.
    SyncCreateMetadata {
        /// Path to the newly created file.
        path: String,
    },

    /// Update workspace hierarchy metadata after an external file deletion.
    ///
    /// The file at `path` no longer exists on disk. Finds the nearest parent
    /// index and removes this file from its `contents`.
    /// Use this when an external tool (e.g., Obsidian) has deleted a file
    /// and you need to clean up the hierarchy.
    SyncDeleteMetadata {
        /// Path to the deleted file (file no longer exists on disk).
        path: String,
    },

    /// Rename an entry file.
    RenameEntry {
        /// Path to the entry to rename.
        path: String,
        /// New filename (e.g., "new-name.md").
        new_filename: String,
    },

    /// Duplicate an entry, creating a copy.
    DuplicateEntry {
        /// Path to the entry to duplicate.
        path: String,
    },

    /// Convert a leaf file to an index file with a directory.
    ConvertToIndex {
        /// Path to the leaf file to convert.
        path: String,
    },

    /// Convert an empty index file back to a leaf file.
    ConvertToLeaf {
        /// Path to the index file to convert.
        path: String,
    },

    /// Create a new child entry under a parent.
    CreateChildEntry {
        /// Path to the parent entry.
        parent_path: String,
    },

    /// Attach an existing entry to a parent index.
    AttachEntryToParent {
        /// Path to the entry to attach.
        entry_path: String,
        /// Path to the parent index file.
        parent_path: String,
    },

    /// Register a non-structural link relationship between two entries.
    ///
    /// Ensures the source entry's `links` contains the target, the target's
    /// `link_of` contains the source, and the target's singular `link`
    /// property is initialized if absent.
    AddLink {
        /// Source entry containing the link in its body.
        source_path: String,
        /// Target entry referenced by the source.
        target_path: String,
        /// Optional current body markdown snapshot from the editor.
        ///
        /// When provided, this is used for duplicate detection against the
        /// current unsaved editor state instead of the last saved file body.
        #[serde(default)]
        content: Option<String>,
    },

    /// Remove a non-structural link relationship between two entries.
    ///
    /// If the current source body still contains another link to the same
    /// target, this command leaves `links` / `link_of` intact.
    RemoveLink {
        /// Source entry containing the link in its body.
        source_path: String,
        /// Target entry referenced by the source.
        target_path: String,
        /// Optional current body markdown snapshot from the editor.
        ///
        /// When provided, this is used to decide whether the relationship is
        /// still present in the current unsaved editor state.
        #[serde(default)]
        content: Option<String>,
    },

    // === Workspace Operations ===
    /// Find the root index file in a directory.
    /// Returns the path to the root index (a file with `contents` but no `part_of`).
    FindRootIndex {
        /// Directory to search in.
        directory: String,
    },

    /// Get all unique audience tags used in a workspace.
    GetAvailableAudiences {
        /// Path to the workspace root index file.
        path: String,
    },

    /// Get the effective audience for an entry, resolving inheritance.
    ///
    /// If the entry has an explicit `audience`, returns it directly.
    /// Otherwise walks up the `part_of` chain to find the nearest ancestor
    /// with an audience set.
    GetEffectiveAudience {
        /// Path to the entry file.
        path: String,
    },

    /// Get the workspace tree structure.
    GetWorkspaceTree {
        /// Optional path to a specific workspace.
        path: Option<String>,
        /// Optional maximum depth to traverse.
        depth: Option<u32>,
        /// Optional audience filter. When set, only entries visible to any of these audiences are included.
        audience: Option<Vec<String>>,
    },

    /// Get the canonical file set for a workspace.
    ///
    /// Returns the workspace-relative markdown files reachable from the
    /// logical workspace tree, plus any declared attachment files.
    GetWorkspaceFileSet {
        /// Path to the workspace root index file.
        path: String,
    },

    /// Compute an ordered deletion plan: prune roots, expand descendants, order children-first.
    PrepareMultiDelete {
        /// Paths the user selected for deletion.
        paths: Vec<String>,
        /// Workspace root index path (to build the tree for ordering).
        #[serde(default)]
        tree_path: Option<String>,
    },

    /// Check whether deleting the given paths will also remove descendant entries.
    CheckDeleteIncludesDescendants {
        /// Paths the user selected for deletion.
        paths: Vec<String>,
        /// Workspace root index path.
        #[serde(default)]
        tree_path: Option<String>,
    },

    /// Get the filesystem tree (for "Show All Files" mode).
    GetFilesystemTree {
        /// Optional path to the workspace directory.
        path: Option<String>,
        /// Whether to include hidden files.
        #[serde(default)]
        show_hidden: bool,
        /// Optional maximum depth to traverse.
        depth: Option<u32>,
    },

    /// Create a new workspace.
    CreateWorkspace {
        /// Path where the workspace should be created.
        path: Option<String>,
        /// Name of the workspace.
        name: Option<String>,
    },

    // === Frontmatter Operations ===
    /// Get all frontmatter properties for an entry.
    GetFrontmatter {
        /// Path to the entry file.
        path: String,
    },

    /// Set a frontmatter property.
    SetFrontmatterProperty {
        /// Path to the entry file.
        path: String,
        /// Property key.
        key: String,
        /// Property value.
        value: YamlValue,
        /// Optional workspace root index path for reading workspace config.
        /// When provided, `sync_title_to_heading` is respected for title changes.
        #[serde(default)]
        root_index_path: Option<String>,
    },

    /// Remove a frontmatter property.
    RemoveFrontmatterProperty {
        /// Path to the entry file.
        path: String,
        /// Property key to remove.
        key: String,
    },

    /// Reorder frontmatter keys to match a specified order.
    ReorderFrontmatterKeys {
        /// Path to the entry file.
        path: String,
        /// Ordered list of keys. Unmentioned keys are appended at end.
        keys: Vec<String>,
    },

    /// Move a frontmatter section to an external file, replacing it with a markdown link.
    MoveFrontmatterSectionToFile {
        /// Path to the source file.
        source_path: String,
        /// The frontmatter key to move (e.g. "workspace_config", "plugins", or a flat config key).
        section_key: String,
        /// Path to the target file.
        target_path: String,
        /// Create the target file if it doesn't exist.
        #[serde(default)]
        create_if_missing: bool,
    },

    // === Search ===
    /// Search the workspace for entries.
    SearchWorkspace {
        /// Search pattern.
        pattern: String,
        /// Search options.
        #[serde(default)]
        options: SearchOptions,
    },

    // === Validation ===
    /// Validate workspace links.
    ValidateWorkspace {
        /// Optional path to workspace.
        path: Option<String>,
    },

    /// Validate a single file's links.
    ValidateFile {
        /// Path to the file to validate.
        path: String,
    },

    /// Fix all validation issues.
    FixAll {
        /// The validation result to fix.
        validation_result: ValidationResult,
    },

    /// Auto-fix any validation warning by delegating to
    /// `ValidationFixer::fix_warning`. Consumers that don't want to switch
    /// on `ValidationWarning` variants should use this instead of the
    /// per-variant `Fix*` commands. Paths inside the warning are used
    /// as-is (matching `FixAll`'s behavior) since callers normally round-trip
    /// the warning straight from a prior `ValidateWorkspace` response.
    FixValidationWarning {
        /// The warning to fix, exactly as emitted by the validator.
        warning: ValidationWarning,
    },

    /// Auto-fix any validation error by delegating to
    /// `ValidationFixer::fix_error`. See [`Command::FixValidationWarning`].
    FixValidationError {
        /// The error to fix, exactly as emitted by the validator.
        error: ValidationError,
    },

    /// Get available parent indexes for a file (for "Choose parent" picker).
    GetAvailableParentIndexes {
        /// Path to the file that needs a parent.
        file_path: String,
        /// Workspace root to limit scope.
        workspace_root: String,
    },

    // === Attachments ===
    /// Get attachments for an entry.
    GetAttachments {
        /// Path to the entry file.
        path: String,
    },

    /// Register an already-written attachment in entry frontmatter.
    RegisterAttachment {
        /// Path to the entry file.
        entry_path: String,
        /// Filename for the attachment.
        filename: String,
    },

    /// Delete an attachment.
    DeleteAttachment {
        /// Path to the entry file.
        entry_path: String,
        /// Path to the attachment.
        attachment_path: String,
    },

    /// Get attachment data.
    GetAttachmentData {
        /// Path to the entry file.
        entry_path: String,
        /// Path to the attachment.
        attachment_path: String,
    },

    /// Resolve an attachment path to its storage path (for use with readBinary).
    ///
    /// Returns the resolved filesystem-relative path as a string, allowing
    /// callers to use the efficient binary transfer path (readBinary) instead
    /// of the JSON-serialized GetAttachmentData command.
    ResolveAttachmentPath {
        /// Path to the entry file.
        entry_path: String,
        /// Path to the attachment (link ref or relative path).
        attachment_path: String,
    },

    /// Move an attachment from one entry to another.
    MoveAttachment {
        /// Path to the source entry file.
        source_entry_path: String,
        /// Path to the target entry file.
        target_entry_path: String,
        /// Relative path to the attachment (e.g., "_attachments/image.png").
        attachment_path: String,
        /// Optional new filename (for handling collisions).
        new_filename: Option<String>,
    },

    /// Get attachments from current entry and all ancestor indexes.
    /// Traverses up the `part_of` chain to collect inherited attachments.
    GetAncestorAttachments {
        /// Path to the entry file.
        path: String,
    },

    // === File System ===
    /// Check if a file exists.
    FileExists {
        /// Path to check.
        path: String,
    },

    /// Read a file's content.
    ReadFile {
        /// Path to read.
        path: String,
    },

    /// Get lightweight filesystem metadata for a path.
    GetFileInfo {
        /// Path to inspect.
        path: String,
    },

    /// Write content to a file.
    WriteFile {
        /// Path to write.
        path: String,
        /// Content to write.
        content: String,
    },

    /// Delete a file.
    DeleteFile {
        /// Path to delete.
        path: String,
    },

    /// Delete all files and subdirectories within a directory.
    ClearDirectory {
        /// Path to the directory to clear.
        path: String,
    },

    /// Write a file with metadata as YAML frontmatter + body content.
    /// This generates the YAML frontmatter from the metadata and writes it to the file.
    WriteFileWithMetadata {
        /// Path to the file to write.
        path: String,
        /// File metadata to write as frontmatter.
        metadata: serde_json::Value,
        /// Body content (markdown after frontmatter).
        body: String,
    },

    /// Update file's frontmatter metadata, preserving existing body.
    /// If body is provided, it replaces the existing body.
    UpdateFileMetadata {
        /// Path to the file to update.
        path: String,
        /// File metadata to write as frontmatter.
        metadata: serde_json::Value,
        /// Optional new body content. If not provided, existing body is preserved.
        body: Option<String>,
    },

    // === Storage ===
    /// Get storage usage information.
    GetStorageUsage,

    // ==================== Workspace Configuration Commands ====================
    /// Get the link format setting from the workspace root index.
    ///
    /// Returns the current link format (MarkdownRoot, MarkdownRelative, etc.).
    GetLinkFormat {
        /// Path to the workspace root index file.
        root_index_path: String,
    },

    /// Set the link format setting in the workspace root index.
    ///
    /// This updates the `link_format` property in the root index's frontmatter.
    SetLinkFormat {
        /// Path to the workspace root index file.
        root_index_path: String,
        /// The link format to set (one of: markdown_root, markdown_relative, plain_relative, plain_canonical).
        format: String,
    },

    /// Get the full workspace configuration from the root index.
    ///
    /// Returns WorkspaceConfig with link_format and other settings.
    GetWorkspaceConfig {
        /// Path to the workspace root index file.
        root_index_path: String,
    },

    /// Generate a filename from a title using the workspace's filename_style setting.
    ///
    /// Returns the generated filename (with .md extension) as a String.
    GenerateFilename {
        /// The entry title to convert to a filename.
        title: String,
        /// Path to the workspace root index file (to read filename_style config).
        /// If None, uses the default style (preserve).
        root_index_path: Option<String>,
    },

    /// Set a workspace configuration field in the root index file's frontmatter.
    SetWorkspaceConfig {
        /// Path to the workspace root index file.
        root_index_path: String,
        /// Field name to set (e.g., "filename_style", "default_audience").
        field: String,
        /// Value to set (stored as a string in frontmatter).
        value: String,
    },

    /// Convert all links in workspace files to a target format.
    ///
    /// This scans files and rewrites `part_of`, `contents`, and `attachments`
    /// properties.
    /// Returns the count of files modified and links converted.
    ConvertLinks {
        /// Path to the workspace root index file.
        root_index_path: String,
        /// The target link format.
        format: String,
        /// Optional specific file path to convert (if None, converts entire workspace).
        path: Option<String>,
        /// If true, only report what would be changed without modifying files.
        #[serde(default)]
        dry_run: bool,
    },

    // ==================== Link Parser Commands ====================
    /// Run link parser operations from frontend/backend callers.
    ///
    /// This exposes canonical link parsing/conversion logic so web clients
    /// don't need to duplicate path parsing semantics.
    LinkParser {
        /// The link parser operation to execute.
        operation: LinkParserOperation,
    },

    // ==================== Naming / URL Validation Commands ====================
    /// Validate and normalize a workspace name for creation.
    ///
    /// Checks that the name is non-empty and unique among existing local
    /// and (optionally) server workspace names. Returns the trimmed name.
    ValidateWorkspaceName {
        /// The workspace name to validate.
        name: String,
        /// Existing local workspace names (for uniqueness check).
        existing_local_names: Vec<String>,
        /// Existing server workspace names (optional, for sync uniqueness check).
        #[serde(default)]
        existing_server_names: Option<Vec<String>>,
    },

    /// Validate a publishing site slug.
    ///
    /// Must be 3–64 characters of lowercase letters, digits, or hyphens.
    ValidatePublishingSlug {
        /// The slug to validate.
        slug: String,
    },

    /// Normalize a server URL (trim whitespace, add `https://` if no scheme).
    NormalizeServerUrl {
        /// The URL to normalize.
        url: String,
    },

    // === Plugin Operations ===
    /// Execute a plugin-specific command.
    ///
    /// Routes to the named plugin via the [`PluginRegistry`](crate::plugin::PluginRegistry).
    /// All plugin commands (sync, publish, custom) use this variant.
    PluginCommand {
        /// Plugin identifier (e.g., `"sync"`, `"publish"`).
        plugin: String,
        /// Command name within the plugin.
        command: String,
        /// Command parameters as JSON.
        params: JsonValue,
    },

    /// Get manifests for all registered plugins.
    GetPluginManifests,

    /// Get a plugin's configuration.
    GetPluginConfig {
        /// Plugin identifier.
        plugin: String,
    },

    /// Set a plugin's configuration.
    SetPluginConfig {
        /// Plugin identifier.
        plugin: String,
        /// New configuration value.
        config: JsonValue,
    },

    /// Remove workspace-level plugin metadata from the root index frontmatter.
    RemoveWorkspacePluginData {
        /// Root index path for the current workspace.
        root_index_path: String,
        /// Plugin identifier to remove.
        plugin: String,
    },
}

impl Command {
    /// Normalize all path fields to workspace-relative paths.
    ///
    /// This ensures commands work correctly regardless of whether paths are
    /// absolute OS paths (as sent by Tauri) or already workspace-relative
    /// (as sent by WASM). The normalizer should strip the workspace root
    /// prefix from absolute paths; it is a no-op for already-relative paths.
    pub fn normalize_paths(&mut self, normalizer: impl Fn(&str) -> String) {
        match self {
            // --- Variants with a single `path` field ---
            Command::GetEntry { path }
            | Command::DeleteEntry { path, .. }
            | Command::SyncCreateMetadata { path }
            | Command::SyncDeleteMetadata { path }
            | Command::RenameEntry { path, .. }
            | Command::DuplicateEntry { path }
            | Command::ConvertToIndex { path }
            | Command::ConvertToLeaf { path }
            | Command::GetFrontmatter { path }
            | Command::RemoveFrontmatterProperty { path, .. }
            | Command::ReorderFrontmatterKeys { path, .. }
            | Command::ValidateFile { path }
            | Command::GetAttachments { path }
            | Command::GetAncestorAttachments { path }
            | Command::FileExists { path }
            | Command::ReadFile { path }
            | Command::GetFileInfo { path }
            | Command::WriteFile { path, .. }
            | Command::DeleteFile { path }
            | Command::ClearDirectory { path }
            | Command::WriteFileWithMetadata { path, .. }
            | Command::UpdateFileMetadata { path, .. }
            | Command::GetAvailableAudiences { path }
            | Command::GetEffectiveAudience { path }
            | Command::GetWorkspaceFileSet { path } => {
                *path = normalizer(path);
            }

            Command::RemoveWorkspacePluginData {
                root_index_path, ..
            } => {
                *root_index_path = normalizer(root_index_path);
            }

            // --- Variants with `path` as Option<String> (file paths, not directories) ---
            Command::GetWorkspaceTree { path, .. } | Command::ValidateWorkspace { path } => {
                if let Some(p) = path {
                    *p = normalizer(p);
                }
            }

            // --- Multi-path commands with optional tree_path ---
            Command::PrepareMultiDelete { paths, tree_path }
            | Command::CheckDeleteIncludesDescendants { paths, tree_path } => {
                for p in paths.iter_mut() {
                    *p = normalizer(p);
                }
                if let Some(tp) = tree_path {
                    *tp = normalizer(tp);
                }
            }

            // --- Workspace directory paths — NOT normalized (stripping would yield "") ---
            Command::GetFilesystemTree { .. } | Command::CreateWorkspace { .. } => {}

            // --- Variants with path + optional root_index_path ---
            Command::SaveEntry {
                path,
                root_index_path,
                ..
            } => {
                *path = normalizer(path);
                if let Some(rip) = root_index_path {
                    *rip = normalizer(rip);
                }
            }

            Command::CreateEntry { path, options } => {
                *path = normalizer(path);
                if let Some(rip) = &mut options.root_index_path {
                    *rip = normalizer(rip);
                }
            }

            Command::SetFrontmatterProperty {
                path,
                root_index_path,
                ..
            } => {
                *path = normalizer(path);
                if let Some(rip) = root_index_path {
                    *rip = normalizer(rip);
                }
            }

            // --- Entry pair paths ---
            Command::MoveEntry { from, to } => {
                *from = normalizer(from);
                *to = normalizer(to);
            }

            Command::SyncMoveMetadata { old_path, new_path } => {
                *old_path = normalizer(old_path);
                *new_path = normalizer(new_path);
            }

            Command::MoveFrontmatterSectionToFile {
                source_path,
                target_path,
                ..
            } => {
                *source_path = normalizer(source_path);
                *target_path = normalizer(target_path);
            }

            Command::CreateChildEntry { parent_path } => {
                *parent_path = normalizer(parent_path);
            }

            Command::AttachEntryToParent {
                entry_path,
                parent_path,
            } => {
                *entry_path = normalizer(entry_path);
                *parent_path = normalizer(parent_path);
            }

            Command::AddLink {
                source_path,
                target_path,
                ..
            }
            | Command::RemoveLink {
                source_path,
                target_path,
                ..
            } => {
                *source_path = normalizer(source_path);
                *target_path = normalizer(target_path);
            }

            // --- Workspace directory paths — NOT normalized ---
            Command::FindRootIndex { .. } => {}

            // --- Search ---
            Command::SearchWorkspace { options, .. } => {
                if let Some(wp) = &mut options.workspace_path {
                    *wp = normalizer(wp);
                }
            }

            Command::GetAvailableParentIndexes {
                file_path,
                workspace_root,
            } => {
                *file_path = normalizer(file_path);
                *workspace_root = normalizer(workspace_root);
            }

            Command::FixAll { .. }
            | Command::FixValidationWarning { .. }
            | Command::FixValidationError { .. } => {}

            // --- Attachments (entry_path only; attachment_path is a link ref) ---
            Command::RegisterAttachment { entry_path, .. }
            | Command::DeleteAttachment { entry_path, .. }
            | Command::GetAttachmentData { entry_path, .. }
            | Command::ResolveAttachmentPath { entry_path, .. } => {
                *entry_path = normalizer(entry_path);
            }

            Command::MoveAttachment {
                source_entry_path,
                target_entry_path,
                ..
            } => {
                *source_entry_path = normalizer(source_entry_path);
                *target_entry_path = normalizer(target_entry_path);
            }

            // --- Storage ---
            Command::GetStorageUsage => {}

            // --- Workspace configuration ---
            Command::GetLinkFormat { root_index_path }
            | Command::SetLinkFormat {
                root_index_path, ..
            }
            | Command::GetWorkspaceConfig { root_index_path }
            | Command::SetWorkspaceConfig {
                root_index_path, ..
            } => {
                *root_index_path = normalizer(root_index_path);
            }

            Command::GenerateFilename {
                root_index_path, ..
            } => {
                if let Some(rip) = root_index_path {
                    *rip = normalizer(rip);
                }
            }

            Command::ConvertLinks {
                root_index_path,
                path,
                ..
            } => {
                *root_index_path = normalizer(root_index_path);
                if let Some(p) = path {
                    *p = normalizer(p);
                }
            }

            // --- Link parser (normalize path fields inside the operation) ---
            Command::LinkParser { operation } => match operation {
                LinkParserOperation::Parse { .. } => {}
                LinkParserOperation::ToCanonical {
                    current_file_path, ..
                } => {
                    *current_file_path = normalizer(current_file_path);
                }
                LinkParserOperation::Format {
                    canonical_path,
                    from_canonical_path,
                    ..
                } => {
                    *canonical_path = normalizer(canonical_path);
                    *from_canonical_path = normalizer(from_canonical_path);
                }
                LinkParserOperation::Convert {
                    current_file_path, ..
                } => {
                    *current_file_path = normalizer(current_file_path);
                }
            },

            // --- Naming / URL Validation Commands ---
            Command::ValidateWorkspaceName { .. }
            | Command::ValidatePublishingSlug { .. }
            | Command::NormalizeServerUrl { .. }
            | Command::PluginCommand { .. }
            | Command::GetPluginManifests
            | Command::GetPluginConfig { .. }
            | Command::SetPluginConfig { .. } => {}
        }
    }
}

// ============================================================================
// Result Types
// ============================================================================

/// Result of creating a child entry, with details about any parent conversion.
///
/// When creating a child under a leaf file, the leaf is converted to an index first.
/// This struct provides both the new child path and the (possibly new) parent path,
/// allowing the frontend to correctly update the tree and navigation.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct CreateChildResult {
    /// Path to the newly created child entry.
    pub child_path: String,
    /// Current path to the parent entry (may differ from input if converted to index).
    pub parent_path: String,
    /// True if the parent was converted from a leaf to an index.
    pub parent_converted: bool,
    /// Original parent path before conversion (only set if parent_converted is true).
    #[cfg_attr(feature = "typescript", ts(optional))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub original_parent_path: Option<String>,
}

// ============================================================================
// Response Types
// ============================================================================

/// Response from a command execution.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
#[serde(tag = "type", content = "data")]
pub enum Response {
    /// Command completed successfully with no data.
    Ok,

    /// String response.
    String(String),

    /// Boolean response.
    Bool(bool),

    /// Entry data response.
    Entry(EntryData),

    /// Lightweight filesystem metadata response.
    FileInfo(FileInfo),

    /// Tree node response.
    Tree(TreeNode),

    /// Frontmatter response.
    Frontmatter(IndexMap<String, YamlValue>),

    /// Search results response.
    SearchResults(SearchResults),

    /// Validation result response (with computed metadata for frontend).
    ValidationResult(ValidationResultWithMeta),

    /// Fix result response.
    FixResult(FixResult),

    /// Fix summary response.
    FixSummary(FixSummary),

    /// String array response.
    Strings(Vec<String>),

    /// Bytes response (base64 encoded).
    Bytes(Vec<u8>),

    /// Storage info response.
    StorageInfo(StorageInfo),

    /// Ancestor attachments response.
    AncestorAttachments(AncestorAttachmentsResult),

    /// Effective audience response.
    EffectiveAudience(EffectiveAudienceResult),

    /// Link format response.
    LinkFormat(LinkFormat),

    /// Workspace config response.
    WorkspaceConfig(WorkspaceConfig),

    /// Convert links result response.
    ConvertLinksResult(ConvertLinksResult),

    /// Create child entry result (includes parent conversion info).
    CreateChildResult(CreateChildResult),

    /// Link parser operation result.
    LinkParserResult(LinkParserResult),

    /// Result from a plugin command.
    PluginResult(JsonValue),

    /// Plugin manifests response.
    PluginManifests(Vec<crate::plugin::PluginManifest>),
}

// ============================================================================
// Helper Types
// ============================================================================

/// Data for a single diary entry.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct EntryData {
    /// Path to the entry.
    pub path: PathBuf,
    /// Title from frontmatter.
    pub title: Option<String>,
    /// All frontmatter properties.
    pub frontmatter: IndexMap<String, YamlValue>,
    /// Body content (after frontmatter).
    pub content: String,
}

/// Options for creating a new entry.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct CreateEntryOptions {
    /// Title for the entry.
    pub title: Option<String>,
    /// Parent to attach to.
    pub part_of: Option<String>,
    /// Template to use.
    pub template: Option<String>,
    /// Optional workspace root index path for reading workspace config.
    /// When provided, `default_template` from workspace config is used as fallback.
    #[serde(default)]
    pub root_index_path: Option<String>,
}

/// Options for searching entries.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct SearchOptions {
    /// Workspace path to search in.
    pub workspace_path: Option<String>,
    /// Whether to search frontmatter.
    #[serde(default)]
    pub search_frontmatter: bool,
    /// Specific property to search.
    pub property: Option<String>,
    /// Case sensitive search.
    #[serde(default)]
    pub case_sensitive: bool,
}

/// An exported file with its path and content.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct ExportedFile {
    /// Relative path.
    pub path: String,
    /// File content.
    pub content: String,
}

/// A binary file with its path and data.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct BinaryExportFile {
    /// Relative path.
    pub path: String,
    /// Binary data.
    pub data: Vec<u8>,
}

/// Binary file path info (without data) for efficient transfer.
/// Use this when you need to list files and fetch data separately.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct BinaryFileInfo {
    /// Source path (absolute, for reading).
    pub source_path: String,
    /// Relative path (for zip file structure).
    pub relative_path: String,
}

/// Information about storage usage.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct StorageInfo {
    /// Bytes used.
    pub used: u64,
    /// Storage limit (if any).
    pub limit: Option<u64>,
    /// Attachment size limit.
    pub attachment_limit: Option<u64>,
}

/// Summary of fix operations performed.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct FixSummary {
    /// Results from fixing errors.
    pub error_fixes: Vec<FixResult>,
    /// Results from fixing warnings.
    pub warning_fixes: Vec<FixResult>,
    /// Total number of issues fixed.
    pub total_fixed: usize,
    /// Total number of fixes that failed.
    pub total_failed: usize,
}

/// A single entry's attachments in the ancestor chain.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct AncestorAttachmentEntry {
    /// Path to the entry file.
    pub entry_path: String,
    /// Title of the entry (from frontmatter).
    pub entry_title: Option<String>,
    /// List of attachment note refs and resolved binary targets for this entry.
    pub attachments: Vec<ResolvedAttachmentRef>,
}

/// Result of GetAncestorAttachments command.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct AncestorAttachmentsResult {
    /// Attachments from current entry and all ancestors.
    /// Ordered from current entry first, then ancestors (closest to root).
    pub entries: Vec<AncestorAttachmentEntry>,
}

/// A declared attachment note and the binary asset it resolves to.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct ResolvedAttachmentRef {
    /// Link/path stored in the `attachments` frontmatter array.
    pub note_path: String,
    /// Resolved binary asset path from the attachment note's `attachment` field.
    pub attachment_path: String,
    /// Optional title from the attachment note.
    #[cfg_attr(feature = "typescript", ts(optional))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub note_title: Option<String>,
}

/// Result of resolving effective audience for an entry.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct EffectiveAudienceResult {
    /// The resolved audience tags (empty if none found).
    pub tags: Vec<String>,
    /// Whether the audience was inherited from an ancestor (false if explicit).
    pub inherited: bool,
    /// Title of the ancestor entry the audience was inherited from.
    #[cfg_attr(feature = "typescript", ts(optional))]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub source_title: Option<String>,
    /// Whether this entry has a parent and can potentially inherit.
    pub can_inherit: bool,
    /// Whether this entry's audience was resolved from the workspace `default_audience`
    /// config (i.e., the entry has no explicit or inherited audience tags).
    pub default_audience_applied: bool,
}

/// Result of converting links to a new format.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct ConvertLinksResult {
    /// Number of files that were modified (or would be modified in dry-run).
    pub files_modified: usize,
    /// Number of links that were converted (or would be converted in dry-run).
    pub links_converted: usize,
    /// List of file paths that were modified.
    pub modified_files: Vec<String>,
    /// Whether this was a dry run (no actual changes made).
    pub dry_run: bool,
}

/// Link parser operation selector.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
#[serde(tag = "type", content = "params", rename_all = "snake_case")]
pub enum LinkParserOperation {
    /// Parse a link string into title/path/path type.
    Parse {
        /// Link string to parse.
        link: String,
    },
    /// Resolve a link string to canonical (workspace-relative) path.
    ToCanonical {
        /// Link string to resolve.
        link: String,
        /// Canonical path of the file containing the link.
        current_file_path: String,
        /// Optional hint for resolving ambiguous links.
        #[serde(default)]
        link_format_hint: Option<LinkFormat>,
    },
    /// Format a canonical path as a link string.
    Format {
        /// Canonical target path.
        canonical_path: String,
        /// Display title.
        title: String,
        /// Output format.
        format: LinkFormat,
        /// Canonical path of the file containing the link.
        from_canonical_path: String,
    },
    /// Convert an input link string to another format.
    Convert {
        /// Original link string.
        link: String,
        /// Desired output format.
        target_format: LinkFormat,
        /// Canonical path of the file containing the link.
        current_file_path: String,
        /// Optional hint for interpreting ambiguous source links.
        #[serde(default)]
        source_format_hint: Option<LinkFormat>,
    },
}

/// Path classification from the link parser.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
#[serde(rename_all = "snake_case")]
pub enum LinkPathType {
    /// Link path starts at workspace root (`/path/file.md`).
    WorkspaceRoot,
    /// Link path is explicitly relative (`./` or `../`).
    Relative,
    /// Link path is plain/ambiguous (`path/file.md`).
    Ambiguous,
}

/// Parsed link payload.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
pub struct ParsedLinkResult {
    /// Markdown link title (if present).
    pub title: Option<String>,
    /// Extracted path component.
    pub path: String,
    /// Path classification.
    pub path_type: LinkPathType,
}

/// Result of running a link parser operation.
#[derive(Debug, Clone, Serialize, Deserialize)]
#[cfg_attr(feature = "typescript", derive(ts_rs::TS))]
#[cfg_attr(feature = "typescript", ts(export, export_to = "bindings/"))]
#[serde(tag = "type", content = "data", rename_all = "snake_case")]
pub enum LinkParserResult {
    /// Structured parse output.
    Parsed(ParsedLinkResult),
    /// String output from canonicalize/format/convert operations.
    String(String),
}

// ============================================================================
// Tests
// ============================================================================

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

    #[test]
    fn test_command_serialization() {
        let cmd = Command::GetEntry {
            path: "notes/hello.md".to_string(),
        };
        let json = serde_json::to_string(&cmd).unwrap();
        assert!(json.contains("GetEntry"));
        assert!(json.contains("notes/hello.md"));

        // Deserialize back
        let cmd2: Command = serde_json::from_str(&json).unwrap();
        if let Command::GetEntry { path } = cmd2 {
            assert_eq!(path, "notes/hello.md");
        } else {
            panic!("Wrong command type");
        }
    }

    #[test]
    fn test_response_serialization() {
        let resp = Response::String("hello".to_string());
        let json = serde_json::to_string(&resp).unwrap();
        assert!(json.contains("String"));
        assert!(json.contains("hello"));

        // Deserialize back
        let resp2: Response = serde_json::from_str(&json).unwrap();
        if let Response::String(s) = resp2 {
            assert_eq!(s, "hello");
        } else {
            panic!("Wrong response type");
        }
    }

    #[test]
    fn test_create_entry_options_default() {
        let opts = CreateEntryOptions::default();
        assert!(opts.title.is_none());
        assert!(opts.part_of.is_none());
        assert!(opts.template.is_none());
    }

    #[test]
    fn test_search_options_default() {
        let opts = SearchOptions::default();
        assert!(!opts.search_frontmatter);
        assert!(!opts.case_sensitive);
        assert!(opts.property.is_none());
    }

    #[test]
    fn test_normalize_paths_normalizes_entry_path() {
        let mut cmd = Command::GetEntry {
            path: "/workspace/notes/day.md".to_string(),
        };

        cmd.normalize_paths(|p| p.trim_start_matches("/workspace/").to_string());

        match cmd {
            Command::GetEntry { path } => {
                assert_eq!(path, "notes/day.md");
            }
            other => panic!("Expected GetEntry, got {:?}", other),
        }
    }
}