(state: dict[str, Any])
| 237 | |
| 238 | |
| 239 | def write_state(state: dict[str, Any]) -> None: |
| 240 | STATE_DIR.mkdir(parents=True, exist_ok=True) |
| 241 | state["updated_at"] = now_iso() |
| 242 | STATE_PATH.write_text(json.dumps(state, indent=2), encoding="utf-8") |
| 243 | |
| 244 | |
| 245 | def read_state() -> dict[str, Any]: |