mirror of
https://github.com/multica-ai/andrej-karpathy-skills.git
synced 2026-08-18 05:08:18 +00:00
Merge pull request #18 from back1ply/fix/plugin-skill-path
Fix plugin skill path for Claude Code compatibility
This commit is contained in:
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -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"]
|
||||
}
|
||||
|
||||
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user