From 82467fa8e3415fa4aacd2d241d256b875f765621 Mon Sep 17 00:00:00 2001 From: Shehab Tarek Date: Fri, 30 Jan 2026 16:36:24 +0200 Subject: [PATCH] Add Claude Code plugin support - Add plugin.json manifest for Claude Code plugin installation - Update README with Claude Code plugin installation instructions - Update repository URLs to point to jiayuan7/andrej-karpathy-skills This enables users to install the skill as a Claude Code plugin: claude plugins add https://github.com/jiayuan7/andrej-karpathy-skills Co-Authored-By: Claude Opus 4.5 --- README.md | 12 +++++++----- plugin.json | 12 ++++++++++++ 2 files changed, 19 insertions(+), 5 deletions(-) create mode 100644 plugin.json diff --git a/README.md b/README.md index 817294b..8f8e52f 100644 --- a/README.md +++ b/README.md @@ -92,23 +92,25 @@ Strong success criteria let the LLM loop independently. Weak criteria ("make it ## Install -**Option A: Skills CLI (recommended)** +**Option A: Claude Code Plugin (recommended)** ```bash -npx skills add forrestchang/andrej-karpathy-skills +claude plugins add https://github.com/jiayuan7/andrej-karpathy-skills ``` -**Option B: CLAUDE.md** +This installs the guidelines as a Claude Code plugin, making the skill available across all your projects. + +**Option B: CLAUDE.md (per-project)** New project: ```bash -curl -o CLAUDE.md https://raw.githubusercontent.com/forrestchang/andrej-karpathy-skills/main/CLAUDE.md +curl -o CLAUDE.md https://raw.githubusercontent.com/jiayuan7/andrej-karpathy-skills/main/CLAUDE.md ``` Existing project (append): ```bash echo "" >> CLAUDE.md -curl https://raw.githubusercontent.com/forrestchang/andrej-karpathy-skills/main/CLAUDE.md >> CLAUDE.md +curl https://raw.githubusercontent.com/jiayuan7/andrej-karpathy-skills/main/CLAUDE.md >> CLAUDE.md ``` ## Key Insight diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..a29e7e0 --- /dev/null +++ b/plugin.json @@ -0,0 +1,12 @@ +{ + "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": "jiayuan7", + "license": "MIT", + "repository": "https://github.com/jiayuan7/andrej-karpathy-skills", + "skills": [ + "skills/karpathy-guidelines/SKILL.md" + ] +}