cd9f023f3d
prd-number-check / require-numbered-prds (pull_request) Successful in 11s
tracker-policy-pr / check-pr (pull_request) Successful in 14s
test / unit (pull_request) Successful in 59s
test / integration-docker (pull_request) Successful in 1m6s
test / coverage (push) Successful in 21s
test / image-input-builds (push) Successful in 44s
test / image-input-builds (pull_request) Successful in 1m15s
test / unit (push) Successful in 57s
test / coverage (pull_request) Successful in 20s
lint / lint (push) Successful in 1m3s
Update Quality Badges / update-badges (push) Successful in 1m12s
test / integration-docker (push) Successful in 1m0s
`doctor` told users to run `./cli.py backend setup`. cli.py is a four-line wrapper at the repo root that calls bot_bottle.cli:main, and it does not ship — [tool.setuptools.packages.find] includes only bot_bottle*, so anyone who installed rather than cloned has no such file. Confirmed against a real install: the user's tree contains exactly one executable, `bot-bottle`, and no cli.py anywhere, while doctor recommended `./cli.py` three times. Invisible in development, where ./cli.py works fine from a checkout, which is why only a clean-install test surfaced it. The two entry points are the same code, so the fix is to name the one that always exists. 141 replacements across 45 files: the runtime messages that caused this, plus README, docs, PRDs, research notes and test prose, so nothing teaches the invocation a user cannot run. scripts/demo.sh is deliberately untouched — it *executes* ./cli.py from a checkout, where that is the correct and available path. Verified end to end: a sandbox install now reports "Run: bot-bottle backend setup --backend=firecracker", and bot-bottle is on that user's PATH. Unit suite unchanged against the pre-existing baseline. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WEfZZhakx13bxTfXcZCoS5
54 lines
1.6 KiB
Python
54 lines
1.6 KiB
Python
"""commit: freeze a running bottle's state to a resumable artifact.
|
|
|
|
Docker bottles are committed to a local Docker image. Macos-container
|
|
bottles are exported and rebuilt as a local Apple Container image.
|
|
Firecracker bottles stream the guest rootfs out over SSH and rebuild a
|
|
local Docker image. The resulting reference is stored in per-bottle
|
|
state so the next `bot-bottle resume <slug>` boots from the snapshot
|
|
instead of rebuilding from the Dockerfile.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import argparse
|
|
|
|
from ...backend import enumerate_active_agents
|
|
from ...backend.freeze import CommitCancelled, get_freezer
|
|
from ...bottle_state import read_metadata
|
|
from ...log import die
|
|
from ..constants import PROG
|
|
from .. import tui
|
|
|
|
|
|
def cmd_commit(argv: list[str]) -> int:
|
|
parser = argparse.ArgumentParser(prog=f"{PROG} commit", add_help=True)
|
|
parser.add_argument(
|
|
"slug",
|
|
nargs="?",
|
|
default=None,
|
|
help=(
|
|
"bottle slug from `cli.py active` "
|
|
"(omit to pick interactively)"
|
|
),
|
|
)
|
|
args = parser.parse_args(argv)
|
|
|
|
slug = args.slug
|
|
if slug is None:
|
|
active = enumerate_active_agents()
|
|
if not active:
|
|
die("no active bottles; start one with `bot-bottle start`")
|
|
choices = [a.slug for a in active]
|
|
slug = tui.filter_select(choices, title="Select bottle to commit")
|
|
if slug is None:
|
|
return 0
|
|
|
|
metadata = read_metadata(slug)
|
|
backend = metadata.backend if metadata else ""
|
|
|
|
try:
|
|
get_freezer(backend).commit_slug(slug)
|
|
except CommitCancelled:
|
|
return 0
|
|
return 0
|