Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

code-discipline代码纪律

Agent Skill

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

总安装

642

周安装

27

GitHub Stars

1

下载量

225
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

code-discipline 用于处理 GitHub 仓库、Issue 和 Pull Request。

  • 适合在开发环境中围绕代码变更或协作事项进行整理。
  • 通过 npx 命令从指定仓库安装并使用该技能。
  • 使用前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Code Discipline

Use this skill whenever a task involves adding or modifying logic and there is risk of helper sprawl, unnecessary wrappers, duplicate utilities, duplicate constants, or abstraction bloat.

This is an anti-laziness skill. It prevents agents from "solving" tasks by inventing new files, helpers, and indirection when existing primitives already solve the problem.

Default assumption:

  • The user wants maintainable code with minimal abstraction surface area.
  • The user does not want renamed duplicates of existing behavior.
  • New helpers, wrappers, constants modules, and style-only indirection are disallowed unless justified by clear architectural value.

When to Use

Invoke this skill for:

  • feature implementation that introduces new logic
  • refactors that add utility or service layers
  • UI changes where component-local helpers may proliferate
  • frontend work where constants, tokens, or styled files may be needlessly split apart
  • bug fixes that tempt quick wrapper-based patches
  • code review focused on maintainability and reuse discipline

Use together with agent-execution-mode and repo-standards-enforcement for production implementation work.

Core Enforcement Policy

Non-Negotiable

  • Do not create a helper if the logic is trivial and used once.
  • Do not create a wrapper that only forwards calls.
  • Do not create renamed duplicates of existing utilities.
  • Do not add service, hook, or adapter layers that add indirection without policy.
  • Do not reimplement platform or standard library behavior.
  • Do not duplicate utility logic across packages.
  • Do not extract one-off constants into a module just to reduce line count.
  • Do not create a constants, helpers, utils, or shared file unless ownership and reuse are real.
  • Do not split styles into separate files when the styles are local and the split adds no ownership value.

Required Posture

  • prefer platform primitives first
  • prefer framework-native capabilities second
  • prefer existing internal utilities third
  • prefer existing repository dependencies fourth
  • create new abstraction only as a last resort with explicit rationale

Mandatory Evaluation Order

Before adding any helper, hook, service, wrapper, adapter, formatter, parser, transformer, constant module, token, or utility, evaluate in this exact order:

  1. language or runtime primitives
  2. standard library APIs
  3. framework-native features
  4. existing repository utilities
  5. existing installed dependencies
  6. new abstraction with justification

Skipping this order is non-compliant behavior.

New Abstraction Admission Gate

A new abstraction, helper, constant module, or shared style boundary is allowed only if at least one is true:

  • it enforces domain invariants or policy
  • it encapsulates non-trivial repeated logic across multiple call sites
  • it isolates an infrastructure boundary
  • it provides correctness, validation, or security guarantees
  • it improves testability of genuinely complex behavior
  • it creates a shared source of truth for a value that must stay synchronized across multiple consumers

A new abstraction is rejected if it only:

  • renames existing behavior
  • forwards calls one-to-one
  • wraps a single primitive or single library call
  • exists for style preference only
  • hides a one-off literal that is clearer inline

Smell Rules

Treat these as automatic scrutiny triggers:

  • names starting with normalize, format, parse, transform, sanitize, safe, to
  • names starting with build, make, create, get, set, use, or manage when they only wrap a single operation
  • services that only proxy repository or SDK methods
  • hooks that only call another hook and return the same shape
  • helpers used once in a single file
  • utility modules that only contain one-line wrappers
  • constants modules with a single consumer
  • style files that only move declarations without changing ownership or reuse

Smells are not always wrong, but they require explicit defense.

Component Logic Rules

  • Keep simple display and one-off transformations inline.
  • Extract only when complexity or reuse justifies extraction.
  • Do not grow component files into local utility libraries.
  • Move reusable logic to the correct shared layer, not the nearest file.
  • Keep one-off constants inline unless they are part of a shared contract or repeated across files.
  • Keep component-local styled declarations local unless repeated styling proves the need for a shared primitive.

Constant Placement Rules

  • Keep one-off literals near their use when that improves readability.
  • Promote a constant only when it carries shared meaning, is reused, or is part of a public or cross-file contract.
  • Do not create a module just to host a single constant.
  • Do not move a literal into const X =... if the new name adds no meaning.
  • Put shared design tokens in the theme or design-system layer, not in page-local files.
  • Put shared UI constants in the owning domain or shared layer, not in a convenience bucket.

File and Style Organization Rules

  • Keep helpers, constants, and styles in the narrowest correct owner.
  • Prefer colocated component styles for component-local concerns.
  • Prefer shared style primitives only when multiple components truly share them.
  • Avoid generic catch-all folders that exist only to hide structure.
  • Avoid re-export barrels that add no boundary or reuse value.
  • Keep styled file names descriptive of ownership, not generic (Button.styles.ts is clearer than styles.ts).
  • Split a styled file only when the split makes ownership, reuse, or maintenance clearer.
  • Do not create a separate file for a tiny style fragment that is used once.

Monorepo and Workspace Rules

  • do not duplicate helpers across packages
  • promote shared logic to the correct shared package when reuse exists
  • respect architecture boundaries when sharing utilities
  • do not bypass boundaries through convenience imports

Review and Refactor Enforcement

When active in review/refactor mode, agents must:

  • flag unnecessary helpers and wrappers
  • remove trivial abstractions where safe
  • consolidate duplicate utilities
  • replace handwritten logic with platform/library primitives where appropriate
  • explain each removal or consolidation with maintainability rationale

Definition of Done

This skill is satisfied only when all are true:

  • no newly introduced trivial helper/wrapper layers remain
  • no duplicate utility logic remains in changed scope
  • no one-off constants were extracted without a shared-meaning reason
  • new abstractions (if any) are justified by the admission gate
  • platform/framework/internal utilities were preferred over reinvention
  • changed scope is simpler or equal in surface area, not more bloated

Output Contract

When responding after this skill is used, report:

  • what abstraction/helper candidates were considered
  • what existing primitive/utility was reused
  • what abstractions were rejected and why
  • what consolidations/removals were performed
  • any new abstraction added and which admission-gate condition allowed it
  • where constants and styles were kept inline instead of being extracted

References

Use the reference guides for strict implementation details:

  • references/helper-functions.md
  • references/abstraction-patterns.md
  • references/library-preference.md
  • references/component-logic.md
  • references/constants-and-organization.md

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.52%
按下载量换算82

Claude

28.05%
按下载量换算63

Cursor

17.35%
按下载量换算39

Gemini CLI

9.78%
按下载量换算22

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills