From b26f4c3c7371308ad7e245325da13900f5a6aba1 Mon Sep 17 00:00:00 2001 From: Shehab Tarek Date: Sat, 31 Jan 2026 22:12:23 +0200 Subject: [PATCH] Fix plugin skill path and update install instructions - Fix skill path in plugin.json to use relative path from .claude-plugin/ (changed from "skills/..." to "../skills/...") - Add /plugin add command to README alongside CLI command Co-Authored-By: Claude Opus 4.5 --- .claude-plugin/plugin.json | 2 +- README.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index a5b713d..714076f 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -7,6 +7,6 @@ "license": "MIT", "repository": "https://github.com/forrestchang/andrej-karpathy-skills", "skills": [ - "skills/karpathy-guidelines/SKILL.md" + "../skills/karpathy-guidelines/SKILL.md" ] } diff --git a/README.md b/README.md index 27c028a..b866e9d 100644 --- a/README.md +++ b/README.md @@ -94,6 +94,12 @@ Strong success criteria let the LLM loop independently. Weak criteria ("make it **Option A: Claude Code Plugin (recommended)** +From within Claude Code: +``` +/plugin add https://github.com/forrestchang/andrej-karpathy-skills +``` + +Or from your terminal: ```bash claude plugins add https://github.com/forrestchang/andrej-karpathy-skills ```