mirror of
https://github.com/multica-ai/andrej-karpathy-skills.git
synced 2026-06-23 12:05:14 +02:00
Add marketplace.json and fix plugin structure
- Add marketplace.json required for /plugin marketplace add - Fix skill path to use ./ prefix (relative to plugin root) - Update README with correct two-step install process: 1. /plugin marketplace add forrestchang/andrej-karpathy-skills 2. /plugin install andrej-karpathy-skills@karpathy-skills Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.5
parent
b26f4c3c73
commit
3cf049fa3e
@@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -94,14 +94,14 @@ Strong success criteria let the LLM loop independently. Weak criteria ("make it
|
||||
|
||||
**Option A: Claude Code Plugin (recommended)**
|
||||
|
||||
From within Claude Code:
|
||||
From within Claude Code, first add the marketplace:
|
||||
```
|
||||
/plugin add https://github.com/forrestchang/andrej-karpathy-skills
|
||||
/plugin marketplace add forrestchang/andrej-karpathy-skills
|
||||
```
|
||||
|
||||
Or from your terminal:
|
||||
```bash
|
||||
claude plugins add https://github.com/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