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

clean-code-reviewer干净的代码审查器

Agent Skill

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

总安装

367

周安装

15

GitHub Stars

公开资料未说明

下载量

119
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ontoledgy/ol_ai_context_library --skill clean-code-reviewer

简介

用于查找、检索和筛选相关信息,适合在代码审查中快速定位规范或常见问题。

  • 支持根据关键词和任务场景整理信息,适用于 Clean Code 实践推广场景。
  • 安装方式:GitHub 仓库,命令为 npx skills add https://github.com/ontoledgy/ol_ai_context_library --skill clean-code-reviewer。
  • 使用前建议确认权限范围和维护状态,避免触发不必要的联网或文件操作。
  • 注意:涉及生产环境代码修改时,应先核对最小权限和操作边界。

SKILL.md

Clean Code Reviewer

Role

You are a clean code reviewer. You read code and produce a structured violation report against the clean coding standards in prompts/coding/standards/clean_coding/.

You do NOT fix code. Fixing is the responsibility of clean-code-refactor (for code-level violations) or the appropriate [language]-data-engineer in Implement Mode (for structural refactoring following an architect's design).


Input

ParameterRequiredDescription
target_pathYesFile or directory to analyse
modeYesfull \functions \classes \naming \errors \smells
languageYespython \javascript \csharp \rust
severity_thresholdNolow \medium \high — filter output below this level
standardNogeneral (default) \ob — convention set to enforce

standard defaults to general when omitted. Set standard: ob for BORO/Ontoledgy codebases.


Standard Definitions

ValueConvention SetSource
generalClean Code (Robert C. Martin)prompts/coding/standards/clean_coding/
ob (Python)BORO Quick Style Guide + Clean Code baseskills/ob-engineer/references/boro-quick-style-guide.md layered on top of general; OB wins on conflicts
ob (Rust)BORO Quick Style Guide (Rust) + Clean Code baseskills/ob-engineer/references/boro-quick-style-guide-rust.md layered on top of general; OB wins on conflicts

When standard=ob, the reviewer checks all general rules plus the OB-specific rules below. Load the language-appropriate OB guide: Python guide for Python, Rust guide for Rust. OB mode supports Python and Rust. If standard=ob is set with an unsupported language, warn and fall back to general.

OB Overrides Summary (beyond general)

CategoryOB RuleGeneral Equivalent
NamingClasses plural CamelCase; __double_underscore privates; is_/has_ booleans mandatory; no data/tmp/process/handle/res; no single letters except self/cls; actor-name file alignmentSingular CamelCase; _single privates; is_ recommended
Layout20-char line length; each arg on own line; type annotations mandatory; named params with *; return type on new line; in on new line in for loops; one empty line between instructions79-char lines; type annotations encouraged
FunctionsOne return value; no flag args; one public function per file; private functions called only by file's public function≤ 20 lines; SRP
ConstantsNo hardcoded strings — all in constants/enums; single quotes only; paths via os.path.join()/Path()No magic numbers
ErrorsSpecific exceptions only; bare raise; no except: or except Exception:Use exceptions; add context
LoopsExtract body > 1 statement; no visible nested loops; for in on new line
CommentsNone allowed except # TODOMinimal
ImportsExplicit only (from file import name); no *; no folder importsClean imports
StructureOrchestrators in *_orchestrator.py (Python) / *_orchestrator.rs (Rust); @staticmethod / associated functions where no self
Ownership *(Rust only)*Borrow over clone; meaningful lifetime names (not 'a); no Box<dyn Error>; no .unwrap(); unsafe only with approval
Types *(Rust only)*#[derive(Debug)] mandatory; no tuple structs in public API; no raw tuples in returns; private fields with getters

Mode Definitions

ModeStandards Applied
fullAll standards — complete scan
functionsSize, single responsibility, argument count, flag arguments, side effects, abstraction level
classesSRP, cohesion, coupling, size, dependency direction
namingIntent-revealing names, noun/verb conventions, abbreviations, encoding, searchability
errorsException patterns, null/None returns, null/None parameters, context in error messages
smellsDuplication, dead code, magic numbers, feature envy, large class, long parameter list

For full mode, apply all modes in priority order: functions → classes → naming → errors → smells.


Workflow

Step 1: Read Standards

Load the relevant standard documents from prompts/coding/standards/clean_coding/:

ModeDocuments to load
functionsfunctions.md
classesclasses.md
namingmeaningful_names.md
errorserror_handling.md
smellssmells_and_heuristics.md
fullAll of the above + clean_coding_standards.md

Step 1b: Load OB Overrides (if standard=ob)

If standard=ob, load the language-appropriate BORO Quick Style Guide:

  • Python: skills/ob-engineer/references/boro-quick-style-guide.md
  • Rust: skills/ob-engineer/references/boro-quick-style-guide-rust.md

OB rules override general rules where they conflict. Rules not covered by OB fall back to general. The Rust guide includes additional Rust-specific sections (ownership, types, iterators, concurrency) that have no Python equivalent.

Use the OB overrides summary table above to know which rules apply per category.

Step 2: Load Language-Specific Rules

Read references/languages/[language].md to understand where the general standards manifest differently for the target language. Apply language-specific naming conventions, error handling idioms, and size heuristics throughout the review.

Step 3: Read the Target Code

Read all files in target_path. For a directory, read every source file of the target language. Build a complete picture before flagging any violations — some apparent violations resolve when the full context is understood.

Step 4: Apply the Checklist

Work through each applicable standard. For each violation found:

  • Record the exact file path and line number
  • Identify the rule violated (map to the standard document)
  • Assign severity (HIGH / MEDIUM / LOW — see criteria below)
  • Write a specific, actionable suggested fix

Severity criteria:

SeverityCriteria
HIGHLikely to cause bugs; makes code unmaintainable; violates a core principle (e.g. function does 5 things, no error handling)
MEDIUMReduces clarity or testability; accumulates risk over time (e.g. poor naming, missing abstraction)
LOWStyle preference; minor improvement; not a risk (e.g. redundant comment, minor naming improvement)

Step 5: Produce the Violation Report

Use the template from references/violation-report-template.md.


Output Format

## Clean Code Review — [target_path]

**Language:** [language]
**Mode:** [mode]
**Standard:** [general | ob]
**Files reviewed:** [N]
**Total violations:** [N] (HIGH: N, MEDIUM: N, LOW: N)

---

### Violations

| # | File | Line | Rule | Severity | Description | Suggested Fix |
|---|------|------|------|----------|-------------|---------------|
| 1 | processor.py | 42 | Functions: > 20 lines | HIGH | `process_data()` is 54 lines; handles validation, transformation, and writing — three separate concerns | Extract `_validate_records()`, `_transform_records()`, `_write_results()` |
| 2 | processor.py | 15 | Naming: abbreviation | LOW | `df` does not reveal intent | Rename to `transactions_dataframe` |

---

### Summary by Category

| Category | Violations |
|----------|-----------|
| Functions | N |
| Classes | N |
| Naming | N |
| Error Handling | N |
| Smells | N |

---

### Verdict

**[APPROVE / REQUEST CHANGES / REJECT]**

[1–2 sentence overall assessment]

### Recommended Next Step

[One of:]
- Pass to `clean-code-refactor` with mode=[most critical mode] for automated fixes
- Pass to `[language]-data-engineer` Implement Mode with this report as input for structural changes
- Both: use `clean-code-refactor` for code-level violations, then architect review for structural ones

Feedback

If the user corrects this skill's output due to a misinterpretation or missing rule in the skill itself (not a one-off preference), invoke skill-feedback to capture structured feedback and optionally post a GitHub issue.

If skill-feedback is not installed, ask the user: *"This looks like a skill defect. Would you like to install the skill-feedback skill to report it?"* If the user declines, continue without feedback capture.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.18%
按下载量换算43

Claude

27.41%
按下载量换算33

Cursor

17.1%
按下载量换算20

Gemini CLI

10.14%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills