Get the JSON status file path for an artifact (legacy wrapper).
(artifact_dir: Path, cache_key: str)
| 152 | # Legacy function wrappers for backward compatibility |
| 153 | # These now use the consolidated breadcrumb system |
| 154 | def _get_status_file(artifact_dir: Path, cache_key: str) -> Path: |
| 155 | """Get the JSON status file path for an artifact (legacy wrapper).""" |
| 156 | return artifact_dir / "info.json" |
| 157 | |
| 158 | |
| 159 | def _write_status(status_file: Path, status: dict[str, Any]) -> None: |
no outgoing calls
no test coverage detected