Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计通过

code-discipline代码纪律

Agent Skill

code-discipline 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

235

周安装

10

GitHub Stars

2

下载量

82
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ethansei/skills --skill code-discipline

简介

code-discipline 提供生产级代码编写的纪律规范,强调仅修改必要代码且不引入 speculative 功能。

  • 它禁止无谓的重构、注释添加和样式调整,要求问题暴露而非静默修复,保持变更最小化。
  • 适用于严格管控代码质量的团队,确保每次提交聚焦单一需求且不影响周边逻辑完整性。
  • 使用前应理解其限制性原则,避免在复杂模块中强行套用规则导致意图误解或功能偏差。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Code Discipline

Rules for writing clean, minimal, production-grade code. These apply to every code change — no exceptions.

1. Change Only What's Asked

Touch only the code necessary to complete the request. Do not:

  • Refactor surrounding code that "could be better"
  • Add docstrings, type annotations, or comments to untouched code
  • Rename variables you didn't introduce
  • "Improve" imports, formatting, or style outside your change

If existing code has problems, mention them — don't fix them silently.

2. No Speculative Code

Write code for current requirements, not hypothetical futures. Do not:

  • Add error handling for scenarios that cannot occur
  • Build abstractions for a single use case
  • Add feature flags, configuration options, or extension points that weren't asked for
  • Create helper functions for one-time operations
  • Add backwards-compatibility shims when you can just change the code

Three similar lines of code are better than a premature abstraction.

3. Match Existing Patterns

Before proposing any change, read the files you intend to modify. Then:

  • Match existing naming conventions (camelCase, snake_case, etc.)
  • Follow established code organization and file structure
  • Use the same patterns for similar operations — do not introduce a new style
  • Adopt the project's existing approach to error handling, logging, and testing

When in doubt, imitate what's already there.

4. Delete Completely

When removing code, remove it. Do not:

  • Comment it out
  • Rename unused variables with a _ prefix
  • Add // removed or // deprecated markers
  • Re-export removed items for backwards compatibility
  • Leave empty blocks or placeholder comments

If you're certain something is unused, delete it entirely.

5. Comments Explain Why

Only add comments where the logic isn't self-evident. Comments must explain why, not what. Do not add:

  • Comments that restate the code (// increment counter)
  • Temporal markers (// added in v2, // phase 1)
  • AI attribution (// generated by Claude)
  • Section dividers or decorative comments
  • TODO comments unless the user asked for them

No comment is better than a redundant comment.

6. Clarity Over Cleverness

Write code that reads naturally. Prefer:

  • Explicit logic over compact one-liners
  • Named variables over inline expressions
  • Early returns over deep nesting
  • Simple conditionals over nested ternaries

If a reader needs to pause to parse it, rewrite it more clearly.

7. Validate at Boundaries

Handle errors where untrusted data enters your system:

  • User input, API responses, file I/O, environment variables

Trust internal code and framework guarantees. Do not:

  • Defensively null-check values that are never null
  • Wrap internal calls in try/catch "just in case"
  • Validate function arguments from your own codebase
  • Add fallback defaults for values guaranteed by the type system

8. Verify Your Work

After implementation, run the existing test suite. Do not assume tests pass. If tests break, fix them before moving on. If there is no test suite, check that the code at least compiles/parses without errors.

Per-Change Checklist

Before finishing any code change, verify:

  • Every modified line is necessary for the request
  • No speculative features, abstractions, or error handling was added
  • Existing code style and conventions are matched
  • Removed code is fully deleted, not commented out
  • Comments (if any) explain why, not what
  • Code reads clearly without requiring mental gymnastics
  • Error handling is only at system boundaries
  • Tests pass (or code compiles if no tests exist)

For concrete examples of these principles, read references/examples.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.26%
按下载量换算29

Claude

32.16%
按下载量换算26

Cursor

18.12%
按下载量换算15

Gemini CLI

9.65%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills