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

code-style代码风格

Agent Skill

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

总安装

264

周安装

11

下载量

88
Local Agent

安装说明

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

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。当前暂无明确安装命令,请以来源页面说明为准。

简介

提供代码可读性、可维护性与一致性的设计准则参考。

  • 适用于团队协作中统一命名风格与函数拆分粒度等实践指导。
  • 强调单一责任原则与小函数编写,降低后期修改风险。
  • 安装方式未公开,推测通过平台级插件机制加载。code-style 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 建议结合具体项目语言特性定制实施细则,避免生搬硬套通用规则。

SKILL.md

Code Style Skill

Overview

This skill guides you in writing code that follows SOLID principles and clean code best practices. Whether you're building new features, refactoring existing code, or reviewing code quality, this skill provides language-agnostic principles and guidelines to create maintainable, readable, and robust software.

When to Use This Skill

  • Writing new functions, classes, or modules
  • Refactoring existing code to improve quality
  • Conducting code reviews
  • Addressing technical debt
  • Establishing team coding standards

Core Principles

SOLID Principles

These five principles form the foundation of good object-oriented design and apply across most programming languages.

S - Single Responsibility Principle

A class or function should do one thing and have one reason to change.

  • Extract when description includes "and"
  • Keep functions under 100 lines; classes under 300 lines
  • Separate concerns: business logic, data access, presentation

O - Open/Closed Principle

Open for extension, closed for modification. Add features without changing existing code.

  • Use abstractions (interfaces, base classes) to define contracts
  • Extend via inheritance or composition

Avoid: Breaking changes to existing code when adding features.

L - Liskov Substitution Principle

Child classes must be substitutable for parent classes without breaking behavior.

  • Honor parent class contracts
  • Strengthen invariants, don't weaken them

Avoid: Subclasses that break the parent's contract or behave unexpectedly.

I - Interface Segregation Principle

Keep interfaces small and focused. Don't force clients to implement unused methods.

  • Split large interfaces into smaller, purpose-specific ones
  • Implement only what you need

Avoid: Fat interfaces with unused implementations.

D - Dependency Inversion Principle

Depend on abstractions, not concrete implementations.

  • Inject dependencies rather than creating them internally
  • Program against interfaces, not concrete classes

Avoid: Hard-coded dependencies on concrete classes.


Clean Code Fundamentals

Beyond SOLID, these practices improve code readability, maintainability, and team productivity.

Readability & Naming

Names should reveal intent and be searchable.

  • Functions: Use verbs (calculateTotal, fetchUserById, validateEmail)
  • Variables: Use nouns (userProfile, orderTotal, isActive)
  • Booleans: Phrase as questions (isValid, hasPermission, shouldCache)
  • Avoid abbreviations unless universal (HTTP, API, ID)
  • Avoid magic values: Extract to named constants

Single Responsibility (Function/Class Size)

  • Functions: Aim for <20 lines; refactor if over 50
  • Classes: Split if over 300 lines
  • One level of abstraction: Don't mix high-level and low-level details
  • Extract complex logic into well-named helper functions

DRY (Don't Repeat Yourself)

  • Extract repeated code into functions or modules
  • Use abstraction for similar patterns (base classes, shared utilities)
  • Three-time rule: Extract when the same code appears three times

Avoid: Over-abstraction that hides intent.

Error Handling Patterns

  • Fail fast: Validate inputs at entry; catch problems early
  • Specific errors: Use specific error types with clear messages
  • Handle at the right level: Only catch what you can meaningfully handle
  • Avoid silent failures: Log or rethrow errors

Avoid: Swallowing exceptions without logging.


Universal Guidelines

These practices apply regardless of programming language.

Code Structure & Flow

  • Limit nesting: Aim for 2-3 levels max using guard clauses and early returns
  • Extract magic values: Use named constants instead of literals
  • Avoid else statements: Use early returns and guard clauses
  • Keep functions focused: One reason to change; single responsibility

Naming & Clarity

  • Names reveal intent: Not just "what" but "why"
  • Single-word names: OK if unambiguous (user, total, status)
  • Balance brevity & clarity: temp is vague; tempC or temperature is better

Conditional Logic

  • Guard clauses: Handle edge cases first; process happy path after
  • Early returns: Reduce nesting with if (!condition) return;
  • Avoid boolean parameters: Create separate functions instead of flag parameters

Language-Specific References

While these principles are universal, each language has idiomatic patterns and practices.

  • javascript-typescript.md - Variable declarations, modern syntax, async patterns, TypeScript-specific guidance
  • python.md - Pythonic idioms, type hints, PEP 8 conventions, exception handling patterns

Summary

Good code is:

  • Readable: Your name choice should tell the story
  • Maintainable: Single responsibility makes changes safe
  • Testable: Small, focused functions are easier to verify
  • Principled: SOLID principles guide sustainable design
  • Consistent: Following these guidelines creates a common standard

Remember: Code is read far more often than it's written. Optimize for the reader.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

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

平台分布

Local Agent

81.62%
按下载量换算72

安全审计

暂无安全审计结果可展示。

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills