completing move

This commit is contained in:
John Lancaster
2026-06-18 22:14:02 -05:00
parent e78383be1f
commit 9f34e12e08
3 changed files with 23 additions and 23 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ def _repo_root() -> Path:
def load_skill_document(*, skill_id: str, skill_slug: str) -> dict[str, str]:
"""Load the canonical skill markdown document for an MCP skill."""
document_path = _repo_root() / "skills" / skill_slug / "SKILL.md"
document_path = _repo_root() / "docs" / "skills" / skill_slug / "SKILL.md"
if not document_path.exists():
raise FileNotFoundError(
f"Missing skill document for '{skill_id}': {document_path}"