(self, name: str)
| 200 | return self.tasks_root / f"{task_id}.result.json" |
| 201 | |
| 202 | def cache_path(self, name: str) -> Path: |
| 203 | normalized = str(name or "").strip() or "cache" |
| 204 | return self.cache_root / normalized |
| 205 | |
| 206 | def list_tasks(self, *, kind: str | None = None, limit: int = 50) -> list[dict[str, Any]]: |
| 207 | normalized_kind = str(kind or "").strip().lower() or None |
no outgoing calls
no test coverage detected