2026-08-09 22:49:31 +02:00
|
|
|
"""CLI entry point ``rmgr``."""
|
2026-08-09 22:41:26 +02:00
|
|
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
import argparse
|
2026-08-09 22:49:31 +02:00
|
|
|
import json
|
2026-08-09 22:41:26 +02:00
|
|
|
import sys
|
2026-08-09 22:49:31 +02:00
|
|
|
from pathlib import Path
|
2026-08-09 22:41:26 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def main(argv: list[str] | None = None) -> int:
|
|
|
|
|
parser = argparse.ArgumentParser(
|
|
|
|
|
prog="rmgr",
|
|
|
|
|
description="Repo Manager CLI (helixforge.repo-manager)",
|
|
|
|
|
)
|
2026-08-09 22:49:31 +02:00
|
|
|
parser.add_argument("--version", action="store_true", help="Print package version")
|
2026-08-09 22:41:26 +02:00
|
|
|
sub = parser.add_subparsers(dest="command")
|
|
|
|
|
|
|
|
|
|
sub.add_parser("version", help="Print version")
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
sub.add_parser("dual-run-status", help="Show dual-run flags and mutation meter")
|
2026-08-09 22:41:26 +02:00
|
|
|
|
2026-08-09 22:49:31 +02:00
|
|
|
p_obs = sub.add_parser("observe", help="Observe repository + print snapshot JSON")
|
|
|
|
|
p_obs.add_argument("--path", default=".", help="Repository checkout path")
|
|
|
|
|
p_obs.add_argument("--slug", default=None, help="Override repo slug")
|
|
|
|
|
|
|
|
|
|
p_rec = sub.add_parser("reconcile", help="Rebuild local work-record index from files")
|
2026-08-09 22:41:26 +02:00
|
|
|
p_rec.add_argument("--path", default=".", help="Repository checkout path")
|
2026-08-09 22:49:31 +02:00
|
|
|
p_rec.add_argument("--slug", default=None)
|
|
|
|
|
p_rec.add_argument("--no-write-index", action="store_true", help="Do not write index file")
|
|
|
|
|
|
|
|
|
|
p_cmd = sub.add_parser(
|
|
|
|
|
"update-task-status",
|
|
|
|
|
help="Command repo.work.update_task_status (file + git commit)",
|
|
|
|
|
)
|
|
|
|
|
p_cmd.add_argument("--path", default=".", help="Repository checkout path")
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
p_cmd.add_argument(
|
|
|
|
|
"--task-id",
|
|
|
|
|
required=True,
|
|
|
|
|
help="Canonical task id or State Hub task UUID",
|
|
|
|
|
)
|
2026-08-09 22:49:31 +02:00
|
|
|
p_cmd.add_argument(
|
|
|
|
|
"--status",
|
|
|
|
|
required=True,
|
|
|
|
|
choices=["wait", "todo", "progress", "done", "cancel"],
|
|
|
|
|
)
|
|
|
|
|
p_cmd.add_argument("--reason", default="rmgr CLI")
|
|
|
|
|
p_cmd.add_argument("--correlation-id", default=None)
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
p_cmd.add_argument("--idempotency-key", default=None)
|
|
|
|
|
p_cmd.add_argument("--expected-head-sha", default=None)
|
|
|
|
|
p_cmd.add_argument("--slug", default=None)
|
|
|
|
|
p_cmd.add_argument("--push", action="store_true", help="git push after commit (push-seal)")
|
2026-08-09 22:49:31 +02:00
|
|
|
p_cmd.add_argument(
|
|
|
|
|
"--no-commit",
|
|
|
|
|
action="store_true",
|
|
|
|
|
help="Patch file only (invalid as full applied evidence; for tests)",
|
|
|
|
|
)
|
2026-08-09 22:41:26 +02:00
|
|
|
|
|
|
|
|
args = parser.parse_args(argv)
|
2026-08-09 22:49:31 +02:00
|
|
|
|
2026-08-09 22:41:26 +02:00
|
|
|
if args.version or args.command in (None, "version"):
|
|
|
|
|
from repo_manager import __version__
|
|
|
|
|
|
|
|
|
|
print(__version__)
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
if args.command == "dual-run-status":
|
|
|
|
|
from repo_manager.dual_run import flags_status
|
|
|
|
|
|
|
|
|
|
print(json.dumps(flags_status(), indent=2))
|
|
|
|
|
return 0
|
2026-08-09 22:49:31 +02:00
|
|
|
|
|
|
|
|
if args.command == "observe":
|
|
|
|
|
from repo_manager.observe import observe_repository
|
|
|
|
|
|
|
|
|
|
snap, _idx = observe_repository(Path(args.path), slug=args.slug)
|
|
|
|
|
print(json.dumps(snap, indent=2))
|
2026-08-09 22:41:26 +02:00
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
if args.command == "reconcile":
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
from repo_manager.dual_run import record_mutation
|
2026-08-09 22:49:31 +02:00
|
|
|
from repo_manager.index_store import append_event, save_index
|
|
|
|
|
from repo_manager.observe import observe_repository
|
|
|
|
|
|
|
|
|
|
root = Path(args.path)
|
|
|
|
|
snap, index = observe_repository(root, slug=args.slug)
|
|
|
|
|
append_event(
|
|
|
|
|
index,
|
|
|
|
|
{
|
|
|
|
|
"type": "repo.reconciled",
|
|
|
|
|
"workplan_count": snap["index"]["workplan_count"],
|
|
|
|
|
"task_count": snap["index"]["task_count"],
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
"source": "repo-manager",
|
2026-08-09 22:49:31 +02:00
|
|
|
},
|
|
|
|
|
)
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
record_mutation(
|
|
|
|
|
source="repo-manager",
|
|
|
|
|
kind="reconcile",
|
|
|
|
|
repo_slug=snap.get("slug"),
|
|
|
|
|
detail=snap["index"],
|
|
|
|
|
)
|
2026-08-09 22:49:31 +02:00
|
|
|
if not args.no_write_index:
|
|
|
|
|
path = save_index(index)
|
|
|
|
|
print(json.dumps({"ok": True, "index_path": str(path), "snapshot": snap}, indent=2))
|
|
|
|
|
else:
|
|
|
|
|
print(json.dumps({"ok": True, "snapshot": snap, "index": index.to_dict()}, indent=2))
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
if args.command == "update-task-status":
|
|
|
|
|
from repo_manager.commands.task_status import update_task_status
|
|
|
|
|
|
|
|
|
|
result = update_task_status(
|
|
|
|
|
Path(args.path),
|
|
|
|
|
args.task_id,
|
|
|
|
|
args.status,
|
|
|
|
|
correlation_id=args.correlation_id,
|
|
|
|
|
reason=args.reason,
|
|
|
|
|
commit=not args.no_commit,
|
feat(RMGR-WP-0002): dual-run writeback, flags, meter, SH facade
Add dual-run flags/meter, harden task-status (idempotency, UUID, head,
push), State Hub adapter for PATCH /tasks and C-15/reconcile proxy, pilot
evidence, and finish RMGR-WP-0002.
2026-08-09 23:19:56 +02:00
|
|
|
push=args.push,
|
|
|
|
|
expected_head_sha=args.expected_head_sha,
|
|
|
|
|
idempotency_key=args.idempotency_key,
|
|
|
|
|
repo_slug=args.slug,
|
2026-08-09 22:41:26 +02:00
|
|
|
)
|
2026-08-09 22:49:31 +02:00
|
|
|
print(json.dumps(result.to_dict(), indent=2))
|
|
|
|
|
return 0 if result.status == "applied" else 1
|
2026-08-09 22:41:26 +02:00
|
|
|
|
|
|
|
|
parser.print_help()
|
|
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
raise SystemExit(main())
|