From 4a05143bf37ccd51562412f7ffdf488924490b3e Mon Sep 17 00:00:00 2001 From: Zhengshou Lai Date: Fri, 8 May 2026 13:53:10 +0800 Subject: [PATCH] fix(env): remove value masking in env list Local-only tool; no need to hide API keys/secrets in list output. --- bin/commands/env.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/commands/env.py b/bin/commands/env.py index 2b2e4a1..b14922a 100644 --- a/bin/commands/env.py +++ b/bin/commands/env.py @@ -21,8 +21,7 @@ def env_list(): return click.echo() for name, value in sorted(vars.items()): - masked = "***" if any(x in name.lower() for x in ["key", "secret", "token", "pass"]) else value - click.echo(f"{name:20} = {masked}") + click.echo(f"{name:20} = {value}") @env_cmd.command("get")