From 579a5e31a965d84b0b0cf4cdbb320c83a183319a Mon Sep 17 00:00:00 2001 From: Shehab Tarek Date: Sat, 31 Jan 2026 12:46:17 +0200 Subject: [PATCH] Fix plugin structure for Claude Code compatibility Move plugin.json to .claude-plugin/ directory as required by Claude Code plugin specification. The plugin manifest must be located at .claude-plugin/plugin.json for proper plugin discovery and loading. Also fix author and repository URL to point to correct owner. Co-Authored-By: Claude Opus 4.5 --- plugin.json => .claude-plugin/plugin.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename plugin.json => .claude-plugin/plugin.json (76%) diff --git a/plugin.json b/.claude-plugin/plugin.json similarity index 76% rename from plugin.json rename to .claude-plugin/plugin.json index a29e7e0..a5b713d 100644 --- a/plugin.json +++ b/.claude-plugin/plugin.json @@ -3,9 +3,9 @@ "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": "jiayuan7", + "author": "forrestchang", "license": "MIT", - "repository": "https://github.com/jiayuan7/andrej-karpathy-skills", + "repository": "https://github.com/forrestchang/andrej-karpathy-skills", "skills": [ "skills/karpathy-guidelines/SKILL.md" ]