Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

karpathykarpathy 搜索

Agent Skill

karpathy 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

642

周安装

27

GitHub Stars

75

下载量

225
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:karpathy(karpathy 搜索)
来源仓库:https://github.com/tmdgusya/engineering-discipline
仓库路径:skills/karpathy
安装命令:
npx skills add https://github.com/tmdgusya/engineering-discipline --skill karpathy
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/tmdgusya/engineering-discipline --skill karpathy

简介

用于查找和筛选相关技术资源与信息。karpathy 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合根据关键词快速定位候选结果或研究线索。
  • 可结合任务场景匹配适用工具链和技术方案。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 使用时需提供清晰的目标描述以提高检索准确性。
  • 安装前建议确认是否需要访问外部网络资源。

SKILL.md

Karpathy Guidelines

A preventive thinking discipline for code implementation. Activates before and during code writing to block the most common mistakes LLMs make when generating code.

This is not about performance (that's rob-pike) or debugging (that's systematic-debugging). This is about the act of writing code itself — reading before writing, changing only what's asked, verifying instead of assuming, and defining what "done" means before starting.

Hard Gates

These rules have no exceptions.

  1. Read before you write. Do not modify a file you haven't read. Do not modify a function without understanding the callers. Do not modify a module without understanding its role.
  2. Scope to the request. Change what was asked. Nothing more. No "while I'm here" improvements, no opportunistic refactoring, no adding features that weren't requested.
  3. Verify, don't assume. If you think a function does X, read it. If you think a type has field Y, check it. If you think a test covers scenario Z, find it. Assumptions are the primary source of LLM coding errors.
  4. Define success before starting. Before writing any code, state what "done" looks like in concrete, verifiable terms. If you can't define it, you don't understand the task yet.

When To Use

  • Before implementing any feature or change
  • When modifying existing code
  • During code review (as a mental checklist)
  • When you catch yourself generating code without having read the surrounding context

When NOT To Use

  • Greenfield projects with no existing code to read (gates 1 and 3 still apply to dependencies)
  • Pure documentation changes
  • Performance optimization (use rob-pike instead)

The Five Rules

Rule 1: Make Surgical Changes

Every change should be the minimum edit that achieves the goal.

Before writing, ask:

  • What is the smallest change that solves this?
  • Am I touching files that don't need to change?
  • Am I adding code that wasn't requested?

Prohibited additions unless explicitly requested:

  • Type annotations on code you didn't change
  • Docstrings on functions you didn't change
  • Comments on logic you didn't change
  • Error handling for scenarios that aren't part of the task
  • Refactoring of surrounding code
  • "Improvements" you noticed along the way

One task, one change. If you discover something else that needs fixing, note it — don't fix it now.

Rule 2: Read The Existing Code

LLMs generate code based on patterns. Codebases have their own patterns. These often conflict.

Before modifying any file:

  1. Read the file
  2. Identify the conventions it uses (naming, error handling, patterns, structure)
  3. Match those conventions exactly in your changes

Before modifying any function:

  1. Find all callers
  2. Understand the contract (what goes in, what comes out, what side effects)
  3. Ensure your change doesn't break the contract

Before adding a new file:

  1. Check if similar functionality exists elsewhere
  2. Follow the project's file organization pattern
  3. Use the same naming conventions as neighboring files

Do not invent new patterns. Follow the ones that exist.

Rule 3: Verify Assumptions

Every assumption is a potential bug. The most dangerous assumptions are the ones that feel obvious.

Common assumptions that cause failures:

AssumptionVerification
"This function returns X"Read the function
"This field is always present"Check the type definition and upstream producers
"This test covers that case"Read the test
"This import path is correct"Check the file exists at that path
"This API accepts these parameters"Read the API definition or documentation
"This library works this way"Check the version and docs
"This config value is set"Check the actual config

When in doubt, grep. When confident, grep anyway.

Rule 4: Define Success Criteria

Before writing code, state what "done" means.

Format:

Done when:
- [ ] <specific, verifiable condition>
- [ ] <specific, verifiable condition>
- [ ] <specific, verifiable condition>

Bad criteria:

  • "The feature works" (not verifiable)
  • "Code is clean" (subjective)
  • "Tests pass" (which tests? what do they verify?)

Good criteria:

  • "POST /api/users returns 201 with valid payload and 400 with missing email"
  • "Existing tests in user.test.ts still pass"
  • "New test covers the null-brand edge case from issue #42"

If you can't write specific criteria, you don't understand the task. Go back and clarify.

Rule 5: Don't Solve Problems That Don't Exist

LLMs love to anticipate future needs. This produces code that is more complex than necessary.

Block these impulses:

  • "What if someone calls this with null?" — Is that possible in the current code? If not, don't guard against it.
  • "This should be configurable" — Is configuration needed now? If not, hardcode it.
  • "We might need to support multiple backends" — Do we have multiple backends? If not, don't abstract.
  • "This could be a generic utility" — Is it used in more than one place? If not, keep it specific.
  • "Let me add a feature flag" — Was a feature flag requested? If not, just change the code.

Build for what is needed today. Tomorrow's problems will have tomorrow's context.

Anti-Patterns

ImpulseRule ViolatedResponse
"Let me quickly refactor this while I'm here"Rule 1One task, one change. Note it for later.
"I know how this works, I'll just write the fix"Rule 2Read first. Your mental model may be wrong.
"This probably takes a string"Rule 3Check the type. "Probably" means you don't know.
"I'll know it's done when it works"Rule 4Define concrete criteria before starting.
"Let me make this extensible for future use"Rule 5Build for now. Extensibility is a future task.
"The code around this is messy, let me clean it"Rule 1Not your task. File a separate issue.
"I'll add some helpful logging"Rule 1Was logging requested? If not, don't add it.

Red Flags

Stop and re-read the rules if you catch yourself thinking:

  • "This is obvious, I don't need to read the code"
  • "I'll just add a few extra things while I'm at it"
  • "This should probably handle edge case X" (without checking if X can occur)
  • "Let me improve the type safety here too"
  • "I know what this function does"
  • "This needs better error handling" (without evidence of errors occurring)
  • "The naming is inconsistent, let me fix it across the file"

Minimal Checklist

During implementation, verify against this list:

  • I read the files I'm modifying before changing them
  • My changes are scoped to what was requested
  • I verified my assumptions about types, APIs, and behavior
  • I defined concrete success criteria before starting
  • I'm not solving hypothetical future problems
  • I'm following existing project conventions, not inventing new ones
  • Every new line of code is necessary for the task

Completion Standard

Implementation is disciplined when:

  • All changes are within the requested scope
  • No assumptions were made without verification
  • Success criteria were defined and met
  • No speculative code was added
  • Existing conventions were followed

If any of these are not met, the implementation needs revision.

Transition

After implementation is complete:

  • If AI-generated code smells remain → use clean-ai-slop to run a corrective pass
  • If a bug is discovered → use systematic-debugging to investigate
  • If performance is a concern → use rob-pike before optimizing

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.42%
按下载量换算84

Claude

29.06%
按下载量换算65

Cursor

19.67%
按下载量换算44

Gemini CLI

9.67%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills