prompthive 0.2.8

Open source prompt manager for developers. Terminal-native, sub-15ms operations, works with any AI tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
use super::common;
use crate::{PromptMetadata, RegistryClient, Storage};
use super::SimpleSyncManager;
use anyhow::{Context, Result};
use chrono;
use clap::Subcommand;
use colored::Colorize;
use serde_json;
use std::time::Instant;
use urlencoding;

// Helper functions moved to common module

fn resolve_prompt_name(_storage: &Storage, query: &str) -> Result<String> {
    // Simplified implementation for now
    Ok(query.to_string())
}

#[derive(Subcommand)]
pub enum SyncCommands {
    /// Push local prompts to cloud storage
    Push {
        /// Specific prompt to push (all if not specified)
        prompt: Option<String>,
        /// Force push even if conflicts exist
        #[arg(short = 'f', long = "force")]
        force: bool,
    },
    /// Pull cloud prompts to local storage
    Pull {
        /// Specific prompt to pull (all if not specified)
        prompt: Option<String>,
        /// Overwrite local changes without confirmation
        #[arg(short = 'f', long = "force")]
        force: bool,
    },
    /// Show sync status and conflicts
    Status {
        /// Show detailed status for each prompt
        #[arg(short = 'v', long = "verbose")]
        verbose: bool,
    },
    /// Resolve sync conflicts
    Resolve {
        /// Prompt name with conflict to resolve
        prompt: String,
        /// Resolution strategy: local, cloud, or manual
        #[arg(short = 'r', long = "resolution", value_parser = ["local", "cloud", "manual"])]
        resolution: String,
    },
    /// Verify sync integrity by checking actual database state
    Verify {
        /// Specific prompt to verify (all if not specified)
        prompt: Option<String>,
        /// Show detailed verification information
        #[arg(short = 'v', long = "verbose")]
        verbose: bool,
    },
    /// Create bidirectional file sync for a prompt
    SyncFile {
        /// Local file path to sync with
        path: String,
        /// Prompt name (defaults to filename without extension)
        #[arg(short = 'n', long = "name")]
        name: Option<String>,
        /// Force overwrite if file exists
        #[arg(short = 'f', long = "force")]
        force: bool,
    },
    /// Sync entire directory of prompts
    SyncDir {
        /// Directory containing markdown files
        directory: String,
        /// Pattern to match files (default: "*.md")
        #[arg(short = 'p', long = "pattern")]
        pattern: Option<String>,
        /// Force sync even if files exist
        #[arg(short = 'f', long = "force")]
        force: bool,
    },
    /// Remove bidirectional sync relationship
    Unsync {
        /// Prompt name to unsync
        prompt: String,
        /// Keep the synced file (don't delete)
        #[arg(short = 'k', long = "keep-file")]
        keep_file: bool,
    },
    /// Show detailed sync status for file sync
    FileStatus {
        /// Specific prompt to check (all if not specified)
        prompt: Option<String>,
        /// Show file paths and timestamps
        #[arg(short = 'v', long = "verbose")]
        verbose: bool,
    },
    /// Repair broken sync relationships
    Repair {
        /// Specific prompt to repair (all if not specified)
        prompt: Option<String>,
        /// Recreate missing files from PromptHive content
        #[arg(short = 'r', long = "recreate")]
        recreate: bool,
    },
    /// List all sync conflicts
    Conflicts {
        /// Show detailed conflict information
        #[arg(short = 'v', long = "verbose")]
        verbose: bool,
    },
    /// Watch files for changes and auto-sync
    Watch {
        /// Directory to watch (default: current directory)
        directory: Option<String>,
        /// Debounce delay in milliseconds (default: 100)
        #[arg(short = 'd', long = "delay")]
        delay: Option<u64>,
    },
}

pub async fn handle_sync(
    storage: &Storage,
    action: &Option<SyncCommands>,
    start: Instant,
) -> Result<()> {
    // Check if user has API key
    let api_key = common::require_api_key("Sync")?;

    let registry_url = super::configuration::get_registry_url();
    let client = RegistryClient::new(registry_url).with_api_key(api_key);

    match action {
        Some(SyncCommands::Push { prompt, force }) => {
            handle_sync_push(storage, &client, prompt.as_deref(), *force, start).await
        }
        Some(SyncCommands::Pull { prompt, force }) => {
            handle_sync_pull(storage, &client, prompt.as_deref(), *force, start).await
        }
        Some(SyncCommands::Status { verbose }) => {
            handle_sync_status(storage, &client, *verbose, start).await
        }
        Some(SyncCommands::Resolve { prompt, resolution }) => {
            handle_sync_resolve(storage, &client, prompt, resolution, start).await
        }
        Some(SyncCommands::Verify { prompt, verbose }) => {
            handle_sync_verify(storage, &client, prompt.as_deref(), *verbose, start).await
        }
        Some(SyncCommands::SyncFile { path, name, force }) => {
            handle_sync_file(storage, path, name.as_deref(), *force, start).await
        }
        Some(SyncCommands::SyncDir { directory: _, pattern: _, force: _ }) => {
            Err(anyhow::anyhow!("SyncDir functionality temporarily disabled - coming soon"))
        }
        Some(SyncCommands::Unsync { prompt: _, keep_file: _ }) => {
            Err(anyhow::anyhow!("Unsync functionality temporarily disabled - coming soon"))
        }
        Some(SyncCommands::FileStatus { prompt: _, verbose: _ }) => {
            Err(anyhow::anyhow!("FileStatus functionality temporarily disabled - coming soon"))
        }
        Some(SyncCommands::Repair { prompt: _, recreate: _ }) => {
            Err(anyhow::anyhow!("Repair functionality temporarily disabled - coming soon"))
        }
        Some(SyncCommands::Conflicts { verbose: _ }) => {
            Err(anyhow::anyhow!("Conflicts functionality temporarily disabled - coming soon"))
        }
        Some(SyncCommands::Watch { directory: _, delay: _ }) => {
            Err(anyhow::anyhow!("Watch functionality temporarily disabled - coming soon"))
        }
        None => {
            // Default sync (bidirectional)
            handle_sync_bidirectional(storage, &client, start).await
        }
    }
}

// Note: The actual sync function implementations will be extracted from main.rs in the next step
// This is a placeholder to establish the module structure

async fn handle_sync_push(
    storage: &Storage,
    client: &RegistryClient,
    prompt: Option<&str>,
    force: bool,
    start: Instant,
) -> Result<()> {
    println!("☁️  Pushing prompts to cloud...");

    let prompts_to_sync = if let Some(prompt_name) = prompt {
        // Push specific prompt
        let resolved_name = resolve_prompt_name(storage, prompt_name)?;
        vec![resolved_name]
    } else {
        // Push all prompts
        storage.list_prompts()?
    };

    if prompts_to_sync.is_empty() {
        println!("No prompts to sync");
        return Ok(());
    }

    // Build prompts payload
    let mut prompts_data = Vec::new();
    for prompt_name in &prompts_to_sync {
        let (metadata, content) = storage
            .read_prompt(prompt_name)
            .with_context(|| format!("Failed to read prompt '{}'", prompt_name))?;

        prompts_data.push(serde_json::json!({
            "name": prompt_name,
            "content": content,
            "description": metadata.description,
            "tags": metadata.tags.unwrap_or_default()
        }));
    }

    let payload = serde_json::json!({
        "prompts": prompts_data,
        "force": force
    });

    // Send sync push request
    let response = client
        .post("/api/sync/push", &payload)
        .await
        .context("Failed to push prompts to cloud")?;

    let status = response.status();
    let response_text = response.text().await.unwrap_or_default();

    if !status.is_success() {
        return Err(anyhow::anyhow!(
            "Sync push failed with status {}: {}",
            status,
            response_text
        ));
    }

    let result: serde_json::Value = serde_json::from_str(&response_text).context(format!(
        "Failed to parse sync push response: {}",
        response_text
    ))?;

    let sync_success = result
        .get("success")
        .and_then(|s| s.as_bool())
        .unwrap_or(false);
    let sync_message = result
        .get("message")
        .and_then(|m| m.as_str())
        .unwrap_or("Sync completed");

    // Process results
    if let Some(results) = result.get("results").and_then(|r| r.as_array()) {
        let mut created = 0;
        let mut updated = 0;
        let mut conflicts = 0;
        let mut errors = 0;

        for result_item in results {
            let name = result_item
                .get("name")
                .and_then(|n| n.as_str())
                .unwrap_or("unknown");
            let status = result_item
                .get("status")
                .and_then(|s| s.as_str())
                .unwrap_or("unknown");

            match status {
                "created" => {
                    created += 1;
                    println!("✅ Created: {}", name);
                }
                "updated" => {
                    updated += 1;
                    println!("🔄 Updated: {}", name);
                }
                "conflict" => {
                    conflicts += 1;
                    println!("⚠️  Conflict: {} (use `ph sync status` to resolve)", name);
                }
                "error" => {
                    errors += 1;
                    let error = result_item
                        .get("error")
                        .and_then(|e| e.as_str())
                        .unwrap_or("unknown error");
                    println!("❌ Error: {} - {}", name, error);
                }
                _ => {
                    println!("❓ Unknown status for {}: {}", name, status);
                }
            }
        }

        // Summary
        println!();
        if sync_success {
            println!(
                "📊 {} {}",
                "Sync Push Summary:".green(),
                sync_message.green()
            );
        } else {
            println!(
                "📊 {} {}",
                "Sync Push Summary:".yellow(),
                sync_message.yellow()
            );
        }

        if created > 0 {
            println!("   ✅ Created: {}", created);
        }
        if updated > 0 {
            println!("   🔄 Updated: {}", updated);
        }
        if conflicts > 0 {
            println!(
                "   ⚠️  Conflicts: {} (resolve with `ph sync status`)",
                conflicts
            );
        }
        if errors > 0 {
            println!("   ❌ Errors: {} (check server logs or try again)", errors);
            if !sync_success {
                return Err(anyhow::anyhow!(
                    "Sync push failed due to {} database errors",
                    errors
                ));
            }
        }

        // Use stats from API if available
        if let Some(stats) = result.get("stats") {
            let api_errors = stats.get("errors").and_then(|e| e.as_u64()).unwrap_or(0);
            if api_errors > 0 && !sync_success {
                return Err(anyhow::anyhow!(
                    "Server reported {} errors during sync push",
                    api_errors
                ));
            }
        }
    } else {
        println!("⚠️  Warning: No detailed results received from server");
        if !sync_success {
            return Err(anyhow::anyhow!("Sync push failed: {}", sync_message));
        }
    }

    println!(
        "⏱️  Sync push completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

async fn handle_sync_pull(
    storage: &Storage,
    client: &RegistryClient,
    prompt: Option<&str>,
    force: bool,
    start: Instant,
) -> Result<()> {
    println!("☁️  Pulling prompts from cloud...");

    // Get prompts to pull
    let prompts_to_pull = if let Some(prompt_name) = prompt {
        // Pull specific prompt
        let resolved_name = resolve_prompt_name(storage, prompt_name)?;
        vec![resolved_name]
    } else {
        // Get all cloud prompts
        match client.get("/api/prompts").await {
            Ok(response) => {
                if response.status().is_success() {
                    match response.json::<serde_json::Value>().await {
                        Ok(cloud_data) => {
                            if let Some(cloud_prompts) = cloud_data["prompts"].as_array() {
                                cloud_prompts
                                    .iter()
                                    .filter_map(|p| p["name"].as_str().map(|s| s.to_string()))
                                    .collect()
                            } else {
                                return Err(anyhow::anyhow!("Invalid cloud prompts response format"));
                            }
                        }
                        Err(e) => {
                            return Err(anyhow::anyhow!("Failed to parse cloud prompts: {}", e));
                        }
                    }
                } else {
                    return Err(anyhow::anyhow!(
                        "Failed to fetch cloud prompts: {}",
                        response.status()
                    ));
                }
            }
            Err(e) => {
                return Err(anyhow::anyhow!("Request failed: {}", e));
            }
        }
    };

    if prompts_to_pull.is_empty() {
        println!("No prompts to pull from cloud");
        return Ok(());
    }

    let mut pulled = 0;
    let mut updated = 0;
    let mut conflicts = 0;
    let mut errors = 0;

    for prompt_name in &prompts_to_pull {
        println!("📥 Pulling '{}'...", prompt_name);

        // Fetch cloud prompt
        let url = format!("/api/prompts/{}", urlencoding::encode(prompt_name));
        match client.get(&url).await {
            Ok(response) => {
                if response.status().is_success() {
                    match response.json::<serde_json::Value>().await {
                        Ok(cloud_data) => {
                            let cloud_content = cloud_data["content"].as_str().unwrap_or("");
                            let cloud_description = cloud_data["description"].as_str().unwrap_or("");
                            let cloud_tags: Vec<String> = cloud_data["tags"]
                                .as_array()
                                .map(|arr| {
                                    arr.iter()
                                        .filter_map(|v| v.as_str().map(|s| s.to_string()))
                                        .collect()
                                })
                                .unwrap_or_default();

                            // Check if local version exists
                            let local_exists = storage.prompt_exists(prompt_name);

                            if local_exists && !force {
                                // Check for conflicts
                                match storage.read_prompt(prompt_name) {
                                    Ok((local_metadata, local_content)) => {
                                        let content_matches = local_content.trim() == cloud_content.trim();
                                        let description_matches = local_metadata.description == cloud_description;

                                        if !content_matches || !description_matches {
                                            conflicts += 1;
                                            println!("⚠️  Conflict detected for '{}' (use --force to overwrite)", prompt_name);
                                            continue;
                                        } else {
                                            println!("✅ '{}' is already up to date", prompt_name);
                                            continue;
                                        }
                                    }
                                    Err(e) => {
                                        errors += 1;
                                        println!("❌ Failed to read local '{}': {}", prompt_name, e);
                                        continue;
                                    }
                                }
                            }

                            // Create/update local prompt
                            let metadata = PromptMetadata {
                                id: prompt_name.clone(),
                                description: cloud_description.to_string(),
                                tags: if cloud_tags.is_empty() { None } else { Some(cloud_tags) },
                                created_at: Some(chrono::Utc::now().to_rfc3339()),
                                updated_at: None,
                                version: None,
                                git_hash: None,
                                parent_version: None,
                            };

                            match storage.write_prompt(prompt_name, &metadata, cloud_content) {
                                Ok(_) => {
                                    if local_exists {
                                        updated += 1;
                                        println!("🔄 Updated '{}'", prompt_name);
                                    } else {
                                        pulled += 1;
                                        println!("📥 Pulled '{}'", prompt_name);
                                    }
                                }
                                Err(e) => {
                                    errors += 1;
                                    println!("❌ Failed to save '{}': {}", prompt_name, e);
                                }
                            }
                        }
                        Err(e) => {
                            errors += 1;
                            println!("❌ Failed to parse cloud response for '{}': {}", prompt_name, e);
                        }
                    }
                } else if response.status().as_u16() == 404 {
                    println!("⚠️  '{}' not found in cloud", prompt_name);
                } else {
                    errors += 1;
                    println!("❌ Cloud API error for '{}': {}", prompt_name, response.status());
                }
            }
            Err(e) => {
                errors += 1;
                println!("❌ Request failed for '{}': {}", prompt_name, e);
            }
        }
    }

    // Summary
    println!();
    println!("📊 {} Sync Pull Summary", "📥".green().bold());
    
    if pulled > 0 {
        println!("   📥 New prompts: {}", pulled);
    }
    if updated > 0 {
        println!("   🔄 Updated prompts: {}", updated);
    }
    if conflicts > 0 {
        println!("   ⚠️  Conflicts (skipped): {} (use --force to overwrite)", conflicts);
    }
    if errors > 0 {
        println!("   ❌ Errors: {}", errors);
    }

    if pulled == 0 && updated == 0 && conflicts == 0 && errors == 0 {
        println!("   📭 No changes to pull");
    }

    println!(
        "⏱️  Sync pull completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

async fn handle_sync_status(
    storage: &Storage,
    client: &RegistryClient,
    verbose: bool,
    start: Instant,
) -> Result<()> {
    println!("🔄 Checking sync status...");

    // Get all local prompts
    let local_prompts = storage.list_prompts()?;

    if local_prompts.is_empty() {
        println!("No local prompts to sync");
        return Ok(());
    }

    let mut synced = 0;
    let mut pending_push = 0;
    let mut pending_pull = 0;
    let mut conflicts = 0;
    let mut errors = 0;

    // Check each prompt's sync status
    for prompt_name in &local_prompts {
        if verbose {
            println!("🔍 Checking '{}'...", prompt_name);
        }

        // Read local prompt
        let (local_metadata, local_content) = match storage.read_prompt(prompt_name) {
            Ok((metadata, content)) => (metadata, content),
            Err(e) => {
                if verbose {
                    println!("❌ Local read error for '{}': {}", prompt_name, e);
                }
                errors += 1;
                continue;
            }
        };

        // Check cloud version
        let url = format!("/api/prompts/{}", urlencoding::encode(prompt_name));
        match client.get(&url).await {
            Ok(response) => {
                let status = response.status();
                if status.is_success() {
                    // Parse cloud response
                    match response.json::<serde_json::Value>().await {
                        Ok(cloud_data) => {
                            let cloud_content = cloud_data["content"].as_str().unwrap_or("");
                            let cloud_description =
                                cloud_data["description"].as_str().unwrap_or("");
                            let cloud_updated = cloud_data["updated_at"].as_str().unwrap_or("");

                            // Compare content and metadata
                            let content_matches = local_content.trim() == cloud_content.trim();
                            let description_matches =
                                local_metadata.description == cloud_description;

                            if content_matches && description_matches {
                                synced += 1;
                                if verbose {
                                    println!(
                                        "✅ '{}' - Synced (updated: {})",
                                        prompt_name, cloud_updated
                                    );
                                }
                            } else {
                                conflicts += 1;
                                if verbose {
                                    println!("⚠️  '{}' - Conflict detected", prompt_name);
                                    if !content_matches {
                                        println!("   📝 Content differs");
                                    }
                                    if !description_matches {
                                        println!("   📄 Description differs");
                                    }
                                    println!("   💡 Use `ph sync resolve {}` to fix", prompt_name);
                                }
                            }
                        }
                        Err(e) => {
                            errors += 1;
                            if verbose {
                                println!(
                                    "❌ '{}' - Failed to parse cloud response: {}",
                                    prompt_name, e
                                );
                            }
                        }
                    }
                } else if status.as_u16() == 404 {
                    pending_push += 1;
                    if verbose {
                        println!("📤 '{}' - Needs push (not in cloud)", prompt_name);
                    }
                } else {
                    errors += 1;
                    if verbose {
                        println!("❌ '{}' - Cloud API error: {}", prompt_name, status);
                    }
                }
            }
            Err(e) => {
                errors += 1;
                if verbose {
                    println!("❌ '{}' - Request failed: {}", prompt_name, e);
                }
            }
        }
    }

    // Check for cloud-only prompts (need pull)
    match client.get("/api/prompts").await {
        Ok(response) => {
            if response.status().is_success() {
                match response.json::<serde_json::Value>().await {
                    Ok(cloud_data) => {
                        if let Some(cloud_prompts) = cloud_data["prompts"].as_array() {
                            for cloud_prompt in cloud_prompts {
                                if let Some(cloud_name) = cloud_prompt["name"].as_str() {
                                    if !local_prompts.contains(&cloud_name.to_string()) {
                                        pending_pull += 1;
                                        if verbose {
                                            println!(
                                                "📥 '{}' - Available for pull (cloud only)",
                                                cloud_name
                                            );
                                        }
                                    }
                                }
                            }
                        }
                    }
                    Err(_) => {
                        if verbose {
                            println!("⚠️  Could not parse cloud prompts list");
                        }
                    }
                }
            }
        }
        Err(_) => {
            if verbose {
                println!("⚠️  Could not fetch cloud prompts list");
            }
        }
    }

    // Summary
    println!();
    println!("📊 {} Sync Status Summary", "🔄".green().bold());

    if synced > 0 {
        println!("   ✅ Synced: {} prompt(s)", synced);
    }
    if pending_push > 0 {
        println!("   📤 Pending push: {} prompt(s)", pending_push);
    }
    if pending_pull > 0 {
        println!("   📥 Pending pull: {} prompt(s)", pending_pull);
    }
    if conflicts > 0 {
        println!(
            "   ⚠️  Conflicts: {} prompt(s) (require resolution)",
            conflicts
        );
    }
    if errors > 0 {
        println!("   ❌ Errors: {} prompt(s)", errors);
    }

    let total = synced + pending_push + pending_pull + conflicts + errors;
    if total == 0 {
        println!("   📭 No prompts found");
    } else {
        println!("   📊 Total: {} prompt(s)", total);
    }

    // Suggested actions
    if pending_push > 0 || pending_pull > 0 || conflicts > 0 {
        println!();
        println!("💡 {} Suggested actions:", "Next steps:".bold());

        if pending_push > 0 {
            println!("   📤 Push local changes: {}", "ph sync push".bold());
        }
        if pending_pull > 0 {
            println!("   📥 Pull cloud changes: {}", "ph sync pull".bold());
        }
        if conflicts > 0 {
            println!(
                "   ⚠️  Resolve conflicts: {} <prompt_name> --resolution [local|cloud|manual]",
                "ph sync resolve".bold()
            );
        }
        if pending_push > 0 && pending_pull > 0 {
            println!("   🔄 Bidirectional sync: {}", "ph sync".bold());
        }
    } else if synced == total && total > 0 {
        println!();
        println!("💚 {} All prompts are in sync!", "Perfect!".bold());
    }

    println!(
        "⏱️  Sync status completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

async fn handle_sync_resolve(
    storage: &Storage,
    client: &RegistryClient,
    prompt: &str,
    resolution: &str,
    start: Instant,
) -> Result<()> {
    let resolved_name = resolve_prompt_name(storage, prompt)?;
    println!("🔧 Resolving sync conflict for '{}'...", resolved_name);

    // Validate resolution strategy
    if !["local", "cloud", "manual"].contains(&resolution) {
        return Err(anyhow::anyhow!(
            "Invalid resolution strategy '{}'. Must be: local, cloud, or manual",
            resolution
        ));
    }

    // Check if prompt exists locally
    if !storage.prompt_exists(&resolved_name) {
        return Err(anyhow::anyhow!(
            "Prompt '{}' does not exist locally. Cannot resolve conflict.",
            resolved_name
        ));
    }

    // Read local version
    let (local_metadata, local_content) = storage
        .read_prompt(&resolved_name)
        .with_context(|| format!("Failed to read local prompt '{}'", resolved_name))?;

    // Fetch cloud version
    let url = format!("/api/prompts/{}", urlencoding::encode(&resolved_name));
    let cloud_response = client
        .get(&url)
        .await
        .with_context(|| format!("Failed to fetch cloud prompt '{}'", resolved_name))?;

    if !cloud_response.status().is_success() {
        if cloud_response.status().as_u16() == 404 {
            return Err(anyhow::anyhow!(
                "Prompt '{}' does not exist in cloud. No conflict to resolve.",
                resolved_name
            ));
        } else {
            return Err(anyhow::anyhow!(
                "Failed to fetch cloud prompt '{}': {}",
                resolved_name,
                cloud_response.status()
            ));
        }
    }

    let cloud_data: serde_json::Value = cloud_response
        .json()
        .await
        .with_context(|| format!("Failed to parse cloud response for '{}'", resolved_name))?;

    let cloud_content = cloud_data["content"].as_str().unwrap_or("");
    let cloud_description = cloud_data["description"].as_str().unwrap_or("");
    let cloud_tags: Vec<String> = cloud_data["tags"]
        .as_array()
        .map(|arr| {
            arr.iter()
                .filter_map(|v| v.as_str().map(|s| s.to_string()))
                .collect()
        })
        .unwrap_or_default();

    // Check if there's actually a conflict
    let content_matches = local_content.trim() == cloud_content.trim();
    let description_matches = local_metadata.description == cloud_description;

    if content_matches && description_matches {
        println!("✅ No conflict detected for '{}' - already in sync", resolved_name);
        return Ok(());
    }

    // Show conflict details
    println!();
    println!("⚠️  {} Conflict Details:", "Sync conflict detected!".yellow().bold());
    
    if !content_matches {
        println!("   📝 Content differs:");
        println!("      Local: {} characters", local_content.len());
        println!("      Cloud: {} characters", cloud_content.len());
    }
    
    if !description_matches {
        println!("   📄 Description differs:");
        println!("      Local: '{}'", local_metadata.description);
        println!("      Cloud: '{}'", cloud_description);
    }

    println!();

    match resolution {
        "local" => {
            println!("🏠 Keeping local version and pushing to cloud...");
            
            // Push local version to cloud
            let payload = serde_json::json!({
                "prompts": [{
                    "name": resolved_name,
                    "content": local_content,
                    "description": local_metadata.description,
                    "tags": local_metadata.tags.unwrap_or_default()
                }],
                "force": true
            });

            let push_response = client
                .post("/api/sync/push", &payload)
                .await
                .context("Failed to push local version to cloud")?;

            if push_response.status().is_success() {
                println!("✅ Local version pushed to cloud successfully");
            } else {
                let error_text = push_response.text().await.unwrap_or_default();
                return Err(anyhow::anyhow!(
                    "Failed to push local version: {}",
                    error_text
                ));
            }
        }
        "cloud" => {
            println!("☁️  Keeping cloud version and updating local...");
            
            // Update local with cloud version
            let metadata = PromptMetadata {
                id: resolved_name.clone(),
                description: cloud_description.to_string(),
                tags: if cloud_tags.is_empty() { None } else { Some(cloud_tags) },
                created_at: local_metadata.created_at,
                updated_at: Some(chrono::Utc::now().to_rfc3339()),
                version: local_metadata.version,
                git_hash: local_metadata.git_hash,
                parent_version: local_metadata.parent_version,
            };

            storage
                .write_prompt(&resolved_name, &metadata, cloud_content)
                .with_context(|| format!("Failed to save cloud version locally for '{}'", resolved_name))?;

            println!("✅ Cloud version saved locally successfully");
        }
        "manual" => {
            println!("🛠  Manual resolution selected...");
            println!();
            println!("Local version:");
            println!("  Description: {}", local_metadata.description);
            println!("  Content (first 100 chars): {}", 
                &local_content.chars().take(100).collect::<String>());
            if local_content.len() > 100 {
                println!("  ... ({} more characters)", local_content.len() - 100);
            }
            
            println!();
            println!("Cloud version:");
            println!("  Description: {}", cloud_description);
            println!("  Content (first 100 chars): {}", 
                &cloud_content.chars().take(100).collect::<String>());
            if cloud_content.len() > 100 {
                println!("  ... ({} more characters)", cloud_content.len() - 100);
            }

            println!();
            println!("💡 To manually resolve this conflict:");
            println!("   1. Edit the prompt: {}", format!("ph edit {}", resolved_name).bold());
            println!("   2. Choose your preferred version or merge content");
            println!("   3. Save and exit your editor");
            println!("   4. Push the resolved version: {}", "ph sync push".bold());
            
            return Ok(());
        }
        _ => unreachable!(),
    }

    println!();
    println!(
        "{} Conflict resolved using '{}' strategy",
        "Success!".green().bold(),
        resolution
    );
    
    println!(
        "⏱️  Sync resolve completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

async fn handle_sync_bidirectional(
    storage: &Storage,
    client: &RegistryClient,
    start: Instant,
) -> Result<()> {
    println!("🔄 Starting bidirectional sync...");
    println!();

    // Phase 1: Check sync status first
    println!("📊 Phase 1: Analyzing sync status...");
    
    let local_prompts = storage.list_prompts()?;
    let mut cloud_prompts = Vec::new();
    
    // Get cloud prompts
    match client.get("/api/prompts").await {
        Ok(response) => {
            if response.status().is_success() {
                match response.json::<serde_json::Value>().await {
                    Ok(cloud_data) => {
                        if let Some(cloud_array) = cloud_data["prompts"].as_array() {
                            cloud_prompts = cloud_array
                                .iter()
                                .filter_map(|p| p["name"].as_str().map(|s| s.to_string()))
                                .collect();
                        }
                    }
                    Err(e) => {
                        return Err(anyhow::anyhow!("Failed to parse cloud prompts: {}", e));
                    }
                }
            } else {
                return Err(anyhow::anyhow!(
                    "Failed to fetch cloud prompts: {}",
                    response.status()
                ));
            }
        }
        Err(e) => {
            return Err(anyhow::anyhow!("Request failed: {}", e));
        }
    }

    let mut pending_push = Vec::new();
    let mut pending_pull = Vec::new();
    let mut conflicts = Vec::new();
    let mut synced = 0;

    // Check each local prompt
    for prompt_name in &local_prompts {
        if cloud_prompts.contains(prompt_name) {
            // Check for conflicts
            let url = format!("/api/prompts/{}", urlencoding::encode(prompt_name));
            match client.get(&url).await {
                Ok(response) => {
                    if response.status().is_success() {
                        match response.json::<serde_json::Value>().await {
                            Ok(cloud_data) => {
                                let (local_metadata, local_content) = storage.read_prompt(prompt_name)?;
                                let cloud_content = cloud_data["content"].as_str().unwrap_or("");
                                let cloud_description = cloud_data["description"].as_str().unwrap_or("");

                                let content_matches = local_content.trim() == cloud_content.trim();
                                let description_matches = local_metadata.description == cloud_description;

                                if content_matches && description_matches {
                                    synced += 1;
                                } else {
                                    conflicts.push(prompt_name.clone());
                                }
                            }
                            Err(_) => conflicts.push(prompt_name.clone()),
                        }
                    } else {
                        conflicts.push(prompt_name.clone());
                    }
                }
                Err(_) => conflicts.push(prompt_name.clone()),
            }
        } else {
            // Local only - needs push
            pending_push.push(prompt_name.clone());
        }
    }

    // Check for cloud-only prompts (need pull)
    for cloud_prompt in &cloud_prompts {
        if !local_prompts.contains(cloud_prompt) {
            pending_pull.push(cloud_prompt.clone());
        }
    }

    // Report status
    println!("   ✅ In sync: {} prompts", synced);
    println!("   📤 Need push: {} prompts", pending_push.len());
    println!("   📥 Need pull: {} prompts", pending_pull.len());
    println!("   ⚠️  Conflicts: {} prompts", conflicts.len());

    // Check if everything is already in sync
    if pending_push.is_empty() && pending_pull.is_empty() && conflicts.is_empty() {
        println!();
        println!("💚 {} All prompts are already in sync!", "Perfect!".green().bold());
        println!(
            "⏱️  Bidirectional sync completed ({}ms)",
            start.elapsed().as_millis()
        );
        return Ok(());
    }

    println!();

    // Phase 2: Handle conflicts first
    if !conflicts.is_empty() {
        println!("⚠️  Phase 2: Conflict resolution required");
        println!("   The following prompts have conflicts:");
        for conflict in &conflicts {
            println!("     - {}", conflict);
        }
        println!();
        println!("💡 {} Resolve conflicts manually:", "Action required:".yellow().bold());
        println!("   For each conflict, run: {}", "ph sync resolve <prompt> --resolution [local|cloud|manual]".bold());
        println!("   Then run {} again to continue sync", "ph sync".bold());
        println!();
        return Ok(());
    }

    // Phase 3: Push local-only prompts
    if !pending_push.is_empty() {
        println!("📤 Phase 3: Pushing {} local prompts to cloud...", pending_push.len());
        
        let mut push_success = 0;
        let mut push_errors = 0;

        for prompt_name in &pending_push {
            print!("   📤 Pushing '{}'... ", prompt_name);
            
            match storage.read_prompt(prompt_name) {
                Ok((metadata, content)) => {
                    let payload = serde_json::json!({
                        "prompts": [{
                            "name": prompt_name,
                            "content": content,
                            "description": metadata.description,
                            "tags": metadata.tags.unwrap_or_default()
                        }],
                        "force": false
                    });

                    match client.post("/api/sync/push", &payload).await {
                        Ok(response) => {
                            if response.status().is_success() {
                                push_success += 1;
                                println!("");
                            } else {
                                push_errors += 1;
                                println!("❌ ({})", response.status());
                            }
                        }
                        Err(e) => {
                            push_errors += 1;
                            println!("❌ ({})", e);
                        }
                    }
                }
                Err(e) => {
                    push_errors += 1;
                    println!("❌ ({})", e);
                }
            }
        }

        println!("   📤 Push results: {} success, {} errors", push_success, push_errors);
        println!();
    }

    // Phase 4: Pull cloud-only prompts
    if !pending_pull.is_empty() {
        println!("📥 Phase 4: Pulling {} cloud prompts to local...", pending_pull.len());
        
        let mut pull_success = 0;
        let mut pull_errors = 0;

        for prompt_name in &pending_pull {
            print!("   📥 Pulling '{}'... ", prompt_name);
            
            let url = format!("/api/prompts/{}", urlencoding::encode(prompt_name));
            match client.get(&url).await {
                Ok(response) => {
                    if response.status().is_success() {
                        match response.json::<serde_json::Value>().await {
                            Ok(cloud_data) => {
                                let cloud_content = cloud_data["content"].as_str().unwrap_or("");
                                let cloud_description = cloud_data["description"].as_str().unwrap_or("");
                                let cloud_tags: Vec<String> = cloud_data["tags"]
                                    .as_array()
                                    .map(|arr| {
                                        arr.iter()
                                            .filter_map(|v| v.as_str().map(|s| s.to_string()))
                                            .collect()
                                    })
                                    .unwrap_or_default();

                                let metadata = PromptMetadata {
                                    id: prompt_name.clone(),
                                    description: cloud_description.to_string(),
                                    tags: if cloud_tags.is_empty() { None } else { Some(cloud_tags) },
                                    created_at: Some(chrono::Utc::now().to_rfc3339()),
                                    updated_at: None,
                                    version: None,
                                    git_hash: None,
                                    parent_version: None,
                                };

                                match storage.write_prompt(prompt_name, &metadata, cloud_content) {
                                    Ok(_) => {
                                        pull_success += 1;
                                        println!("");
                                    }
                                    Err(e) => {
                                        pull_errors += 1;
                                        println!("❌ ({})", e);
                                    }
                                }
                            }
                            Err(e) => {
                                pull_errors += 1;
                                println!("❌ ({})", e);
                            }
                        }
                    } else {
                        pull_errors += 1;
                        println!("❌ ({})", response.status());
                    }
                }
                Err(e) => {
                    pull_errors += 1;
                    println!("❌ ({})", e);
                }
            }
        }

        println!("   📥 Pull results: {} success, {} errors", pull_success, pull_errors);
        println!();
    }

    // Final summary
    println!("{} Bidirectional sync completed!", "Success!".green().bold());
    
    let total_operations = pending_push.len() + pending_pull.len();
    if total_operations > 0 {
        println!("   📊 Total operations: {}", total_operations);
        println!("   📤 Pushed: {} prompts", pending_push.len());
        println!("   📥 Pulled: {} prompts", pending_pull.len());
    }
    
    println!(
        "⏱️  Bidirectional sync completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

async fn handle_sync_verify(
    storage: &Storage,
    client: &RegistryClient,
    prompt: Option<&str>,
    verbose: bool,
    start: Instant,
) -> Result<()> {
    println!("🔍 Verifying sync integrity by checking actual database state...");

    let prompts_to_verify = if let Some(prompt_name) = prompt {
        // Verify specific prompt
        let resolved_name = resolve_prompt_name(storage, prompt_name)?;
        vec![resolved_name]
    } else {
        // Verify all prompts
        storage.list_prompts()?
    };

    if prompts_to_verify.is_empty() {
        println!("No prompts to verify");
        return Ok(());
    }

    let mut verified = 0;
    let mut errors = 0;
    let mut missing = 0;
    let mut out_of_sync = 0;

    for prompt_name in &prompts_to_verify {
        if verbose {
            println!("🔍 Verifying '{}'...", prompt_name);
        }

        // Read local prompt
        let local_result = storage.read_prompt(prompt_name);
        let (local_metadata, local_content) = match local_result {
            Ok((metadata, content)) => (metadata, content),
            Err(e) => {
                if verbose {
                    println!("❌ Local read error for '{}': {}", prompt_name, e);
                }
                errors += 1;
                continue;
            }
        };

        // Check if prompt exists in cloud
        let url = format!("/api/prompts/{}", urlencoding::encode(prompt_name));
        match client.get(&url).await {
            Ok(response) => {
                let status = response.status();
                if status.is_success() {
                    // Parse cloud response
                    match response.json::<serde_json::Value>().await {
                        Ok(cloud_data) => {
                            let cloud_content = cloud_data["content"].as_str().unwrap_or("");
                            let cloud_description =
                                cloud_data["description"].as_str().unwrap_or("");

                            // Compare content
                            let content_matches = local_content.trim() == cloud_content.trim();
                            let description_matches =
                                local_metadata.description == cloud_description;

                            if content_matches && description_matches {
                                verified += 1;
                                if verbose {
                                    println!("✅ '{}' - In sync", prompt_name);
                                }
                            } else {
                                out_of_sync += 1;
                                if verbose {
                                    println!("⚠️  '{}' - Out of sync", prompt_name);
                                    if !content_matches {
                                        println!("   📝 Content differs");
                                    }
                                    if !description_matches {
                                        println!("   📄 Description differs");
                                    }
                                }
                            }
                        }
                        Err(e) => {
                            errors += 1;
                            if verbose {
                                println!(
                                    "❌ '{}' - Failed to parse cloud response: {}",
                                    prompt_name, e
                                );
                            }
                        }
                    }
                } else if status.as_u16() == 404 {
                    missing += 1;
                    if verbose {
                        println!("⚠️  '{}' - Not found in cloud", prompt_name);
                    }
                } else {
                    errors += 1;
                    if verbose {
                        println!("❌ '{}' - Cloud API error: {}", prompt_name, status);
                    }
                }
            }
            Err(e) => {
                errors += 1;
                if verbose {
                    println!("❌ '{}' - Request failed: {}", prompt_name, e);
                }
            }
        }
    }

    // Summary
    println!();
    println!(
        "📊 {} {}",
        "Sync Verification Summary:".green().bold(),
        "Database integrity check completed".green()
    );

    if verified > 0 {
        println!("   ✅ In sync: {} prompt(s)", verified);
    }
    if missing > 0 {
        println!(
            "   ⚠️  Missing from cloud: {} prompt(s) (may need to push)",
            missing
        );
    }
    if out_of_sync > 0 {
        println!(
            "   ⚠️  Out of sync: {} prompt(s) (may need to sync)",
            out_of_sync
        );
    }
    if errors > 0 {
        println!("   ❌ Verification errors: {} prompt(s)", errors);
    }

    let total = verified + missing + out_of_sync + errors;
    let success_rate = if total > 0 {
        (verified * 100) / total
    } else {
        100
    };
    println!("   📊 Success rate: {}%", success_rate);

    if success_rate == 100 && missing == 0 && out_of_sync == 0 {
        println!("   💚 All prompts are properly synced!");
    } else if missing > 0 || out_of_sync > 0 {
        println!(
            "   💡 Consider running: {} or {} to resolve differences",
            "ph sync push".bold(),
            "ph sync pull".bold()
        );
    }

    println!(
        "⏱️  Sync verification completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

// =============================================================================
// Bidirectional File Sync Handlers
// =============================================================================

async fn handle_sync_file(
    storage: &Storage,
    path: &str,
    name: Option<&str>,
    force: bool,
    start: Instant,
) -> Result<()> {
    println!("🔄 Creating bidirectional sync for file '{}'...", path);
    
    let sync_manager = SimpleSyncManager::new(storage.clone())?;
    
    // Determine prompt name
    let prompt_name = match name {
        Some(name) => name.to_string(),
        None => {
            // Extract filename without extension
            let path_obj = std::path::Path::new(path);
            let filename = path_obj.file_stem()
                .and_then(|s| s.to_str())
                .unwrap_or("prompt");
            filename.to_string()
        }
    };
    
    let local_path = if std::path::Path::new(path).is_absolute() {
        std::path::PathBuf::from(path)
    } else {
        std::env::current_dir()?.join(path)
    };
    
    // Handle force flag
    if local_path.exists() && !force {
        return Err(anyhow::anyhow!(
            "File already exists at {:?}. Use --force to overwrite.",
            local_path
        ));
    }
    
    match sync_manager.sync_prompt(&prompt_name, Some(local_path.clone())) {
        Ok(created_path) => {
            println!("✅ Created bidirectional sync:");
            println!("   📁 Local file: {:?}", created_path);
            println!("   📦 PromptHive: {}", prompt_name);
            println!("   🔄 Status: Synced");
        }
        Err(e) => {
            return Err(e);
        }
    }
    
    println!(
        "⏱️  Sync file completed ({}ms)",
        start.elapsed().as_millis()
    );
    Ok(())
}

// =============================================================================
// Advanced sync functions temporarily disabled
// =============================================================================
// 
// The following functions have been temporarily disabled while we establish
// the basic sync functionality. They will be re-enabled once the full
// SyncManager integration is complete:
//
// - handle_sync_dir: Sync entire directory of prompts
// - handle_unsync: Remove bidirectional sync relationship  
// - handle_file_status: Show detailed sync status for file sync
// - handle_sync_repair: Repair broken sync relationships
// - handle_sync_conflicts: List all sync conflicts
// - handle_sync_watch: Watch files for changes and auto-sync
//
// For now, basic file sync is available via the `sync-file` command and
// the `ph new -s` flag for creating prompts with bidirectional sync.