From 68b67a5bd77bddcbe88704abd9211e1de14e0860 Mon Sep 17 00:00:00 2001 From: Shehab Tarek Date: Sat, 31 Jan 2026 22:25:05 +0200 Subject: [PATCH] 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 --- .claude-plugin/plugin.json | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index 233ef37..6e88551 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -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"] }