`` /output/skills/ `` — one compiled skill's home.
(kb_dir: Path, skill_name: str)
| 37 | |
| 38 | |
| 39 | def skill_dir(kb_dir: Path, skill_name: str) -> Path: |
| 40 | """``<kb>/output/skills/<name>`` — one compiled skill's home.""" |
| 41 | return skills_root(kb_dir) / skill_name |
| 42 | |
| 43 | |
| 44 | def skill_workspace_dir(kb_dir: Path, skill_name: str) -> Path: |
no test coverage detected