|
|
@@ -9,9 +9,9 @@ from pathlib import Path
|
|
|
|
|
|
|
|
|
ROOT = Path(__file__).resolve().parent.parent
|
|
|
-SKILL = (ROOT / "SKILL.md").read_text()
|
|
|
-README = (ROOT / "README.md").read_text()
|
|
|
-PLUGIN = json.loads((ROOT / ".claude-plugin" / "plugin.json").read_text())
|
|
|
+SKILL = (ROOT / "SKILL.md").read_text(encoding="utf-8")
|
|
|
+README = (ROOT / "README.md").read_text(encoding="utf-8")
|
|
|
+PLUGIN = json.loads((ROOT / ".claude-plugin" / "plugin.json").read_text(encoding="utf-8"))
|
|
|
|
|
|
|
|
|
def require(match: re.Match[str] | None, message: str) -> re.Match[str]:
|