diff --git a/Cargo.toml b/Cargo.toml index d60cfa0..56c6164 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "aigpt" -version = "0.1.0" +version = "0.2.0" edition = "2021" authors = ["syui"] -description = "Simple memory storage for Claude with MCP" +description = "Simple memory storage for Claude with MCP (with game mode!)" [[bin]] diff --git a/src/main.rs b/src/main.rs index 68477a4..51d6604 100644 --- a/src/main.rs +++ b/src/main.rs @@ -10,7 +10,9 @@ use mcp::BaseMCPServer; #[derive(Parser)] #[command(name = "aigpt")] +#[command(version)] #[command(about = "Simple memory storage for Claude with MCP")] +#[command(long_about = "AI memory system with psychological priority scoring and game-style results!")] struct Cli { #[command(subcommand)] command: Commands,