`` /output/skills/ -workspace`` — iteration history for a skill.
(kb_dir: Path, skill_name: str)
| 42 | |
| 43 | |
| 44 | def skill_workspace_dir(kb_dir: Path, skill_name: str) -> Path: |
| 45 | """``<kb>/output/skills/<name>-workspace`` — iteration history for a skill.""" |
| 46 | return skills_root(kb_dir) / f"{skill_name}-workspace" |
| 47 | |
| 48 | |
| 49 | _DESC_RE = re.compile(r"^description:\s*(.*?)\s*$", re.MULTILINE) |
nothing calls this directly
no test coverage detected