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

best-practices最佳实践

Agent Skill

用于辅助 API 设计、接口文档、请求响应结构和服务集成说明。它适合让 Agent 梳理 endpoint、生成 OpenAPI 草稿、检查字段命名、整理错误码或辅助前后端联调。使用时需要确认真实业务语义、鉴权方式、分页和错误处理规则;涉及生成接口文档时,应避免凭空补字段,最好从现有代码、schema 或接口样例中提取事实。

总安装

225

周安装

9

GitHub Stars

6

下载量

73
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:best-practices(最佳实践)
来源仓库:https://github.com/ghosttypes/ff-5mp-api-ts
仓库路径:skills/best-practices
安装命令:
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/ghosttypes/ff-5mp-api-ts --skill best-practices

简介

最佳实践技能辅助 API 设计和接口文档生成,提升前后端协作效率。

  • 适用于 endpoint 梳理、OpenAPI 草稿生成和错误码整理等开发场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令集成到开发环境。
  • 使用时需从现有代码或样例中提取字段,避免凭空补全业务语义。
  • best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Universal Best Practices

This skill provides comprehensive guidance on software engineering best practices that apply across all programming languages and project types. Follow these principles to ensure clean, maintainable, production-ready code.

Core Workflow

When writing or reviewing code:

  1. Start with KISS and YAGNI - implement the simplest thing that solves the current need
  2. Apply SOLID principles to structure your classes and modules
  3. Ensure DRY by eliminating duplication
  4. Use SoC to separate concerns into distinct responsibilities
  5. Follow LoD to minimize coupling between components
  6. Apply remaining principles as relevant to your specific context

Fundamental Principles

SOLID

Five core object-oriented design principles that make code maintainable and flexible:

S - Single Responsibility Principle (SRP)

  • Each class/module should have only ONE reason to change
  • One class = one job or responsibility
  • Example: Separate UserRepository (data access) from UserValidator (validation logic)
  • Benefit: Changes to one responsibility don't affect unrelated code

O - Open/Closed Principle (OCP)

  • Open for extension, closed for modification
  • Add new functionality without changing existing code
  • Use interfaces, abstract classes, or inheritance to extend behavior
  • Example: Plugin systems, strategy patterns
  • Benefit: Add features without risking existing functionality

L - Liskov Substitution Principle (LSP)

  • Subtypes must be substitutable for their base types
  • Child classes shouldn't break parent class contracts
  • Example: If Bird has fly(), don't create Penguin extends Bird - penguins can't fly
  • Benefit: Polymorphism works correctly, no surprises

I - Interface Segregation Principle (ISP)

  • No class should implement methods it doesn't use
  • Many specific interfaces > one general interface
  • Example: Split IWorker into IWorkable and IEatable instead of forcing robots to implement eat()
  • Benefit: Lean interfaces, no unnecessary dependencies

D - Dependency Inversion Principle (DIP)

  • Depend on abstractions, not concrete implementations
  • High-level modules shouldn't depend on low-level modules
  • Both should depend on abstractions
  • Example: PaymentProcessor depends on IPaymentGateway interface, not concrete StripeGateway
  • Benefit: Loose coupling, easy to swap implementations

DRY (Don't Repeat Yourself)

  • Every piece of knowledge has ONE authoritative representation
  • Avoid duplicating logic, even if written differently
  • Example: Extract common tax calculation logic into single function instead of repeating across products
  • Benefit: Changes happen in one place, consistency guaranteed

KISS (Keep It Simple, Stupid)

  • Prefer the simplest solution that works
  • Avoid unnecessary complexity and cleverness
  • Simple code is easier to understand, maintain, and debug
  • Example: Use straightforward conditionals over complex nested ternaries
  • Benefit: Code is readable and less error-prone

YAGNI (You Aren't Gonna Need It)

  • Don't build features you don't need right now
  • No speculative functionality for hypothetical future needs
  • Focus on current requirements
  • Example: Don't build a recommendation engine if you only need product listing
  • Benefit: Less code to maintain, faster delivery

Architectural Principles

SoC (Separation of Concerns)

  • Divide code into distinct sections, each addressing a separate concern
  • Each module focuses on ONE aspect of functionality
  • Example: Separate data layer, business logic, and presentation
  • Benefit: Changes to one concern don't affect others

SSOT (Single Source of Truth)

  • Every data element is mastered in only ONE place
  • All other references point to or derive from this source
  • Example: User profile data lives in one database table, not duplicated across systems
  • Benefit: No data inconsistency, one place to update

LoD (Law of Demeter) - Principle of Least Knowledge

  • Object should only talk to immediate friends
  • Don't access nested objects: a.getB().getC().doSomething() violates LoD
  • Instead: a.doSomethingWithC() where A delegates internally
  • Rule: Method can only call methods on:

- Itself (this) - Its parameters - Objects it creates - Its direct properties

  • Benefit: Reduced coupling, easier refactoring

CQS (Command Query Separation)

  • Methods should either:

- Command: Change state (return void) - Query: Return data (don't change state)

  • Never both in same method
  • Example: getBalance() reads only, withdraw() changes only
  • Exception: Sometimes pop() or incrementAndGet() violates this for practical reasons
  • Benefit: Predictable behavior, easier reasoning

DbC (Design by Contract)

  • Define explicit preconditions, postconditions, and invariants
  • Preconditions: What must be true before method runs
  • Postconditions: What must be true after method completes
  • Invariants: What must always be true for the object
  • Example: withdraw(amount) requires amount > 0 (precondition) and balance >= amount (precondition), ensures new_balance = old_balance - amount (postcondition)
  • Benefit: Clear contracts, fail-fast validation

Operational Principles

ETC (Easier to Change)

  • Optimize for change cost, not cleverness
  • Ask: "Will this be easy to modify later?"
  • Prefer composition over inheritance
  • Keep coupling loose, cohesion high
  • Benefit: Code adapts to evolving requirements

PoLP (Principle of Least Privilege)

  • Grant minimum permissions needed for the task
  • Processes run with minimal privileges
  • Functions access only what they need
  • Example: Read-only database connection for queries, no write access
  • Benefit: Reduced attack surface, limited blast radius

CoC (Convention over Configuration)

  • Use sensible defaults over explicit configuration
  • Follow standard conventions to reduce decisions
  • Only configure when deviating from convention
  • Example: Rails assumes User class maps to users table - no config needed
  • Benefit: Less boilerplate, faster development, easier onboarding

Idempotency

  • Operation produces same result whether executed once or multiple times
  • Safe to retry without side effects
  • Critical for distributed systems and APIs
  • Example: PUT /users/123 with same data always results in same user state
  • Implementation: Use idempotency keys, request IDs, or natural idempotency
  • Benefit: Safe retries, fault tolerance, consistency

POLA (Principle of Least Astonishment)

  • System behavior should match user expectations
  • Code does what it looks like it does
  • No surprises or unexpected behavior
  • Example: delete() should delete, not archive
  • Benefit: Intuitive code, fewer bugs from misunderstanding

Principle Application Priority

When multiple principles conflict:

  1. Safety first: PoLP, DbC preconditions
  2. Simplicity: KISS, YAGNI
  3. Maintainability: DRY, SoC, SRP
  4. Flexibility: OCP, DIP, ETC
  5. Consistency: POLA, CoC

Common Anti-Patterns to Avoid

  • Premature optimization: Violates YAGNI and KISS
  • God classes: Violates SRP and SoC
  • Deep nesting: Violates LoD
  • Copy-paste code: Violates DRY
  • Magic numbers/strings: Violates SSOT and maintainability
  • Mixing commands and queries: Violates CQS
  • Over-engineering: Violates KISS and YAGNI

Quick Reference

For detailed examples and language-specific implementations, see:

  • references/solid-examples.md - SOLID principle examples
  • references/patterns-reference.md - Design pattern applications of principles

When Principles Conflict

DRY vs KISS: If abstraction becomes complex, duplicate similar code YAGNI vs Future-proofing: Build for today, refactor when tomorrow arrives LoD vs Performance: Sometimes direct access is needed - document why CQS vs Pragmatism: Database pop() operations can violate CQS when needed

Remember: Principles are guidelines, not laws. Apply with judgment based on context.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.97%
按下载量换算26

Claude

31.23%
按下载量换算23

Cursor

19.22%
按下载量换算14

Gemini CLI

8.14%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills