MCPcopy
hub / github.com/aiming-lab/MetaClaw / __init__

Method __init__

metaclaw/cli_session_store.py:57–61  ·  view source on GitHub ↗
(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

Calls 1

_loadMethod · 0.95

Tested by

no test coverage detected