{"record":{"id":"87d2d1a0b9df2b2c","repo":"odysseus-dev/odysseus","slug":"no-skill-md-found-link-to-a-skill-folder-or-skil","errorCode":null,"errorMessage":"No SKILL.md found — link to a skill folder or SKILL.md on GitHub","messagePattern":"No SKILL\\.md found — link to a skill folder or SKILL\\.md on GitHub","errorType":"exception","errorClass":"SkillImportError","httpStatus":null,"severity":"error","filePath":"services/memory/skill_importer.py","lineNumber":473,"sourceCode":"        except Exception:\n            pass\n        try:\n            text = _fetch_text(_raw_url(src, path))\n            if path.lower().endswith(\".md\"):\n                files[path] = text\n                return files, src\n        except Exception:\n            pass\n        _list_github_dir(src, path, files)\n    else:\n        _list_github_dir(src, \"\", files)\n\n    if not any(p.lower().endswith(\"skill.md\") for p in files):\n        # Flat repo root with SKILL.md only\n        try:\n            files[\"SKILL.md\"] = _fetch_text(_raw_url(src, \"SKILL.md\"))\n        except Exception as e:\n            raise SkillImportError(\n                \"No SKILL.md found — link to a skill folder or SKILL.md on GitHub\"\n            ) from e\n    return files, src\n\n\ndef pick_skill_md(files: Dict[str, str]) -> Tuple[str, str]:\n    for rel, content in files.items():\n        if rel.lower().endswith(\"skill.md\"):\n            return rel, content\n    raise SkillImportError(\"bundle has no SKILL.md\")\n\n\ndef default_category_from_source(src: ResolvedSource) -> str:\n    return \"imported\"\n","sourceCodeStart":455,"sourceCodeEnd":488,"githubUrl":"https://github.com/odysseus-dev/odysseus/blob/f9235ebbf13f693a6fd29ce70b097f6ec83705bf/services/memory/skill_importer.py#L455-L488","documentation":"Error \"No SKILL.md found — link to a skill folder or SKILL.md on GitHub\" thrown in odysseus-dev/odysseus.","triggerScenarios":"Triggered when the corresponding server-side validation or runtime check at the recorded location rejects the request or operation and returns this error message to the caller.","commonSituations":"See trigger scenarios.","solutions":["Link to a folder that contains a SKILL.md file.","Point the URL directly at the SKILL.md on GitHub."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"f9235ebbf13f693a6fd29ce70b097f6ec83705bf","analyzedAt":"2026-08-14T21:47:48.359Z","schemaVersion":2},"datasetVersion":"2026-08-15T22:17:37.221Z"}