tuitbot-cli 0.1.52

CLI for Tuitbot autonomous X growth assistant
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
/// Display helpers for the setup wizard — banners, summaries, step headers.
use console::Style;

use super::wizard::WizardResult;

/// Print the step header: "Step N/8: Title\n".
pub(super) fn print_step_header(step: u8, title: &str) {
    let bold = Style::new().bold();
    eprintln!("{}", bold.apply_to(format!("Step {step}/8: {title}")));
    eprintln!();
}

/// Print a subtitle under a step header.
pub(super) fn print_step_subtitle(lines: &[&str]) {
    let dim = Style::new().dim();
    for line in lines {
        eprintln!("{}", dim.apply_to(*line));
    }
    eprintln!();
}

pub(super) fn print_welcome_banner() {
    let bold = Style::new().bold();
    let dim = Style::new().dim();

    eprintln!();
    eprintln!("{}", bold.apply_to("Welcome to Tuitbot Setup"));
    eprintln!(
        "{}",
        dim.apply_to("This wizard will create your configuration in 8 steps.")
    );
    eprintln!();
    eprintln!("{}", dim.apply_to("You'll need:"));
    eprintln!(
        "{}",
        dim.apply_to("  - X API credentials (https://developer.x.com)")
    );
    eprintln!("{}", dim.apply_to("  - Your product/business details"));
    eprintln!(
        "{}",
        dim.apply_to("  - An LLM API key (OpenAI, Anthropic, or Ollama)")
    );
    eprintln!();
    eprintln!(
        "{}",
        dim.apply_to("Tip: Defaults shown in [brackets] — just press Enter to accept them.")
    );
    eprintln!();
}

/// Display a summary of all collected values.
pub(super) fn print_summary(result: &WizardResult) {
    let bold = Style::new().bold();
    let dim = Style::new().dim();

    eprintln!("{}", bold.apply_to("Configuration Summary"));
    eprintln!("{}", dim.apply_to("─────────────────────"));

    eprintln!("  X API Client ID:   {}", result.client_id);
    eprintln!(
        "  Client Secret:     {}",
        if result.client_secret.is_some() {
            "(set)"
        } else {
            "(none)"
        }
    );

    eprintln!();
    eprintln!("  Product:           {}", result.product_name);
    eprintln!("  Description:       {}", result.product_description);
    eprintln!(
        "  URL:               {}",
        result.product_url.as_deref().unwrap_or("(none)")
    );
    eprintln!("  Audience:          {}", result.target_audience);
    eprintln!(
        "  Keywords:          {}",
        result.product_keywords.join(", ")
    );
    eprintln!("  Topics:            {}", result.industry_topics.join(", "));

    eprintln!();
    eprintln!(
        "  Brand Voice:       {}",
        result.brand_voice.as_deref().unwrap_or("(default)")
    );
    eprintln!(
        "  Reply Style:       {}",
        result.reply_style.as_deref().unwrap_or("(default)")
    );
    eprintln!(
        "  Content Style:     {}",
        result.content_style.as_deref().unwrap_or("(default)")
    );

    eprintln!();
    eprintln!(
        "  Opinions:          {}",
        if result.persona_opinions.is_empty() {
            "(none)".to_string()
        } else {
            result.persona_opinions.join(", ")
        }
    );
    eprintln!(
        "  Experiences:       {}",
        if result.persona_experiences.is_empty() {
            "(none)".to_string()
        } else {
            result.persona_experiences.join(", ")
        }
    );
    eprintln!(
        "  Content Pillars:   {}",
        if result.content_pillars.is_empty() {
            "(none)".to_string()
        } else {
            result.content_pillars.join(", ")
        }
    );

    eprintln!();
    eprintln!(
        "  Target Accounts:   {}",
        if result.target_accounts.is_empty() {
            "(none)".to_string()
        } else {
            result.target_accounts.join(", ")
        }
    );
    eprintln!(
        "  Approval Mode:     {}",
        if result.approval_mode { "yes" } else { "no" }
    );

    eprintln!();
    eprintln!("  Timezone:          {}", result.timezone);
    eprintln!(
        "  Active Hours:      {}:00 – {}:00",
        result.active_hours_start, result.active_hours_end
    );
    eprintln!("  Active Days:       {}", result.active_days.join(", "));

    eprintln!();
    eprintln!("  LLM Provider:      {}", result.llm_provider);
    eprintln!(
        "  API Key:           {}",
        if result.llm_api_key.is_some() {
            "(set)"
        } else {
            "(none)"
        }
    );
    eprintln!("  Model:             {}", result.llm_model);
    if let Some(url) = &result.llm_base_url {
        eprintln!("  Base URL:          {}", url);
    }

    eprintln!();
}

pub(super) fn print_remaining_steps(steps: &[&str]) {
    let bold = Style::new().bold();

    eprintln!();
    eprintln!("{}", bold.apply_to("Remaining steps:"));
    for (i, step) in steps.iter().enumerate() {
        eprintln!("  {}. {step}", i + 1);
    }
}

/// Print the quickstart welcome banner (replaces the 8-step banner).
pub(super) fn print_quickstart_banner() {
    let bold = Style::new().bold();
    let dim = Style::new().dim();

    eprintln!();
    eprintln!("{}", bold.apply_to("Tuitbot Quick Setup"));
    eprintln!("{}", dim.apply_to("───────────────────"));
    eprintln!("{}", dim.apply_to("Before we start, have these ready:"));
    eprintln!(
        "{}",
        dim.apply_to("  • X API Client ID  — from https://developer.x.com")
    );
    eprintln!(
        "{}",
        dim.apply_to("  • An LLM API key   — OpenAI, Anthropic, or Ollama (free, local)")
    );
    eprintln!();
    eprintln!(
        "{}",
        dim.apply_to("5 questions to get you running. Use --advanced for full configuration.")
    );
    eprintln!();
}

/// Print inline guide for obtaining an X API Client ID.
pub(super) fn print_x_api_guide() {
    let dim = Style::new().dim();

    eprintln!();
    eprintln!(
        "{}",
        dim.apply_to("To get your Client ID (takes ~2 minutes):")
    );
    eprintln!(
        "{}",
        dim.apply_to("  1. Go to https://developer.x.com/en/portal/dashboard")
    );
    eprintln!(
        "{}",
        dim.apply_to("  2. Create a Project and App (or select an existing one)")
    );
    eprintln!(
        "{}",
        dim.apply_to("  3. Under \"User authentication settings\", enable OAuth 2.0:")
    );
    eprintln!(
        "{}",
        dim.apply_to("     Type: \"Native App\" — Callback URL: http://127.0.0.1:8080/callback")
    );
    eprintln!(
        "{}",
        dim.apply_to("  4. Copy the Client ID from the \"Keys and tokens\" tab")
    );
    eprintln!();
}

/// Print a green checkmark for a successful LLM validation.
pub(super) fn print_llm_validation_ok(provider: &str, model: &str, latency_ms: u128) {
    let green = Style::new().green();
    eprintln!(
        "{}",
        green.apply_to(format!(
            "  ✓ Connected to {provider} ({model}, {latency_ms}ms)"
        ))
    );
}

/// Print a yellow warning for a failed LLM validation.
pub(super) fn print_llm_validation_fail(provider: &str, error: &str) {
    let yellow = Style::new().yellow();
    eprintln!(
        "{}",
        yellow.apply_to(format!("  ⚠ Could not connect to {provider}: {error}"))
    );
}

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

    fn test_wizard_result() -> WizardResult {
        WizardResult {
            client_id: "test-client".to_string(),
            client_secret: Some("secret".to_string()),
            product_name: "TestApp".to_string(),
            product_description: "Test product".to_string(),
            product_url: Some("https://test.com".to_string()),
            target_audience: "developers".to_string(),
            product_keywords: vec!["rust".to_string(), "cli".to_string()],
            industry_topics: vec!["programming".to_string()],
            brand_voice: Some("Friendly".to_string()),
            reply_style: Some("Helpful".to_string()),
            content_style: Some("Practical".to_string()),
            persona_opinions: vec!["Rust is great".to_string()],
            persona_experiences: vec!["Built CLI tools".to_string()],
            content_pillars: vec!["Systems programming".to_string()],
            target_accounts: vec!["user1".to_string()],
            approval_mode: true,
            timezone: "UTC".to_string(),
            active_hours_start: 8,
            active_hours_end: 22,
            active_days: vec!["Mon".to_string(), "Tue".to_string()],
            llm_provider: "openai".to_string(),
            llm_api_key: Some("sk-test".to_string()),
            llm_model: "gpt-4o-mini".to_string(),
            llm_base_url: None,
        }
    }

    fn minimal_wizard_result() -> WizardResult {
        WizardResult {
            client_id: "cid".to_string(),
            client_secret: None,
            product_name: "App".to_string(),
            product_description: String::new(),
            product_url: None,
            target_audience: String::new(),
            product_keywords: vec!["kw".to_string()],
            industry_topics: vec![],
            brand_voice: None,
            reply_style: None,
            content_style: None,
            persona_opinions: vec![],
            persona_experiences: vec![],
            content_pillars: vec![],
            target_accounts: vec![],
            approval_mode: true,
            timezone: "UTC".to_string(),
            active_hours_start: 8,
            active_hours_end: 22,
            active_days: vec![
                "Mon".to_string(),
                "Tue".to_string(),
                "Wed".to_string(),
                "Thu".to_string(),
                "Fri".to_string(),
                "Sat".to_string(),
                "Sun".to_string(),
            ],
            llm_provider: "ollama".to_string(),
            llm_api_key: None,
            llm_model: "llama3.2".to_string(),
            llm_base_url: Some("http://localhost:11434/v1".to_string()),
        }
    }

    // ── print functions don't panic ───────────────────────────────────

    #[test]
    fn print_step_header_does_not_panic() {
        print_step_header(1, "Test Step");
        print_step_header(8, "Last Step");
    }

    #[test]
    fn print_step_subtitle_does_not_panic() {
        print_step_subtitle(&["Line 1", "Line 2"]);
        print_step_subtitle(&[]);
    }

    #[test]
    fn print_welcome_banner_does_not_panic() {
        print_welcome_banner();
    }

    #[test]
    fn print_quickstart_banner_does_not_panic() {
        print_quickstart_banner();
    }

    #[test]
    fn print_x_api_guide_does_not_panic() {
        print_x_api_guide();
    }

    #[test]
    fn print_summary_does_not_panic() {
        print_summary(&test_wizard_result());
    }

    #[test]
    fn print_summary_minimal_does_not_panic() {
        print_summary(&minimal_wizard_result());
    }

    #[test]
    fn print_remaining_steps_does_not_panic() {
        print_remaining_steps(&["tuitbot auth", "tuitbot test", "tuitbot run"]);
        print_remaining_steps(&[]);
    }

    #[test]
    fn print_llm_validation_ok_does_not_panic() {
        print_llm_validation_ok("openai", "gpt-4o-mini", 150);
    }

    #[test]
    fn print_llm_validation_fail_does_not_panic() {
        print_llm_validation_fail("anthropic", "connection refused");
    }

    // ── Summary display logic ─────────────────────────────────────────

    #[test]
    fn summary_client_secret_display_set() {
        let result = test_wizard_result();
        let display = if result.client_secret.is_some() {
            "(set)"
        } else {
            "(none)"
        };
        assert_eq!(display, "(set)");
    }

    #[test]
    fn summary_client_secret_display_none() {
        let result = minimal_wizard_result();
        let display = if result.client_secret.is_some() {
            "(set)"
        } else {
            "(none)"
        };
        assert_eq!(display, "(none)");
    }

    #[test]
    fn summary_product_url_display() {
        let result = test_wizard_result();
        let display = result.product_url.as_deref().unwrap_or("(none)");
        assert_eq!(display, "https://test.com");
    }

    #[test]
    fn summary_product_url_none() {
        let result = minimal_wizard_result();
        let display = result.product_url.as_deref().unwrap_or("(none)");
        assert_eq!(display, "(none)");
    }

    #[test]
    fn summary_approval_mode_display() {
        let display_true = if true { "yes" } else { "no" };
        assert_eq!(display_true, "yes");
        let display_false = if false { "yes" } else { "no" };
        assert_eq!(display_false, "no");
    }

    #[test]
    fn summary_empty_vec_display() {
        let opinions: Vec<String> = vec![];
        let display = if opinions.is_empty() {
            "(none)".to_string()
        } else {
            opinions.join(", ")
        };
        assert_eq!(display, "(none)");
    }

    #[test]
    fn summary_nonempty_vec_display() {
        let opinions = vec!["opinion1".to_string(), "opinion2".to_string()];
        let display = if opinions.is_empty() {
            "(none)".to_string()
        } else {
            opinions.join(", ")
        };
        assert_eq!(display, "opinion1, opinion2");
    }

    #[test]
    fn summary_active_hours_format() {
        let result = test_wizard_result();
        let hours = format!(
            "{}:00 - {}:00",
            result.active_hours_start, result.active_hours_end
        );
        assert_eq!(hours, "8:00 - 22:00");
    }

    #[test]
    fn summary_api_key_display() {
        let result = test_wizard_result();
        let display = if result.llm_api_key.is_some() {
            "(set)"
        } else {
            "(none)"
        };
        assert_eq!(display, "(set)");
    }

    #[test]
    fn summary_base_url_display() {
        let result = minimal_wizard_result();
        if let Some(url) = &result.llm_base_url {
            assert_eq!(url, "http://localhost:11434/v1");
        } else {
            panic!("expected base_url to be set for ollama");
        }
    }
}

/// Print a compact summary of quickstart-collected values.
pub(super) fn print_quickstart_summary(result: &WizardResult) {
    let bold = Style::new().bold();
    let dim = Style::new().dim();

    eprintln!();
    eprintln!("{}", bold.apply_to("Configuration Summary"));
    eprintln!("{}", dim.apply_to("─────────────────────"));
    eprintln!("  Product:     {}", result.product_name);
    eprintln!("  Keywords:    {}", result.product_keywords.join(", "));
    eprintln!(
        "  LLM:         {} ({})",
        result.llm_provider, result.llm_model
    );
    eprintln!("  X API:       {} (Client ID set)", result.client_id);
    eprintln!("  Approval:    on (all posts queued for review)");
    eprintln!();
    eprintln!(
        "  {}",
        dim.apply_to("Defaults applied: UTC schedule, no brand voice, no persona.")
    );
    eprintln!(
        "  {}",
        dim.apply_to("Customize later: tuitbot init --advanced  or  tuitbot settings")
    );
    eprintln!();
}