feat: add repository rename orchestration CLI
All checks were successful
CI Smoke / host-smoke (push) Successful in 0s
CI Smoke / container-smoke (push) Successful in 1s
Build and Publish Multi-Context Image / build-and-push (push) Successful in 25s

Assistant: codex
Assistant-Model: gpt-5.6-sol
Assistant-Session: 01a049a4-ee9f-78e1-9d66-2cb0f9bea3e3
This commit is contained in:
tegwick 2026-08-29 12:00:22 +02:00
parent 6312db8700
commit 6b82215ae7
11 changed files with 1373 additions and 4 deletions

View file

@ -22,6 +22,7 @@ import urllib.parse
import urllib.request
from pathlib import Path
from repository_rename_cli import configure_repo_commands
from statehub_register import run_register as run_statehub_register
STATE_HUB_DIR = Path(__file__).resolve().parent
@ -728,6 +729,8 @@ def main() -> None:
)
sub = parser.add_subparsers(dest="command", required=True)
configure_repo_commands(sub)
# register
statehub_reg = sub.add_parser(
"register",