jarvy 0.0.5

Jarvy is a fast, cross-platform CLI that installs and manages developer tools across macOS and Linux.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! User onboarding module for Jarvy
//!
//! This module provides:
//! - First-run detection to welcome new users
//! - Project type detection to suggest appropriate tool stacks
//! - Welcome banner with quick action suggestions

pub mod detection;
pub mod welcome;

// Public API exports
#[allow(unused_imports)]
pub use detection::{
    DetectedProject, ProjectType, detect_project_type, is_first_run, mark_initialized,
};
pub use welcome::{WelcomeBannerConfig, show_welcome_banner};