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

@ -33,6 +33,7 @@ build-backend = "hatchling.build"
packages = ["api", "mcp_server", "task_flow_engine"]
artifacts = [
"custodian_cli.py",
"repository_rename_cli.py",
"statehub_register.py",
"scripts/consistency_check.py",
"scripts/repo_sync.py",
@ -41,6 +42,17 @@ artifacts = [
"scripts/project_rules/*.template",
]
[tool.hatch.build.targets.wheel.force-include]
"custodian_cli.py" = "custodian_cli.py"
"repository_rename_cli.py" = "repository_rename_cli.py"
"statehub_register.py" = "statehub_register.py"
"scripts/consistency_check.py" = "scripts/consistency_check.py"
"scripts/ensure_gitignore_claude_rules.py" = "scripts/ensure_gitignore_claude_rules.py"
"scripts/repo_sync.py" = "scripts/repo_sync.py"
"scripts/mcp_registration.py" = "scripts/mcp_registration.py"
"scripts/project_claude_md.template" = "scripts/project_claude_md.template"
"scripts/project_rules" = "scripts/project_rules"
[tool.uv.sources]
llm-connect = { path = "/home/worsch/llm-connect", editable = true }
hub-core = { path = "/home/worsch/hub-core", editable = true }