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

general-coding-guidelines通用编码指南

Agent Skill

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

总安装

456

周安装

19

GitHub Stars

公开资料未说明

下载量

152
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/stefanmermans/agent-config --skill general-coding-guidelines

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态、代码变更或协作事项进行整理。
  • 通过 npx skills add 命令从指定仓库安装,需确认权限和维护状态。
  • 使用前应检查是否会触发联网、命令执行或文件读写操作。
  • 建议结合原始 README 核验具体用法和功能边界。

SKILL.md

General Coding Guidelines

These are general guidelines that apply to all code. They need to be followed when creating and code and reviewed code is expected to follow these guidelines.

1) Coding Principles

A) Correctness > Clarity > Consistency > Performance > Cleverness

  • Do not introduce clever abstractions.
  • Prefer boring, standard solutions that match the repo style.

B) DRY (practical)

  • Avoid repeating logic that might change.
  • Avoid multiple large chunks of code in a single function.
  • Extract shared logic into:

1. private method (same class) 2. dedicated service (bounded context) 3. helper (only if truly global and reusable)

C) SOLID (practical)

  • Classes/functions should have one reason to change.
  • Prefer composition over inheritance.
  • Depend on interfaces/contracts where it improves testability and flexibility.

2) Variables & Functions (readability rules)

  • Prefer clear naming over fewer variables.
  • Inline values only if it improves clarity and avoids noise.
  • Extract a function when:

- a block repeats, - a block is hard to name inline, - it improves testability.

3) Comments Policy

  • Avoid inline comments.
  • Prefer descriptive names and small functions.
  • Allowed comments:

- Non-obvious constraints - Workarounds for external bugs - “Why” something is done (not “what”)

4) Database & Migrations Safety (language/framework-agnostic)

  • Prefer additive, backwards-compatible schema changes when possible.
  • Avoid destructive changes unless explicitly required.
  • For destructive changes:

- Call out irreversibility and data risk. - Provide a safe plan (two-step deploy or backfill approach).

  • For large tables:

- Avoid long-running locks where possible. - Prefer online/low-lock patterns (nullable column → backfill in batches → add constraints).

  • Always consider rollback behavior:

- Implement a rollback when feasible. - If rollback is unsafe, explicitly document it.

  • Never drop/rename in a way that breaks running code during rolling deploys unless coordinated.

5) Performance & Query Hygiene (framework-agnostic)

  • Default to clarity, but avoid obvious performance pitfalls.
  • When touching query/data-heavy code:

- Avoid N+1-style behavior (load in batches, use joins/eager loading equivalents). - Avoid fetching full records when only checking existence/count. - Paginate/limit large result sets. - Select only needed fields for large reads.

  • Add indexes for frequently filtered/sorted columns where appropriate.
  • Mention any performance-related changes in Notes/Risks.

6) Git / Commits

  • Do not commit changes unless otherwise instructed.
  • The user handles commits.

7) Linters / Static Analysis

  • Do not run linters (eslint/phpstan/etc.) unless explicitly requested.
  • However, write code that would pass typical linters.

8) Global Helpers

  • Only create global helpers when reuse is likely across the codebase.
  • If you add global helpers, document them in the project's README or AGENTS.md.

9) Avoid code smells

Watch for and avoid these anti-patterns:

a) Long Functions

// ❌ BAD: Function > 50 lines
function processMarketData() {
  // 100 lines of code
}

// ✅ GOOD: Split into smaller functions
function processMarketData() {
  const validated = validateData()
  const transformed = transformData(validated)
  return saveData(transformed)
}

b) Deep Nesting

// ❌ BAD: 3+ levels of nesting
if (user) {
  if (user.isAdmin) {
    if (market) {
      if (market.isActive) {
        if (hasPermission) {
          // Do something
        }
      }
    }
  }
}

// ✅ GOOD: Early returns
if (!user) return
if (!user.isAdmin) return
if (!market) return
if (!market.isActive) return
if (!hasPermission) return

// Do something

c) Magic Numbers

// ❌ BAD: Unexplained numbers
if ($retryCount > 3) { }
set_time_limit(500);

// ✅ GOOD: Named constants
$MAX_RETRIES = 3;
$DEBOUNCE_DELAY_MS = 500;

if ($retryCount > $MAX_RETRIES) { }
set_time_limit($DEBOUNCE_DELAY_MS);

10).env files

.env.example files are a great way to document the environment variables required for a project. Populate them with happy defaults. if an environment variables should always be changed by the user, add it to the.env.example file without a value. For example:

ADMIN_USERNAME=admin
ADMIN_PASSWORD=

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.23%
按下载量换算51

Claude

28.97%
按下载量换算44

Cursor

18.7%
按下载量换算28

Gemini CLI

9.45%
按下载量换算14

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills