(path: Path, data)
| 49 | |
| 50 | |
| 51 | def write_json(path: Path, data): |
| 52 | path.parent.mkdir(parents=True, exist_ok=True) |
| 53 | with open(path, "w", encoding="utf-8") as f: |
| 54 | json.dump(data, f, ensure_ascii=False) |
| 55 | print(f" wrote {path.relative_to(REPO_ROOT)}") |
| 56 | |
| 57 | |
| 58 | def agent_dirs(): |
no outgoing calls
no test coverage detected