Merge pull request #18 from back1ply/fix/plugin-skill-path

Fix plugin skill path for Claude Code compatibility
This commit is contained in:
Jiayuan Zhang
2026-02-16 11:30:19 +08:00
committed by GitHub
3 changed files with 43 additions and 9 deletions
+29
View File
@@ -0,0 +1,29 @@
{
"name": "karpathy-skills",
"id": "karpathy-skills",
"owner": {
"name": "forrestchang"
},
"metadata": {
"description": "Behavioral guidelines to reduce common LLM coding mistakes, derived from Andrej Karpathy's observations",
"version": "1.0.0"
},
"plugins": [
{
"name": "andrej-karpathy-skills",
"source": "./",
"description": "Behavioral guidelines to reduce common LLM coding mistakes: Think Before Coding, Simplicity First, Surgical Changes, Goal-Driven Execution",
"version": "1.0.0",
"author": {
"name": "forrestchang"
},
"keywords": [
"guidelines",
"best-practices",
"coding",
"karpathy"
],
"category": "workflow"
}
]
}
+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"]
}
+8 -2
View File
@@ -94,8 +94,14 @@ Strong success criteria let the LLM loop independently. Weak criteria ("make it
**Option A: Claude Code Plugin (recommended)**
```bash
claude plugins add https://github.com/forrestchang/andrej-karpathy-skills
From within Claude Code, first add the marketplace:
```
/plugin marketplace add forrestchang/andrej-karpathy-skills
```
Then install the plugin:
```
/plugin install andrej-karpathy-skills@karpathy-skills
```
This installs the guidelines as a Claude Code plugin, making the skill available across all your projects.