slack-rs 0.1.70

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

use crate::api::{execute_api_call, ApiCallArgs, ApiCallContext, ApiCallResponse, ApiClient};
use crate::auth;
use crate::debug;
use crate::oauth;
use crate::profile::{
    create_token_store, default_config_path, make_token_key, resolve_profile_full, TokenType,
};

/// Parsed login arguments structure
#[derive(Debug, Clone, PartialEq)]
pub struct LoginArgs {
    pub profile_name: Option<String>,
    pub client_id: Option<String>,
    pub bot_scopes: Option<Vec<String>>,
    pub user_scopes: Option<Vec<String>>,
    pub tunnel_mode: TunnelMode,
}

/// Tunnel mode for login
#[derive(Debug, Clone, PartialEq)]
pub enum TunnelMode {
    None,
    Cloudflared(Option<String>),
    Ngrok(Option<String>),
}

impl TunnelMode {
    /// Check if tunnel mode is enabled
    pub fn is_enabled(&self) -> bool {
        !matches!(self, TunnelMode::None)
    }

    /// Check if cloudflared is enabled
    pub fn is_cloudflared(&self) -> bool {
        matches!(self, TunnelMode::Cloudflared(_))
    }

    /// Check if ngrok is enabled
    #[allow(dead_code)]
    pub fn is_ngrok(&self) -> bool {
        matches!(self, TunnelMode::Ngrok(_))
    }
}

/// Parse login command arguments
///
/// This function extracts and validates arguments for the `auth login` command.
/// It enforces mutual exclusivity between --cloudflared and --ngrok flags.
///
/// # Arguments
/// * `args` - Raw command line arguments after "auth login"
///
/// # Returns
/// * `Ok(LoginArgs)` - Successfully parsed and validated arguments
/// * `Err(String)` - Parse error with descriptive message
///
/// # Validation Rules
/// 1. --cloudflared and --ngrok are mutually exclusive
/// 2. Unknown options are rejected
/// 3. Scope inputs are normalized (comma-separated, whitespace-trimmed)
pub fn parse_login_args(args: &[String]) -> Result<LoginArgs, String> {
    let mut profile_name: Option<String> = None;
    let mut client_id: Option<String> = None;
    let mut cloudflared_path: Option<String> = None;
    let mut ngrok_path: Option<String> = None;
    let mut bot_scopes: Option<Vec<String>> = None;
    let mut user_scopes: Option<Vec<String>> = None;

    let mut i = 0;
    while i < args.len() {
        if args[i].starts_with("--") {
            match args[i].as_str() {
                "--client-id" => {
                    i += 1;
                    if i < args.len() {
                        client_id = Some(args[i].clone());
                    } else {
                        return Err("--client-id requires a value".to_string());
                    }
                }
                "--cloudflared" => {
                    // Check if next arg is a value (not starting with --) or end of args
                    if i + 1 < args.len() && !args[i + 1].starts_with("--") {
                        i += 1;
                        cloudflared_path = Some(args[i].clone());
                    } else {
                        // Use default "cloudflared" (PATH resolution)
                        cloudflared_path = Some("cloudflared".to_string());
                    }
                }
                "--ngrok" => {
                    // Check if next arg is a value (not starting with --) or end of args
                    if i + 1 < args.len() && !args[i + 1].starts_with("--") {
                        i += 1;
                        ngrok_path = Some(args[i].clone());
                    } else {
                        // Use default "ngrok" (PATH resolution)
                        ngrok_path = Some("ngrok".to_string());
                    }
                }
                "--bot-scopes" => {
                    i += 1;
                    if i < args.len() {
                        let scopes_input: Vec<String> =
                            args[i].split(',').map(|s| s.trim().to_string()).collect();
                        // Expand 'all' presets with bot context (true)
                        bot_scopes = Some(oauth::expand_scopes_with_context(&scopes_input, true));
                    } else {
                        return Err("--bot-scopes requires a value".to_string());
                    }
                }
                "--user-scopes" => {
                    i += 1;
                    if i < args.len() {
                        let scopes_input: Vec<String> =
                            args[i].split(',').map(|s| s.trim().to_string()).collect();
                        // Expand 'all' presets with user context (false)
                        user_scopes = Some(oauth::expand_scopes_with_context(&scopes_input, false));
                    } else {
                        return Err("--user-scopes requires a value".to_string());
                    }
                }
                _ => {
                    return Err(format!("Unknown option: {}", args[i]));
                }
            }
        } else if profile_name.is_none() {
            profile_name = Some(args[i].clone());
        } else {
            return Err(format!("Unexpected argument: {}", args[i]));
        }
        i += 1;
    }

    // Check for conflicting options
    if cloudflared_path.is_some() && ngrok_path.is_some() {
        return Err("Cannot specify both --cloudflared and --ngrok at the same time".to_string());
    }

    // Determine tunnel mode
    let tunnel_mode = if let Some(path) = cloudflared_path {
        TunnelMode::Cloudflared(Some(path))
    } else if let Some(path) = ngrok_path {
        TunnelMode::Ngrok(Some(path))
    } else {
        TunnelMode::None
    };

    Ok(LoginArgs {
        profile_name,
        client_id,
        bot_scopes,
        user_scopes,
        tunnel_mode,
    })
}

/// Run the auth login command with argument parsing
pub async fn run_auth_login(args: &[String], non_interactive: bool) -> Result<(), String> {
    // Parse arguments
    let parsed_args = parse_login_args(args)?;

    // Use default redirect_uri
    let redirect_uri = "http://127.0.0.1:8765/callback".to_string();

    // Keep base_url from environment for testing purposes only
    let base_url = std::env::var("SLACK_OAUTH_BASE_URL").ok();

    // If cloudflared or ngrok is specified, use extended login flow (manifest-first)
    if parsed_args.tunnel_mode.is_enabled() {
        // Tunnel mode requires interactive mode for credential input after manifest generation
        if non_interactive {
            return Err(
                "Tunnel login (--cloudflared/--ngrok) requires interactive mode.\n\
                 The manifest-first flow needs user interaction to create the Slack App\n\
                 and then enter credentials. Use the standard login flow for non-interactive mode."
                    .to_string(),
            );
        }

        // Use default scopes if not provided
        let bot_scopes = parsed_args.bot_scopes.unwrap_or_else(oauth::bot_all_scopes);
        let user_scopes = parsed_args
            .user_scopes
            .unwrap_or_else(oauth::user_all_scopes);

        if debug::enabled() {
            debug::log("Preparing to call login_with_credentials_extended");
            debug::log(format!("bot_scopes_count={}", bot_scopes.len()));
            debug::log(format!("user_scopes_count={}", user_scopes.len()));
        }

        // Call extended login - credentials are collected AFTER manifest generation
        auth::login_with_credentials_extended(
            bot_scopes,
            user_scopes,
            parsed_args.profile_name,
            parsed_args.tunnel_mode.is_cloudflared(),
        )
        .await
        .map_err(|e| e.to_string())
    } else {
        // Call standard login with credentials
        // This will prompt for client_secret and other missing OAuth config
        auth::login_with_credentials(
            parsed_args.client_id,
            parsed_args.profile_name,
            redirect_uri,
            vec![], // Legacy scopes parameter (unused)
            parsed_args.bot_scopes,
            parsed_args.user_scopes,
            base_url,
            non_interactive,
        )
        .await
        .map_err(|e| e.to_string())
    }
}

/// Check if we should show private channel guidance
fn should_show_private_channel_guidance(
    api_args: &ApiCallArgs,
    token_type: &str,
    response: &ApiCallResponse,
) -> bool {
    // Only show guidance for conversations.list with private_channel type and bot token
    if api_args.method != "conversations.list" || token_type != "bot" {
        return false;
    }

    // Check if types parameter includes private_channel
    if let Some(types) = api_args.params.get("types") {
        if !types.contains("private_channel") {
            return false;
        }
    } else {
        return false;
    }

    // Check if response has empty channels array
    if let Some(channels) = response.response.get("channels") {
        if let Some(channels_array) = channels.as_array() {
            return channels_array.is_empty();
        }
    }

    false
}

/// Infer the default token type based on token store existence
/// Returns User if a user token exists, otherwise Bot
fn infer_default_token_type(
    token_store: &dyn crate::profile::TokenStore,
    team_id: &str,
    user_id: &str,
) -> TokenType {
    let user_token_key = format!("{}:{}:user", team_id, user_id);
    if token_store.exists(&user_token_key) {
        TokenType::User
    } else {
        TokenType::Bot
    }
}

/// Result of token resolution containing the token and its type
#[derive(Debug)]
struct ResolvedToken {
    token: String,
    token_type: TokenType,
}

/// Resolves and retrieves the appropriate token for an API call
///
/// This function encapsulates the token resolution logic:
/// 1. Determines token type: CLI flag > profile default > inferred (user if exists, else bot)
/// 2. Attempts to retrieve token from token store
/// 3. Falls back to SLACK_TOKEN environment variable if store retrieval fails
/// 4. If explicit token type was requested and not found, returns error
/// 5. If no explicit preference, falls back from user to bot token
///
/// # Arguments
/// * `token_store` - Token store to retrieve tokens from
/// * `team_id` - Team ID for token key construction
/// * `user_id` - User ID for token key construction
/// * `cli_token_type` - Optional token type from CLI flag (--token-type)
/// * `profile_default_token_type` - Optional default token type from profile config
/// * `profile_name` - Profile name for error messages
///
/// # Returns
/// * `Ok(ResolvedToken)` - Successfully resolved token and its type
/// * `Err(String)` - Error message describing why token resolution failed
fn resolve_token(
    token_store: &dyn crate::profile::TokenStore,
    team_id: &str,
    user_id: &str,
    cli_token_type: Option<TokenType>,
    profile_default_token_type: Option<TokenType>,
    profile_name: &str,
) -> Result<ResolvedToken, String> {
    // Infer default token type based on user token existence
    let inferred_default = infer_default_token_type(token_store, team_id, user_id);

    // Resolve token type: CLI flag > profile default > inferred default
    let resolved_token_type =
        TokenType::resolve(cli_token_type, profile_default_token_type, inferred_default);

    // Create token keys for both bot and user tokens
    let token_key_bot = make_token_key(team_id, user_id);
    let token_key_user = format!("{}:{}:user", team_id, user_id);

    // Select the appropriate token key based on resolved token type
    let token_key = match resolved_token_type {
        TokenType::Bot => token_key_bot.clone(),
        TokenType::User => token_key_user.clone(),
    };

    // Determine if the token type was explicitly requested via CLI flag OR default_token_type
    // If either is set, we should NOT fallback to a different token type
    let explicit_request = cli_token_type.is_some() || profile_default_token_type.is_some();

    // PRIORITY 1: Check SLACK_TOKEN environment variable first (highest priority)
    let token = if let Ok(env_token) = std::env::var("SLACK_TOKEN") {
        env_token
    } else {
        // PRIORITY 2: Try to retrieve token from token store
        match token_store.get(&token_key) {
            Ok(t) => t,
            Err(_) => {
                // PRIORITY 3: If token not found in store, apply fallback logic
                if explicit_request {
                    // If token type was explicitly requested, fail without fallback
                    return Err(format!(
                        "No {} token found for profile '{}' ({}:{}). Explicitly requested token type not available. Set SLACK_TOKEN environment variable or run 'slack login' to obtain a {} token.",
                        resolved_token_type, profile_name, team_id, user_id, resolved_token_type
                    ));
                } else {
                    // If no token type preference was specified, try bot token as fallback
                    if resolved_token_type == TokenType::User {
                        if let Ok(bot_token) = token_store.get(&token_key_bot) {
                            eprintln!(
                                "Warning: User token not found, falling back to bot token for profile '{}'",
                                profile_name
                            );
                            return Ok(ResolvedToken {
                                token: bot_token,
                                token_type: TokenType::Bot,
                            });
                        } else {
                            return Err(format!(
                                "No {} token found for profile '{}' ({}:{}). Set SLACK_TOKEN environment variable or run 'slack login' to obtain a token.",
                                resolved_token_type, profile_name, team_id, user_id
                            ));
                        }
                    } else {
                        return Err(format!(
                            "No {} token found for profile '{}' ({}:{}). Set SLACK_TOKEN environment variable or run 'slack login' to obtain a token.",
                            resolved_token_type, profile_name, team_id, user_id
                        ));
                    }
                }
            }
        }
    };

    Ok(ResolvedToken {
        token,
        token_type: resolved_token_type,
    })
}

/// Run the api call command
pub async fn run_api_call(args: Vec<String>) -> Result<(), Box<dyn std::error::Error>> {
    // Parse arguments
    let api_args = ApiCallArgs::parse(&args)?;

    // Resolve profile name using common helper (--profile > SLACK_PROFILE > "default")
    let profile_name = crate::cli::resolve_profile_name(&args);

    // Get config path
    let config_path = default_config_path()?;

    // Resolve profile to get full profile details
    let profile = resolve_profile_full(&config_path, &profile_name)
        .map_err(|e| format!("Failed to resolve profile '{}': {}", profile_name, e))?;

    // Create context from resolved profile
    let context = ApiCallContext {
        profile_name: Some(profile_name.clone()),
        team_id: profile.team_id.clone(),
        user_id: profile.user_id.clone(),
    };

    // Create token store to check token existence for inference
    let token_store =
        create_token_store().map_err(|e| format!("Failed to create token store: {}", e))?;

    // Resolve token using dedicated function
    let resolved = resolve_token(
        &*token_store,
        &profile.team_id,
        &profile.user_id,
        api_args.token_type,
        profile.default_token_type,
        &profile_name,
    )
    .map_err(|e| -> Box<dyn std::error::Error> { e.into() })?;

    let token = resolved.token;
    let resolved_token_type = resolved.token_type;

    // Get debug level from args
    let debug_level = debug::get_debug_level(&args);

    // Log debug information if --debug or --trace flag is present
    let token_store_backend = if std::env::var("SLACK_TOKEN").is_ok() {
        "environment"
    } else {
        "file"
    };

    let endpoint = format!("https://slack.com/api/{}", api_args.method);

    debug::log_api_context(
        debug_level,
        Some(&profile_name),
        token_store_backend,
        resolved_token_type.as_str(),
        &api_args.method,
        &endpoint,
    );

    // Create API client
    let client = ApiClient::new();

    // Execute API call with token type information and command name
    let response = execute_api_call(
        &client,
        &api_args,
        &token,
        &context,
        resolved_token_type.as_str(),
        "api call",
    )
    .await?;

    // Log error code if present
    debug::log_error_code(debug_level, &response.response);

    // Display error guidance if response contains a known error
    crate::api::display_error_guidance(&response);

    // Check if we should show guidance for private_channel with bot token
    if should_show_private_channel_guidance(&api_args, resolved_token_type.as_str(), &response) {
        eprintln!();
        eprintln!("Note: The conversation list for private channels is empty.");
        eprintln!("Bot tokens can only see private channels where the bot is a member.");
        eprintln!("To list all private channels, use a User Token with appropriate scopes.");
        eprintln!("Run: slackcli auth login (with user_scopes) or use --token-type user");
        eprintln!();
    }

    // Print response as JSON
    // If --raw flag is set or SLACKRS_OUTPUT=raw, output only the Slack API response without envelope
    // Note: api_args.raw already accounts for both --raw flag and SLACKRS_OUTPUT env via should_output_raw()
    let json = if api_args.raw {
        serde_json::to_string_pretty(&response.response)?
    } else {
        serde_json::to_string_pretty(&response)?
    };
    println!("{}", json);

    Ok(())
}

/// Common arguments shared between export and import commands
struct ExportImportArgs {
    passphrase_env: Option<String>,
    yes: bool,
    lang: Option<String>,
}

impl ExportImportArgs {
    /// Parse common arguments from command line args
    /// Returns (ExportImportArgs, remaining_unparsed_args)
    fn parse(args: &[String]) -> (Self, Vec<(usize, String)>) {
        let mut passphrase_env: Option<String> = None;
        let mut yes = false;
        let mut lang: Option<String> = None;
        let mut remaining = Vec::new();

        let mut i = 0;
        while i < args.len() {
            match args[i].as_str() {
                "--passphrase-env" => {
                    i += 1;
                    if i < args.len() {
                        passphrase_env = Some(args[i].clone());
                    }
                }
                "--passphrase-prompt" => {
                    // Ignore this flag - we always prompt if --passphrase-env is not set
                }
                "--yes" => {
                    yes = true;
                }
                "--lang" => {
                    i += 1;
                    if i < args.len() {
                        lang = Some(args[i].clone());
                    }
                }
                _ => {
                    // Not a common argument, save for specific parsing
                    remaining.push((i, args[i].clone()));
                }
            }
            i += 1;
        }

        (
            Self {
                passphrase_env,
                yes,
                lang,
            },
            remaining,
        )
    }

    /// Get Messages based on language setting
    fn get_messages(&self) -> auth::Messages {
        if let Some(ref lang_code) = self.lang {
            if let Some(language) = auth::Language::from_code(lang_code) {
                auth::Messages::new(language)
            } else {
                auth::Messages::default()
            }
        } else {
            auth::Messages::default()
        }
    }

    /// Get passphrase from environment variable or prompt
    fn get_passphrase(&self, messages: &auth::Messages) -> Result<String, String> {
        if let Some(ref env_var) = self.passphrase_env {
            match std::env::var(env_var) {
                Ok(val) => Ok(val),
                Err(_) => {
                    // Fallback to prompt if environment variable is not set
                    eprintln!(
                        "Warning: Environment variable {} not found, prompting for passphrase",
                        env_var
                    );
                    rpassword::prompt_password(messages.get("prompt.passphrase"))
                        .map_err(|e| format!("Error reading passphrase: {}", e))
                }
            }
        } else {
            // Fallback to prompt mode
            rpassword::prompt_password(messages.get("prompt.passphrase"))
                .map_err(|e| format!("Error reading passphrase: {}", e))
        }
    }
}

/// Handle auth export command
pub async fn handle_export_command(args: &[String]) {
    // Check for help flags first
    if args.iter().any(|arg| arg == "-h" || arg == "--help") {
        super::help::print_export_help();
        return;
    }

    // Parse common arguments
    let (common_args, remaining) = ExportImportArgs::parse(args);

    // Parse export-specific arguments
    let mut profile_name: Option<String> = None;
    let mut all = false;
    let mut output_path: Option<String> = None;

    for (idx, arg) in remaining {
        match arg.as_str() {
            "--profile" => {
                // Next arg should be the profile name
                if idx + 1 < args.len() {
                    profile_name = Some(args[idx + 1].clone());
                }
            }
            "--all" => {
                all = true;
            }
            "--out" => {
                // Next arg should be the output path
                if idx + 1 < args.len() {
                    output_path = Some(args[idx + 1].clone());
                }
            }
            _ => {
                // Check if this is a value for a previous flag
                if idx > 0 {
                    let prev = &args[idx - 1];
                    if prev == "--profile"
                        || prev == "--out"
                        || prev == "--passphrase-env"
                        || prev == "--lang"
                    {
                        // This is a value, not an unknown option
                        continue;
                    }
                }
                eprintln!("Unknown option: {}", arg);
                std::process::exit(1);
            }
        }
    }

    // Get i18n messages
    let messages = common_args.get_messages();

    // Show warning and validate --yes
    if !common_args.yes {
        eprintln!("{}", messages.get("warn.export_sensitive"));
        eprintln!("Error: --yes flag is required to confirm this dangerous operation");
        std::process::exit(1);
    }

    // Validate required options
    let output = match output_path {
        Some(path) => path,
        None => {
            eprintln!("Error: --out <file> is required");
            std::process::exit(1);
        }
    };

    // Get passphrase
    let passphrase = match common_args.get_passphrase(&messages) {
        Ok(pass) => pass,
        Err(e) => {
            eprintln!("{}", e);
            std::process::exit(1);
        }
    };

    let options = auth::ExportOptions {
        profile_name,
        all,
        output_path: output,
        passphrase,
        yes: common_args.yes,
    };

    let token_store = create_token_store().expect("Failed to create token store");
    match auth::export_profiles(&*token_store, &options) {
        Ok(result) => {
            // Show warnings for skipped profiles
            if !result.skipped_profiles.is_empty() {
                eprintln!("{}", messages.get("warn.export_skipped"));
                for profile_name in &result.skipped_profiles {
                    eprintln!("  - {}", profile_name);
                }
                eprintln!();
                eprintln!(
                    "{}",
                    messages
                        .get("info.export_summary")
                        .replace("{exported}", &result.exported_count.to_string())
                        .replace("{skipped}", &result.skipped_profiles.len().to_string())
                );
                eprintln!();
            }
            println!("{}", messages.get("success.export"));
        }
        Err(e) => {
            eprintln!("Export failed: {}", e);
            std::process::exit(1);
        }
    }
}

/// Handle auth import command
pub async fn handle_import_command(args: &[String]) {
    // Check for help flags first
    if args.iter().any(|arg| arg == "-h" || arg == "--help") {
        super::help::print_import_help();
        return;
    }

    // Parse common arguments
    let (common_args, remaining) = ExportImportArgs::parse(args);

    // Parse import-specific arguments
    let mut input_path: Option<String> = None;
    let mut force = false;
    let mut dry_run = false;
    let mut json = false;

    for (idx, arg) in remaining {
        match arg.as_str() {
            "--in" => {
                // Next arg should be the input path
                if idx + 1 < args.len() {
                    input_path = Some(args[idx + 1].clone());
                }
            }
            "--force" => {
                force = true;
            }
            "--dry-run" => {
                dry_run = true;
            }
            "--json" => {
                json = true;
            }
            _ => {
                // Check if this is a value for a previous flag
                if idx > 0 {
                    let prev = &args[idx - 1];
                    if prev == "--in" || prev == "--passphrase-env" || prev == "--lang" {
                        // This is a value, not an unknown option
                        continue;
                    }
                }
                eprintln!("Unknown option: {}", arg);
                std::process::exit(1);
            }
        }
    }

    // Get i18n messages
    let messages = common_args.get_messages();

    // Validate required options
    let input = match input_path {
        Some(path) => path,
        None => {
            eprintln!("Error: --in <file> is required");
            std::process::exit(1);
        }
    };

    // Get passphrase
    let passphrase = match common_args.get_passphrase(&messages) {
        Ok(pass) => pass,
        Err(e) => {
            eprintln!("{}", e);
            std::process::exit(1);
        }
    };

    let options = auth::ImportOptions {
        input_path: input,
        passphrase,
        yes: common_args.yes,
        force,
        dry_run,
        json,
    };

    let token_store = create_token_store().expect("Failed to create token store");
    match auth::import_profiles(&*token_store, &options) {
        Ok(result) => {
            if json {
                // Output JSON format
                match serde_json::to_string_pretty(&result) {
                    Ok(json_output) => {
                        println!("{}", json_output);
                    }
                    Err(e) => {
                        eprintln!("Failed to serialize result to JSON: {}", e);
                        std::process::exit(1);
                    }
                }
            } else {
                // Output text format
                if result.dry_run {
                    println!("Dry-run mode: no changes were written.");
                    println!();
                }

                println!("Import Summary:");
                println!("  Total: {}", result.summary.total);
                println!("  Updated: {}", result.summary.updated);
                println!("  Skipped: {}", result.summary.skipped);
                println!("  Overwritten: {}", result.summary.overwritten);
                println!();
                println!("Profile Details:");
                for profile_result in &result.profiles {
                    println!(
                        "  {} - {} ({})",
                        profile_result.profile_name, profile_result.action, profile_result.reason
                    );
                }
                println!();

                if result.dry_run {
                    println!("Dry-run complete. Re-run without --dry-run to apply changes.");
                } else {
                    println!("{}", messages.get("success.import"));
                }
            }
        }
        Err(e) => {
            eprintln!("Import failed: {}", e);
            std::process::exit(1);
        }
    }
}

/// Run install-skills command
///
/// # Arguments
/// * `args` - Command line arguments (may include source)
///
/// # Returns
/// * `Ok(())` - Success (JSON output to stdout)
/// * `Err(String)` - Error (error message to stderr, non-zero exit)
pub fn run_install_skill(args: &[String]) -> Result<(), String> {
    use crate::skills;
    use serde_json::json;

    let global = args.iter().any(|arg| arg == "--global");

    // Extract source argument (first non-flag argument, or None for default)
    let source = args
        .iter()
        .find(|arg| !arg.starts_with("--"))
        .map(|s| s.as_str());

    // Install skill
    let installed = skills::install_skill(source, global).map_err(|e| e.to_string())?;

    // Build JSON response
    let response = json!({
        "schemaVersion": "1.0",
        "type": "skill-installation",
        "ok": true,
        "skills": [
            {
                "name": installed.name,
                "path": installed.path,
                "source_type": installed.source_type,
            }
        ]
    });

    // Output JSON to stdout
    println!("{}", serde_json::to_string_pretty(&response).unwrap());

    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::api::call::ApiCallMeta;
    use crate::profile::{InMemoryTokenStore, TokenStore};
    use serde_json::json;
    use serial_test::serial;
    use std::collections::HashMap;

    #[test]
    fn test_parse_login_args_empty() {
        let args = vec![];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert_eq!(parsed.profile_name, None);
        assert_eq!(parsed.client_id, None);
        assert_eq!(parsed.bot_scopes, None);
        assert_eq!(parsed.user_scopes, None);
        assert_eq!(parsed.tunnel_mode, TunnelMode::None);
    }

    #[test]
    fn test_parse_login_args_profile_only() {
        let args = vec!["my-profile".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert_eq!(parsed.profile_name, Some("my-profile".to_string()));
        assert_eq!(parsed.tunnel_mode, TunnelMode::None);
    }

    #[test]
    fn test_parse_login_args_with_client_id() {
        let args = vec!["--client-id".to_string(), "123.456".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert_eq!(parsed.client_id, Some("123.456".to_string()));
    }

    #[test]
    fn test_parse_login_args_cloudflared_default() {
        let args = vec!["--cloudflared".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert!(matches!(
            parsed.tunnel_mode,
            TunnelMode::Cloudflared(Some(_))
        ));
        if let TunnelMode::Cloudflared(Some(path)) = parsed.tunnel_mode {
            assert_eq!(path, "cloudflared");
        }
    }

    #[test]
    fn test_parse_login_args_cloudflared_with_path() {
        let args = vec![
            "--cloudflared".to_string(),
            "/usr/bin/cloudflared".to_string(),
        ];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        if let TunnelMode::Cloudflared(Some(path)) = parsed.tunnel_mode {
            assert_eq!(path, "/usr/bin/cloudflared");
        } else {
            panic!("Expected Cloudflared tunnel mode");
        }
    }

    #[test]
    fn test_parse_login_args_ngrok_default() {
        let args = vec!["--ngrok".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert!(matches!(parsed.tunnel_mode, TunnelMode::Ngrok(Some(_))));
        if let TunnelMode::Ngrok(Some(path)) = parsed.tunnel_mode {
            assert_eq!(path, "ngrok");
        }
    }

    #[test]
    fn test_parse_login_args_cloudflared_ngrok_mutual_exclusion() {
        let args = vec!["--cloudflared".to_string(), "--ngrok".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_err());
        assert!(result
            .unwrap_err()
            .contains("Cannot specify both --cloudflared and --ngrok"));
    }

    #[test]
    fn test_parse_login_args_bot_scopes() {
        let args = vec![
            "--bot-scopes".to_string(),
            "chat:write,users:read".to_string(),
        ];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert!(parsed.bot_scopes.is_some());
        let scopes = parsed.bot_scopes.unwrap();
        assert!(scopes.contains(&"chat:write".to_string()));
        assert!(scopes.contains(&"users:read".to_string()));
    }

    #[test]
    fn test_parse_login_args_user_scopes() {
        let args = vec![
            "--user-scopes".to_string(),
            "search:read,users:read".to_string(),
        ];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert!(parsed.user_scopes.is_some());
    }

    #[test]
    fn test_parse_login_args_all_parameters() {
        let args = vec![
            "work".to_string(),
            "--client-id".to_string(),
            "123.456".to_string(),
            "--bot-scopes".to_string(),
            "chat:write".to_string(),
            "--user-scopes".to_string(),
            "users:read".to_string(),
            "--cloudflared".to_string(),
        ];
        let result = parse_login_args(&args);
        assert!(result.is_ok());
        let parsed = result.unwrap();
        assert_eq!(parsed.profile_name, Some("work".to_string()));
        assert_eq!(parsed.client_id, Some("123.456".to_string()));
        assert!(parsed.bot_scopes.is_some());
        assert!(parsed.user_scopes.is_some());
        assert!(parsed.tunnel_mode.is_cloudflared());
    }

    #[test]
    fn test_parse_login_args_unknown_option() {
        let args = vec!["--unknown-flag".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Unknown option"));
    }

    #[test]
    fn test_parse_login_args_unexpected_positional() {
        let args = vec!["profile1".to_string(), "profile2".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("Unexpected argument"));
    }

    #[test]
    fn test_parse_login_args_client_id_missing_value() {
        let args = vec!["--client-id".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_err());
        assert!(result.unwrap_err().contains("--client-id requires a value"));
    }

    #[test]
    fn test_parse_login_args_bot_scopes_missing_value() {
        let args = vec!["--bot-scopes".to_string()];
        let result = parse_login_args(&args);
        assert!(result.is_err());
        assert!(result
            .unwrap_err()
            .contains("--bot-scopes requires a value"));
    }

    #[test]
    fn test_tunnel_mode_none() {
        let mode = TunnelMode::None;
        assert!(!mode.is_enabled());
        assert!(!mode.is_cloudflared());
        assert!(!mode.is_ngrok());
    }

    #[test]
    fn test_tunnel_mode_cloudflared() {
        let mode = TunnelMode::Cloudflared(Some("cloudflared".to_string()));
        assert!(mode.is_enabled());
        assert!(mode.is_cloudflared());
        assert!(!mode.is_ngrok());
    }

    #[test]
    fn test_tunnel_mode_ngrok() {
        let mode = TunnelMode::Ngrok(Some("ngrok".to_string()));
        assert!(mode.is_enabled());
        assert!(!mode.is_cloudflared());
        assert!(mode.is_ngrok());
    }

    #[test]
    fn test_should_show_private_channel_guidance_empty_response() {
        let mut params = HashMap::new();
        params.insert("types".to_string(), "private_channel".to_string());

        let args = ApiCallArgs {
            method: "conversations.list".to_string(),
            params,
            use_json: false,
            use_get: false,
            token_type: None,
            raw: false,
        };

        let response = ApiCallResponse {
            response: json!({
                "ok": true,
                "channels": []
            }),
            meta: ApiCallMeta {
                profile_name: Some("default".to_string()),
                team_id: "T123".to_string(),
                user_id: "U123".to_string(),
                method: "conversations.list".to_string(),
                command: "api call".to_string(),
                token_type: "bot".to_string(),
            },
        };

        // Should show guidance when bot token returns empty private channels
        assert!(should_show_private_channel_guidance(
            &args, "bot", &response
        ));
    }

    #[test]
    fn test_should_show_private_channel_guidance_non_empty_response() {
        let mut params = HashMap::new();
        params.insert("types".to_string(), "private_channel".to_string());

        let args = ApiCallArgs {
            method: "conversations.list".to_string(),
            params,
            use_json: false,
            use_get: false,
            token_type: None,
            raw: false,
        };

        let response = ApiCallResponse {
            response: json!({
                "ok": true,
                "channels": [
                    {"id": "C123", "name": "private-channel"}
                ]
            }),
            meta: ApiCallMeta {
                profile_name: Some("default".to_string()),
                team_id: "T123".to_string(),
                user_id: "U123".to_string(),
                method: "conversations.list".to_string(),
                command: "api call".to_string(),
                token_type: "bot".to_string(),
            },
        };

        // Should not show guidance when channels are returned
        assert!(!should_show_private_channel_guidance(
            &args, "bot", &response
        ));
    }

    #[test]
    fn test_should_show_private_channel_guidance_user_token() {
        let mut params = HashMap::new();
        params.insert("types".to_string(), "private_channel".to_string());

        let args = ApiCallArgs {
            method: "conversations.list".to_string(),
            params,
            use_json: false,
            use_get: false,
            token_type: None,
            raw: false,
        };

        let response = ApiCallResponse {
            response: json!({
                "ok": true,
                "channels": []
            }),
            meta: ApiCallMeta {
                profile_name: Some("default".to_string()),
                team_id: "T123".to_string(),
                user_id: "U123".to_string(),
                method: "conversations.list".to_string(),
                command: "api call".to_string(),
                token_type: "user".to_string(),
            },
        };

        // Should not show guidance when using user token
        assert!(!should_show_private_channel_guidance(
            &args, "user", &response
        ));
    }

    #[test]
    fn test_infer_default_token_type_with_user_token() {
        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set a user token
        token_store
            .set(
                &format!("{}:{}:user", team_id, user_id),
                "xoxp-test-user-token",
            )
            .unwrap();

        // Should infer User when user token exists
        let inferred = infer_default_token_type(&token_store, team_id, user_id);
        assert_eq!(inferred, TokenType::User);
    }

    #[test]
    fn test_infer_default_token_type_without_user_token() {
        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set only a bot token
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();

        // Should infer Bot when user token does not exist
        let inferred = infer_default_token_type(&token_store, team_id, user_id);
        assert_eq!(inferred, TokenType::Bot);
    }

    #[test]
    fn test_infer_default_token_type_with_both_tokens() {
        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set both tokens
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();
        token_store
            .set(
                &format!("{}:{}:user", team_id, user_id),
                "xoxp-test-user-token",
            )
            .unwrap();

        // Should infer User when user token exists (even if bot token also exists)
        let inferred = infer_default_token_type(&token_store, team_id, user_id);
        assert_eq!(inferred, TokenType::User);
    }

    #[test]
    fn test_infer_default_token_type_with_no_tokens() {
        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // No tokens set

        // Should infer Bot when no tokens exist
        let inferred = infer_default_token_type(&token_store, team_id, user_id);
        assert_eq!(inferred, TokenType::Bot);
    }

    #[test]
    #[serial]
    fn test_resolve_token_with_bot_token_in_store() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set a bot token
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();

        // Resolve token with no CLI or profile preference
        let result = resolve_token(&token_store, team_id, user_id, None, None, "default");

        assert!(result.is_ok());
        let resolved = result.unwrap();
        assert_eq!(resolved.token, "xoxb-test-bot-token");
        assert_eq!(resolved.token_type, TokenType::Bot);
    }

    #[test]
    #[serial]
    fn test_resolve_token_with_user_token_in_store() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set a user token
        token_store
            .set(
                &format!("{}:{}:user", team_id, user_id),
                "xoxp-test-user-token",
            )
            .unwrap();

        // Resolve token with no CLI or profile preference
        let result = resolve_token(&token_store, team_id, user_id, None, None, "default");

        assert!(result.is_ok());
        let resolved = result.unwrap();
        assert_eq!(resolved.token, "xoxp-test-user-token");
        assert_eq!(resolved.token_type, TokenType::User);
    }

    #[test]
    #[serial]
    fn test_resolve_token_with_slack_token_env() {
        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set SLACK_TOKEN environment variable
        std::env::set_var("SLACK_TOKEN", "xoxb-env-token");

        // Resolve token with no tokens in store
        let result = resolve_token(&token_store, team_id, user_id, None, None, "default");

        std::env::remove_var("SLACK_TOKEN");

        assert!(result.is_ok());
        let resolved = result.unwrap();
        assert_eq!(resolved.token, "xoxb-env-token");
        // Token type should be Bot (inferred default when no tokens exist)
        assert_eq!(resolved.token_type, TokenType::Bot);
    }

    #[test]
    #[serial]
    fn test_resolve_token_explicit_bot_request_fails_without_bot_token() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set only a user token
        token_store
            .set(
                &format!("{}:{}:user", team_id, user_id),
                "xoxp-test-user-token",
            )
            .unwrap();

        // Explicitly request bot token via CLI flag
        let result = resolve_token(
            &token_store,
            team_id,
            user_id,
            Some(TokenType::Bot),
            None,
            "default",
        );

        assert!(result.is_err());
        let error_msg = result.unwrap_err();
        assert!(error_msg.contains("No bot token found"));
        assert!(error_msg.contains("Explicitly requested token type not available"));
    }

    #[test]
    #[serial]
    fn test_resolve_token_explicit_user_request_fails_without_user_token() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set only a bot token
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();

        // Explicitly request user token via CLI flag
        let result = resolve_token(
            &token_store,
            team_id,
            user_id,
            Some(TokenType::User),
            None,
            "default",
        );

        assert!(result.is_err());
        let error_msg = result.unwrap_err();
        assert!(error_msg.contains("No user token found"));
        assert!(error_msg.contains("Explicitly requested token type not available"));
    }

    #[test]
    #[serial]
    fn test_resolve_token_fallback_from_user_to_bot() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set only a bot token
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();

        // No explicit request (user token is inferred default when it doesn't exist -> Bot)
        // But if user token were to be the inferred default and not found, it should fallback
        // Let me test the actual fallback scenario

        // Actually, the fallback only happens when resolved type is User and no explicit request
        // Since there's no user token, inferred default will be Bot anyway
        // To test fallback, I need to simulate a case where User is resolved but not found

        // This is not possible with the current logic because if user token doesn't exist,
        // inferred_default will be Bot. The fallback case only triggers when:
        // - resolved_token_type == TokenType::User
        // - explicit_request == false
        // - user token not in store and SLACK_TOKEN not set

        // For this to happen, we'd need profile.default_token_type to be User but no user token
        // Let me create that scenario:

        let result = resolve_token(
            &token_store,
            team_id,
            user_id,
            None,
            Some(TokenType::User), // Profile says use User
            "default",
        );

        // This should fail because profile explicitly requested User token
        assert!(result.is_err());
    }

    #[test]
    #[serial]
    fn test_resolve_token_no_fallback_when_profile_default_set() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set only a bot token
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();

        // Profile default is User (explicit request)
        let result = resolve_token(
            &token_store,
            team_id,
            user_id,
            None,
            Some(TokenType::User),
            "default",
        );

        // Should fail without fallback because profile explicitly requested User
        assert!(result.is_err());
        let error_msg = result.unwrap_err();
        assert!(error_msg.contains("Explicitly requested token type not available"));
    }

    #[test]
    #[serial]
    fn test_resolve_token_cli_overrides_profile_default() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set both tokens
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();
        token_store
            .set(
                &format!("{}:{}:user", team_id, user_id),
                "xoxp-test-user-token",
            )
            .unwrap();

        // Profile default is Bot, but CLI requests User
        let result = resolve_token(
            &token_store,
            team_id,
            user_id,
            Some(TokenType::User), // CLI flag
            Some(TokenType::Bot),  // Profile default
            "default",
        );

        assert!(result.is_ok());
        let resolved = result.unwrap();
        assert_eq!(resolved.token, "xoxp-test-user-token");
        assert_eq!(resolved.token_type, TokenType::User);
    }

    #[test]
    #[serial]
    fn test_resolve_token_slack_token_prioritized_over_store() {
        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set a bot token in store
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-store-token")
            .unwrap();

        // Set SLACK_TOKEN environment variable
        std::env::set_var("SLACK_TOKEN", "xoxb-env-token");

        let result = resolve_token(&token_store, team_id, user_id, None, None, "default");

        // Clean up environment variable
        std::env::remove_var("SLACK_TOKEN");

        assert!(result.is_ok());
        let resolved = result.unwrap();
        // Should use env token (SLACK_TOKEN), NOT store token
        assert_eq!(resolved.token, "xoxb-env-token");
        assert_eq!(resolved.token_type, TokenType::Bot);
    }

    #[test]
    #[serial]
    fn test_resolve_token_with_both_tokens_prefers_user() {
        // Ensure no SLACK_TOKEN env var is set (cleanup from other tests)
        std::env::remove_var("SLACK_TOKEN");

        let token_store = InMemoryTokenStore::new();
        let team_id = "T123";
        let user_id = "U456";

        // Set both tokens
        token_store
            .set(&format!("{}:{}", team_id, user_id), "xoxb-test-bot-token")
            .unwrap();
        token_store
            .set(
                &format!("{}:{}:user", team_id, user_id),
                "xoxp-test-user-token",
            )
            .unwrap();

        // No explicit preference
        let result = resolve_token(&token_store, team_id, user_id, None, None, "default");

        assert!(result.is_ok());
        let resolved = result.unwrap();
        // Should prefer User when both exist
        assert_eq!(resolved.token, "xoxp-test-user-token");
        assert_eq!(resolved.token_type, TokenType::User);
    }
}