@@ -1113,7 +1113,7 @@ def _create_lazy_tool_command(tool_name: str):
11131113 def tool_command (
11141114 ctx : Context ,
11151115 config : Optional [str ] = typer .Option (
1116- None , "--config" , "-c" , help = "Path to settings.conf configuration file"
1116+ None , "--config" , help = "Path to settings.conf configuration file"
11171117 ),
11181118 ):
11191119 """Launch the specified AI code editor."""
@@ -1217,10 +1217,7 @@ def make_placeholder(name):
12171217 def placeholder_cmd (
12181218 ctx : Context ,
12191219 config : Optional [str ] = typer .Option (
1220- None ,
1221- "--config" ,
1222- "-c" ,
1223- help = "Path to settings.conf configuration file" ,
1220+ None , "--config" , help = "Path to settings.conf configuration file" ,
12241221 ),
12251222 ):
12261223 # Replace this placeholder with the real command
@@ -1255,7 +1252,7 @@ def make_command(name, cls):
12551252 def command (
12561253 ctx : Context ,
12571254 config : Optional [str ] = typer .Option (
1258- None , "--config" , "-c" , help = "Path to settings.conf configuration file"
1255+ None , "--config" , help = "Path to settings.conf configuration file"
12591256 ),
12601257 ):
12611258 """Launch the specified AI code editor."""
@@ -1388,7 +1385,7 @@ def doctor(
13881385 ctx : Context ,
13891386 verbose : bool = typer .Option (False , "--verbose" , "-v" , help = "Show detailed output" ),
13901387 config : Optional [str ] = typer .Option (
1391- None , "--config" , "-c" , help = "Path to config file"
1388+ None , "--config" , help = "Path to config file"
13921389 ),
13931390):
13941391 """Run diagnostic checks on the code-assistant-manager installation (alias: d)"""
@@ -1452,7 +1449,7 @@ def upgrade_command(
14521449 False , "--verbose" , "-v" , help = "Enable verbose installer output"
14531450 ),
14541451 config : Optional [str ] = typer .Option (
1455- None , "--config" , "-c" , help = "Path to config file"
1452+ None , "--config" , help = "Path to config file"
14561453 ),
14571454):
14581455 """Upgrade CLI tools (alias: u). If not installed, will install."""
@@ -1517,7 +1514,7 @@ def upgrade_alias_cmd(
15171514 ctx : Context ,
15181515 target : str = typer .Argument ("all" , help = "Tool to upgrade or 'all'" ),
15191516 config : Optional [str ] = typer .Option (
1520- None , "--config" , "-c" , help = "Path to config file"
1517+ None , "--config" , help = "Path to config file"
15211518 ),
15221519):
15231520 """Alias for 'upgrade' command."""
@@ -1538,7 +1535,7 @@ def install_command(
15381535 False , "--verbose" , "-v" , help = "Enable verbose installer output"
15391536 ),
15401537 config : Optional [str ] = typer .Option (
1541- None , "--config" , "-c" , help = "Path to config file"
1538+ None , "--config" , help = "Path to config file"
15421539 ),
15431540):
15441541 """Install CLI tools (alias: i). Same as upgrade - if not installed, will install. If installed, will try to upgrade."""
@@ -1556,7 +1553,7 @@ def install_alias_cmd(
15561553 ctx : Context ,
15571554 target : str = typer .Argument ("all" , help = "Tool to install or 'all'" ),
15581555 config : Optional [str ] = typer .Option (
1559- None , "--config" , "-c" , help = "Path to config file"
1556+ None , "--config" , help = "Path to config file"
15601557 ),
15611558):
15621559 """Alias for 'install' command."""
@@ -1578,7 +1575,7 @@ def uninstall_command(
15781575 False , "--keep-config" , "-k" , help = "Keep configuration files"
15791576 ),
15801577 config : Optional [str ] = typer .Option (
1581- None , "--config" , "-c" , help = "Path to config file"
1578+ None , "--config" , help = "Path to config file"
15821579 ),
15831580):
15841581 """Uninstall CLI tools and backup their configuration files."""
@@ -1603,7 +1600,7 @@ def uninstall_alias(
16031600 False , "--keep-config" , "-k" , help = "Keep configuration files"
16041601 ),
16051602 config : Optional [str ] = typer .Option (
1606- None , "--config" , "-c" , help = "Path to config file"
1603+ None , "--config" , help = "Path to config file"
16071604 ),
16081605):
16091606 """Alias for 'uninstall' command."""
@@ -1636,7 +1633,7 @@ def doctor_alias(
16361633 ctx : Context ,
16371634 verbose : bool = typer .Option (False , "--verbose" , "-v" , help = "Show detailed output" ),
16381635 config : Optional [str ] = typer .Option (
1639- None , "--config" , "-c" , help = "Path to config file"
1636+ None , "--config" , help = "Path to config file"
16401637 ),
16411638):
16421639 """Alias for 'doctor' command."""
@@ -1652,7 +1649,7 @@ def doctor_alias(
16521649@config_app .command ("validate" )
16531650def validate_config (
16541651 config : Optional [str ] = typer .Option (
1655- None , "--config" , "-c" , help = "Path to config file"
1652+ None , "--config" , help = "Path to config file"
16561653 ),
16571654 verbose : bool = typer .Option (False , "--verbose" , "-v" , help = "Show detailed output" ),
16581655):
@@ -1859,10 +1856,10 @@ def set_config(
18591856 ),
18601857 value : str = typer .Argument (..., help = "Value to set" ),
18611858 app : str = typer .Option (
1862- None , "-a" , "- -app" , help = "App/tool to operate on (claude, codex, droid, etc.)"
1859+ None , "--app" , help = "App/tool to operate on (claude, codex, droid, etc.)"
18631860 ),
18641861 scope : str = typer .Option (
1865- "user" , "--scope" , "-s" , help = "Configuration scope (user, project)"
1862+ "user" , "--scope" , help = "Configuration scope (user, project)"
18661863 ),
18671864):
18681865 """Set a configuration value for code assistants.
@@ -1951,10 +1948,10 @@ def unset_config(
19511948 ..., help = "Configuration key path (e.g., 'model' or 'codex.model')"
19521949 ),
19531950 app : str = typer .Option (
1954- None , "-a" , "- -app" , help = "App/tool to operate on (claude, codex, droid, etc.)"
1951+ None , "--app" , help = "App/tool to operate on (claude, codex, droid, etc.)"
19551952 ),
19561953 scope : str = typer .Option (
1957- "user" , "--scope" , "-s" , help = "Configuration scope (user, project)"
1954+ "user" , "--scope" , help = "Configuration scope (user, project)"
19581955 ),
19591956):
19601957 """Unset a configuration value for code assistants.
@@ -2070,10 +2067,10 @@ def show_config(
20702067 None , help = "Specific config key path to show (optional)"
20712068 ),
20722069 app : str = typer .Option (
2073- "claude" , "-a" , "- -app" , help = "App to show config for (default: claude)"
2070+ "claude" , "--app" , help = "App to show config for (default: claude)"
20742071 ),
20752072 scope : Optional [str ] = typer .Option (
2076- None , "--scope" , "-s" , help = "Filter by scope (user, project)"
2073+ None , "--scope" , help = "Filter by scope (user, project)"
20772074 ),
20782075):
20792076 """Show configuration for an AI editor app in dotted notation format.
0 commit comments