Files
bot-bottle/claude_bottle/cli/cleanup.py
T
didericis 1d2c18eaae
test / run tests/run_tests.py (pull_request) Successful in 13s
refactor(platform): rename claude_bottle/bottles -> claude_bottle/platform
'bottles' was the package name when it held a single Bottle Protocol;
since we added BottlePlatform / BottlePlan / BottleCleanupPlan and
made it the home of platform dispatch, 'platform' describes the
package better. The 'bottle' concept (and the manifest field) stays.

CLI imports update from ..bottles to ..platform; internal relative
imports inside the package survive the rename unchanged. Git
detected all 7 file renames.
2026-05-10 23:37:28 -04:00

32 lines
771 B
Python

"""cleanup: stop and remove all orphaned claude-bottle resources
(containers + networks) left behind by previous bottles."""
from __future__ import annotations
import sys
from ..platform import get_bottle_platform
from ..log import info
from ._common import read_tty_line
def cmd_cleanup(_argv: list[str]) -> int:
platform = get_bottle_platform()
plan = platform.prepare_cleanup()
if plan.empty:
info("no claude-bottle resources to clean up")
return 0
plan.print()
sys.stderr.write("claude-bottle: remove all of the above? [y/N] ")
sys.stderr.flush()
reply = read_tty_line()
if reply not in ("y", "Y", "yes", "YES"):
info("aborted")
return 0
platform.cleanup(plan)
info("done")
return 0