소스 검색

fix: add missing skills field to plugin.json so Claude Code loads skills

Without "skills": "./skills/", the Claude Code plugin installer never
registers the skill files and /frontend-slides produces 0 skills on
/reload-plugins. Fixes #60 #63 #64.
MageByte-Zero 1 개월 전
부모
커밋
5d4cd1dc81
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      plugins/frontend-slides/.claude-plugin/plugin.json

+ 2 - 1
plugins/frontend-slides/.claude-plugin/plugin.json

@@ -9,5 +9,6 @@
   "homepage": "https://github.com/zarazhangrui/frontend-slides",
   "repository": "https://github.com/zarazhangrui/frontend-slides",
   "license": "MIT",
-  "keywords": ["presentations", "slides", "html", "design", "powerpoint", "animations"]
+  "keywords": ["presentations", "slides", "html", "design", "powerpoint", "animations"],
+  "skills": "./skills/"
 }