

Also from Kynth Studios


Also from Kynth Studios


Also from Kynth Studios
1<!-- forgecat:@forgecat/andrej-karpathy-skills:CLAUDE:start -->2# CLAUDE.md34Behavioral guidelines to reduce common LLM coding mistakes. Merge with project-specific instructions as needed.56**Tradeoff:** These guidelines bias toward caution over speed. For trivial tasks, use judgment.78## 1. Think Before Coding910**Don't assume. Don't hide confusion. Surface tradeoffs.**1112Before implementing:13- State your assumptions explicitly. If uncertain, ask.14- If multiple interpretations exist, present them - don't pick silently.15- If a simpler approach exists, say so. Push back when warranted.16- If something is unclear, stop. Name what's confusing. Ask.1718## 2. Simplicity First1920**Minimum code that solves the problem. Nothing speculative.**2122- No features beyond what was asked.23- No abstractions for single-use code.24- No "flexibility" or "configurability" that wasn't requested.25- No error handling for impossible scenarios.26- If you write 200 lines and it could be 50, rewrite it.2728Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.2930## 3. Surgical Changes3132**Touch only what you must. Clean up only your own mess.**3334When editing existing code:35- Don't "improve" adjacent code, comments, or formatting.36- Don't refactor things that aren't broken.37- Match existing style, even if you'd do it differently.38- If you notice unrelated dead code, mention it - don't delete it.3940When your changes create orphans:41- Remove imports/variables/functions that YOUR changes made unused.42- Don't remove pre-existing dead code unless asked.4344The test: Every changed line should trace directly to the user's request.4546## 4. Goal-Driven Execution4748**Define success criteria. Loop until verified.**4950Transform tasks into verifiable goals:51- "Add validation" → "Write tests for invalid inputs, then make them pass"52- "Fix the bug" → "Write a test that reproduces it, then make it pass"53- "Refactor X" → "Ensure tests pass before and after"5455For multi-step tasks, state a brief plan:56```571. [Step] → verify: [check]582. [Step] → verify: [check]593. [Step] → verify: [check]60```6162Strong success criteria let you loop independently. Weak criteria ("make it work") require constant clarification.6364---6566**These guidelines are working if:** fewer unnecessary changes in diffs, fewer rewrites due to overcomplication, and clarifying questions come before implementation rather than after mistakes.67<!-- forgecat:@forgecat/andrej-karpathy-skills:CLAUDE:end -->6869<!-- forgecat:@forgecat/andrej-karpathy-skills:karpathy-guidelines.mdc:start -->70# Karpathy behavioral guidelines7172Behavioral guidelines to reduce common LLM coding mistakes. Merge with project-specific instructions as needed.7374**Tradeoff:** These guidelines bias toward caution over speed. For trivial tasks, use judgment.7576## 1. Think Before Coding7778**Don't assume. Don't hide confusion. Surface tradeoffs.**7980Before implementing:81- State your assumptions explicitly. If uncertain, ask.82- If multiple interpretations exist, present them - don't pick silently.83- If a simpler approach exists, say so. Push back when warranted.84- If something is unclear, stop. Name what's confusing. Ask.8586## 2. Simplicity First8788**Minimum code that solves the problem. Nothing speculative.**8990- No features beyond what was asked.91- No abstractions for single-use code.92- No "flexibility" or "configurability" that wasn't requested.93- No error handling for impossible scenarios.94- If you write 200 lines and it could be 50, rewrite it.9596Ask yourself: "Would a senior engineer say this is overcomplicated?" If yes, simplify.9798## 3. Surgical Changes99100**Touch only what you must. Clean up only your own mess.**101102When editing existing code:103- Don't "improve" adjacent code, comments, or formatting.104- Don't refactor things that aren't broken.105- Match existing style, even if you'd do it differently.106- If you notice unrelated dead code, mention it - don't delete it.107108When your changes create orphans:109- Remove imports/variables/functions that YOUR changes made unused.110- Don't remove pre-existing dead code unless asked.111112The test: Every changed line should trace directly to the user's request.113114## 4. Goal-Driven Execution115116**Define success criteria. Loop until verified.**117118Transform tasks into verifiable goals:119- "Add validation" → "Write tests for invalid inputs, then make them pass"120- "Fix the bug" → "Write a test that reproduces it, then make it pass"121- "Refactor X" → "Ensure tests pass before and after"122123For multi-step tasks, state a brief plan:124```1251. [Step] → verify: [check]1262. [Step] → verify: [check]1273. [Step] → verify: [check]128```129130Strong success criteria let you loop independently. Weak criteria ("make it work") require constant clarification.131132---133134**These guidelines are working if:** fewer unnecessary changes in diffs, fewer rewrites due to overcomplication, and clarifying questions come before implementation rather than after mistakes.135<!-- forgecat:@forgecat/andrej-karpathy-skills:karpathy-guidelines.mdc:end -->136
One repository carrying more than one format is the comparison this product exists for: does anyone actually write different content in each file, or is one a copy of the other?
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-build.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-code-simplify.mdc · 51 | Cursor rules | testing-strategy | 30/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-plan.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-review.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-ship.mdc · 51 | Cursor rules | testing-strategygitdeploymentdo-not | 61/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-spec.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-cursor/.cursor/rules/cmd-test.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-forgecat/AGENTS.md · 51 | AGENTS.md | lint-formatstylearchdo-not | 73/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/addyosmani/agent-skills/for-forgecat/CLAUDE.md · 51 | CLAUDE.md | teststylearchagent-behaviour | 70/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-cancel-ralph.mdc · 51 | Cursor rules | no sections | 16/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-help.mdc · 51 | Cursor rules | no sections | 54/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-code/anthropics_claude-code_ralph-wiggum/for-cursor/.cursor/rules/cmd-ralph-loop.mdc · 51 | Cursor rules | no sections | 22/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_agent-sdk-dev/for-cursor/.cursor/rules/cmd-new-sdk-app.mdc · 51 | Cursor rules | setupstylearchdocs | 76/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_claude-md-management/for-cursor/.cursor/rules/cmd-revise-claude-md.mdc · 51 | Cursor rules | agent-behaviour | 50/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_code-review/for-cursor/.cursor/rules/cmd-code-review.mdc · 51 | Cursor rules | testing-strategygit | 35/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-clean_gone.mdc · 51 | Cursor rules | no sections | 60/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-commit-push-pr.mdc · 51 | Cursor rules | stylegit | 44/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_commit-commands/for-cursor/.cursor/rules/cmd-commit.mdc · 51 | Cursor rules | style | 44/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_example-plugin/for-cursor/.cursor/rules/cmd-example-command.mdc · 51 | Cursor rules | lint-formatstyleagent-behaviour | 58/100 | today | |
| nota-america/forgecat-agent-profilesprofiles/anthropics/claude-plugins-official/anthropics_claude-plugins-official_feature-dev/for-cursor/.cursor/rules/cmd-feature-dev.mdc · 51 | Cursor rules | stylearchgit | 56/100 | today |
Same format, overlapping stack, ranked by quality.
| Repository | Format | Stack | Covers | Score | Changed |
|---|---|---|---|---|---|
| vllm-project/vllmAGENTS.md · 89k | AGENTS.md | setuptestlint-formatstyle+5 | 100/100 | 14 days ago | |
| code-yeongyu/oh-my-openagentpackages/web/AGENTS.md · 68k | AGENTS.md | setupbuildtestlint-format+6 | 100/100 | 13 days ago | |
| deepseek-ai/deepseek-harnessnative/landlock-run/AGENTS.md · 104k | AGENTS.md | setupteststylearch+3 | 100/100 | today | |
| TryGhost/Ghoste2e/AGENTS.md · 55k | AGENTS.md | setupteststylearch+2 | 100/100 | today | |
| aaif-goose/gooseAGENTS.md · 53k | AGENTS.md | setupbuildtestlint-format+7 | 100/100 | 8 days ago | |
| duckduckgo/content-scope-scriptsspecial-pages/AGENTS.md · 70 | AGENTS.md | buildteststylearch+3 | 100/100 | 14 days ago | |
| n8n-io/n8npackages/@n8n/agents/AGENTS.md · 201k | AGENTS.md | buildteststylearch+3 | 100/100 | 14 days ago | |
| mui/material-uiAGENTS.md · 99k | AGENTS.md | setupbuildtestlint-format+9 | 100/100 | 14 days ago |
A badge carrying the measured quality of the strongest agent config file in this repository, out of 100. It reads from this index every time somebody loads your page, so it changes when the measurement changes and there is nothing to keep up to date. Free, no account, and the value is not something you or we can set by hand.
[](https://rulestack.kynth.studio/configs/nota-america-forgecat-agent-profiles-profiles-multica-ai-andrej-karpathy-skills-for-codex-agents)Would rather not hotlink us? Every badge is also served in shields.io’s endpoint schema, so shields renders the image and your readers never talk to our domain:
Published by Toolproof, the masthead over this index and eight others. The method behind the number is at toolproof.kynth.studio/methodology, and the whole thing is readable as JSON with no key at /api.