Update name to gitlore instead of gitlab-inbox

This commit is contained in:
teernisse
2026-01-28 15:49:10 -05:00
parent 9a6357c353
commit 55b895a2eb
31 changed files with 1046 additions and 373 deletions

View File

@@ -5,9 +5,9 @@ pub mod commands;
use clap::{Parser, Subcommand};
use std::io::IsTerminal;
/// GitLab Inbox - Unified notification management
/// Gitlore - Local GitLab data management with semantic search
#[derive(Parser)]
#[command(name = "gi")]
#[command(name = "lore")]
#[command(version, about, long_about = None)]
pub struct Cli {
/// Path to config file
@@ -15,7 +15,7 @@ pub struct Cli {
pub config: Option<String>,
/// Machine-readable JSON output (auto-enabled when piped)
#[arg(long, global = true, env = "GI_ROBOT")]
#[arg(long, global = true, env = "LORE_ROBOT")]
pub robot: bool,
#[command(subcommand)]