I've attached it for now. lol
1. Original CLAUDE.md : https://github.com/multica-ai/andrej-karpathy-skills/blob/main/CLAUDE.md
2. Customized CLAUDE.md by the video creator : https://github.com/datajuny/andrej-karpathy-skills/blob/main/CLAUDE.md
This video explains the AI coding principles proposed by Andrej Karpathy and a 65-line CLAUDE.md configuration file that complements them for the Korean development environment. The key content of the video is as follows.
1. AI's 3 Common Pitfalls (2:05)
* Incorrect Assumptions: Writing code by arbitrarily interpreting the user's intent without asking.
* Code Bloat: Creating unnecessarily complex classes or structures even for simple functions.
* Arbitrary Fixes: Modifying unrequested surrounding code, causing bugs.
2. Karpathy's 4 Principles (3:58)
* Think Before Coding: Communicate clearly without assumptions and understand the user's intent.
* Keep It Simple First: Solve problems with minimal code and avoid unnecessary abstraction.
* Surgical Precision: Modify only what is requested and maintain existing style.
* Goal-Oriented Execution: Clarify success criteria and write verifiable tests.
3. 5 Additional Rules for Korean Development Environment (9:03)
* No Colons: Use periods instead of colons at the end of Korean sentences for natural output.
* Korean Header Comments: Specify the file's purpose at the top to help AI understand context.
* Plans, Checklists, Context: Use systematic planning and decision records for large tasks.
* Test Before Finishing: Always test after writing code to verify integrity.
* Meaningful Commits: Commit only one meaningful change at a time.
How to Apply (11:14)
* You can apply the CLAUDE.md file to all projects by placing it in the project root or global settings in the home directory (~/.claude/CLAUDE.md). The author recommends global settings.
▶ Source: https://github.com/datajuny/andrej-karpathy-skills/blob/main/CLAUDE.md