(path: Path)
| 39 | |
| 40 | |
| 41 | def _iter_number(path: Path) -> int | None: |
| 42 | m = _ITER_RE.match(path.name) |
| 43 | return int(m.group(1)) if m else None |
| 44 | |
| 45 | |
| 46 | def list_iterations(kb_dir: Path, skill_name: str) -> list[Path]: |
no outgoing calls
no test coverage detected