MCPcopy Create free account
hub / github.com/Claw-AI-Lab/Claw-AI-Lab / __init__

Method __init__

backend/agent/researchclaw/evolution.py:353–356  ·  view source on GitHub ↗
(self, store_dir: Path)

Source from the content-addressed store, hash-verified

351 """JSONL-backed store for pipeline lessons."""
352
353 def __init__(self, store_dir: Path) -> None:
354 self._dir = store_dir
355 self._dir.mkdir(parents=True, exist_ok=True)
356 self._lessons_path = self._dir / "lessons.jsonl"
357
358 @property
359 def lessons_path(self) -> Path:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected