MCPcopy Create free account
hub / github.com/VectifyAI/OpenKB / skill_workspace_dir

Function skill_workspace_dir

openkb/skill/__init__.py:44–46  ·  view source on GitHub ↗

`` /output/skills/ -workspace`` — iteration history for a skill.

(kb_dir: Path, skill_name: str)

Source from the content-addressed store, hash-verified

42
43
44def 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)

Callers

nothing calls this directly

Calls 1

skills_rootFunction · 0.85

Tested by

no test coverage detected