Fix plugin.json schema validation errors

- Change author from string to object with name property
- Remove invalid displayName field
- Point skills to directory instead of file (auto-discovery)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Shehab Tarek
2026-01-31 22:27:06 +02:00
co-authored by Claude Opus 4.5
parent 3cf049fa3e
commit 68b67a5bd7
+6 -7
View File
@@ -1,12 +1,11 @@
{
"name": "andrej-karpathy-skills",
"displayName": "Karpathy Coding Guidelines",
"version": "1.0.0",
"description": "Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations on LLM coding pitfalls",
"author": "forrestchang",
"version": "1.0.0",
"author": {
"name": "forrestchang"
},
"license": "MIT",
"repository": "https://github.com/forrestchang/andrej-karpathy-skills",
"skills": [
"./skills/karpathy-guidelines/SKILL.md"
]
"keywords": ["guidelines", "best-practices", "coding", "karpathy"],
"skills": ["./skills/karpathy-guidelines"]
}