Minimal KB layout so build_query_agent inside run_skill can boot.
(tmp_path: Path)
| 34 | |
| 35 | |
| 36 | def _make_kb(tmp_path: Path) -> Path: |
| 37 | """Minimal KB layout so build_query_agent inside run_skill can boot.""" |
| 38 | (tmp_path / "wiki").mkdir() |
| 39 | (tmp_path / "wiki" / "AGENTS.md").write_text("schema", encoding="utf-8") |
| 40 | return tmp_path |
| 41 | |
| 42 | |
| 43 | def _install_skill( |
no outgoing calls
no test coverage detected