The Sep 2026 decomposition (PR #102117) makes internal import paths a non-API: names now live in the focused modules that define them. This commit is the ONLY thing keeping the old paths alive, so external plugins have time to update. It is deliberately a single, unsquashed commit: git revert <this sha> removes every shim, stub and manifest at once on the announced date. Nothing in-tree may depend on these pointers: scripts/check_compat_pointers.py (wired into lint.yml) fails CI if it does. What it adds (see COMPAT_MANIFEST.md, compat_manifest.json): - 332 facade modules get one delimited `PLUGIN-COMPAT` block appended at the end of the file - 1,172 moved names resolved lazily via a module `__getattr__` (PEP 562) — never a top-level import, so no import cycles; facades that already had `__getattr__` get a chained one - 592 third-party/stdlib names the old modules used to expose, with their original import statements - 266 public definitions that had been deleted as unused, restored byte-for-byte from the pre-decomposition tree (+40 private helpers and 16 imports pulled in only because a restored definition needs them) - 3 deleted modules recreated as re-export stubs (gateway/startup_watchdog, hermes_cli/observability/ relay_runtime, tools/environments/modal_utils) - private names (`_x`) get no pointer: they were never API (3,792 skipped) Verified: all 335 touched modules import under a fresh HERMES_HOME and every manifest name resolves; the lint reports zero in-tree uses; ruff clean; targeted suites unchanged.
39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
"""Hermes-managed Camofox state helpers.
|
|
|
|
With managed persistence enabled, Hermes sends a deterministic userId derived from the
|
|
active profile so Camofox maps it to the same persistent browser profile across restarts.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import uuid
|
|
from pathlib import Path
|
|
from typing import Dict, Optional
|
|
|
|
from hermes_constants import get_hermes_home
|
|
|
|
|
|
def get_camofox_state_dir() -> Path:
|
|
"""Return the profile-scoped root directory for Camofox persistence."""
|
|
return get_hermes_home() / "browser_auth" / "camofox"
|
|
|
|
|
|
def get_camofox_identity(task_id: Optional[str] = None) -> Dict[str, str]:
|
|
"""Stable Hermes-managed Camofox identity: userId is profile-scoped, session key is
|
|
scoped to the logical browser task so new tabs in the same profile reuse it."""
|
|
scope_root = str(get_camofox_state_dir())
|
|
user_digest = uuid.uuid5(uuid.NAMESPACE_URL, f"camofox-user:{scope_root}").hex[:10]
|
|
session_digest = uuid.uuid5(uuid.NAMESPACE_URL, f"camofox-session:{scope_root}:{task_id or 'default'}").hex[:16]
|
|
return {"user_id": f"hermes_{user_digest}", "session_key": f"task_{session_digest}"}
|
|
|
|
|
|
# ---- BEGIN PLUGIN-COMPAT (revert-scheduled; see COMPAT_MANIFEST.md) ----
|
|
# Names external plugins imported from this module before the Sep 2026 decomposition.
|
|
# Internal code MUST NOT use these (scripts/check_compat_pointers.py fails CI if it does).
|
|
# The whole block is removed by reverting the commit that added it.
|
|
|
|
CAMOFOX_STATE_DIR_NAME = "browser_auth"
|
|
|
|
CAMOFOX_STATE_SUBDIR = "camofox"
|
|
# ---- END PLUGIN-COMPAT ----
|