Method
__init__
(self, path: Path | str | None = None)
Source from the content-addressed store, hash-verified
| 55 | """Manages Claude CLI session bindings keyed by MetaClaw session ID.""" |
| 56 | |
| 57 | def __init__(self, path: Path | str | None = None): |
| 58 | self._path = Path(path) if path else CLI_SESSIONS_FILE |
| 59 | # metaclaw_session_id → CliSessionBinding |
| 60 | self._bindings: dict[str, CliSessionBinding] = {} |
| 61 | self._load() |
| 62 | |
| 63 | # ── persistence ────────────────────────────────────────────── |
| 64 | |
Callers
nothing calls this directly
Tested by
no test coverage detected