stand 0.2.0

A CLI tool for explicit environment variable management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod detector;
pub mod prompt;
pub mod spawner;

// Re-export commonly used items
pub use detector::{
    detect_user_shell, get_active_environment, get_active_project_root, get_shell_type,
    is_stand_shell_active, ShellType,
};
pub use prompt::{generate_prompt_prefix, get_prompt_env_vars, STAND_AUTO_EXIT, STAND_PROMPT};
pub use spawner::{
    build_shell_environment, spawn_shell, STAND_ACTIVE, STAND_ENVIRONMENT, STAND_PROJECT_ROOT,
};