mirror of
https://github.com/multica-ai/andrej-karpathy-skills.git
synced 2026-06-23 12:05:14 +02:00
Merge pull request #3 from szkocot/main
refactor: restructure to Anthropic skills format
This commit is contained in:
@@ -92,24 +92,23 @@ Strong success criteria let the LLM loop independently. Weak criteria ("make it
|
|||||||
|
|
||||||
## Install
|
## Install
|
||||||
|
|
||||||
**Option A: CLAUDE.md (recommended)**
|
**Option A: Skills CLI (recommended)**
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npx skills add forrestchang/andrej-karpathy-skills
|
||||||
|
```
|
||||||
|
|
||||||
|
**Option B: CLAUDE.md**
|
||||||
|
|
||||||
New project:
|
New project:
|
||||||
```bash
|
```bash
|
||||||
curl -o CLAUDE.md https://raw.githubusercontent.com/forrestchang/andrej-karpthy-skills/main/CLAUDE.md
|
curl -o CLAUDE.md https://raw.githubusercontent.com/forrestchang/andrej-karpathy-skills/main/CLAUDE.md
|
||||||
```
|
```
|
||||||
|
|
||||||
Existing project (append):
|
Existing project (append):
|
||||||
```bash
|
```bash
|
||||||
echo "" >> CLAUDE.md
|
echo "" >> CLAUDE.md
|
||||||
curl https://raw.githubusercontent.com/forrestchang/andrej-karpthy-skills/main/CLAUDE.md >> CLAUDE.md
|
curl https://raw.githubusercontent.com/forrestchang/andrej-karpathy-skills/main/CLAUDE.md >> CLAUDE.md
|
||||||
```
|
|
||||||
|
|
||||||
**Option B: Skills directory**
|
|
||||||
|
|
||||||
```bash
|
|
||||||
mkdir -p .claude/skills
|
|
||||||
curl -o .claude/skills/karpathy-guidelines.md https://raw.githubusercontent.com/forrestchang/andrej-karpthy-skills/main/.claude/skills/karpathy-guidelines.md
|
|
||||||
```
|
```
|
||||||
|
|
||||||
## Key Insight
|
## Key Insight
|
||||||
|
|||||||
@@ -1,6 +1,12 @@
|
|||||||
|
---
|
||||||
|
name: karpathy-guidelines
|
||||||
|
description: Behavioral guidelines to reduce common LLM coding mistakes. Use when writing, reviewing, or refactoring code to avoid overcomplication, make surgical changes, surface assumptions, and define verifiable success criteria.
|
||||||
|
license: MIT
|
||||||
|
---
|
||||||
|
|
||||||
# Karpathy Guidelines
|
# Karpathy Guidelines
|
||||||
|
|
||||||
Behavioral guidelines to reduce common LLM coding mistakes. Apply these principles to all coding tasks.
|
Behavioral guidelines to reduce common LLM coding mistakes, derived from [Andrej Karpathy's observations](https://x.com/karpathy/status/2015883857489522876) on LLM coding pitfalls.
|
||||||
|
|
||||||
**Tradeoff:** These guidelines bias toward caution over speed. For trivial tasks, use judgment.
|
**Tradeoff:** These guidelines bias toward caution over speed. For trivial tasks, use judgment.
|
||||||
|
|
||||||
Reference in New Issue
Block a user