Problem
lakectl tag delete prompts for interactive confirmation but has no --yes / -y flag to bypass it. This makes it unusable by AI agents and in non-interactive scripts.
Other destructive commands (branch delete, branch reset, branch revert, repo delete, local checkout) all support -y / --yes to skip confirmation. tag delete is the only one that doesn't.
Expected behavior
lakectl tag delete <tag URI> --yes should skip the confirmation prompt and delete immediately, consistent with other destructive commands.
Workaround
Currently requires piping yes | to the command, which is fragile.
Problem
lakectl tag deleteprompts for interactive confirmation but has no--yes/-yflag to bypass it. This makes it unusable by AI agents and in non-interactive scripts.Other destructive commands (
branch delete,branch reset,branch revert,repo delete,local checkout) all support-y/--yesto skip confirmation.tag deleteis the only one that doesn't.Expected behavior
lakectl tag delete <tag URI> --yesshould skip the confirmation prompt and delete immediately, consistent with other destructive commands.Workaround
Currently requires piping
yes |to the command, which is fragile.