Token导航 LogoToken导航TokenDH.com
前端设计只读github未标认证来源可访问clear审计通过

composition-over-inheritance组合优于继承

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

689

周安装

29

GitHub Stars

10

下载量

241
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:composition-over-inheritance(组合优于继承)
来源仓库:https://github.com/yanko-belov/code-craft
仓库路径:skills/composition-over-inheritance
安装命令:
npx skills add https://github.com/yanko-belov/code-craft --skill composition-over-inheritance
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/yanko-belov/code-craft --skill composition-over-inheritance

简介

倡导以对象组合替代类继承的设计原则,提升组件灵活性与复用性。

  • 适用于 React、Vue 等前端框架中的组件关系设计,避免紧耦合层级。
  • 帮助构建可插拔、易维护的组件体系,减少继承带来的僵化结构。
  • 使用时需结合实际业务场景判断是否适用组合模式而非继承。
  • 安装前建议确认项目技术栈是否支持现代组件建模方式。

SKILL.md

Composition Over Inheritance

Overview

Favor object composition over class inheritance.

Inheritance creates tight coupling and rigid hierarchies. Composition creates flexible, reusable components that can be mixed and matched.

When to Use

  • Designing relationships between classes
  • Tempted to use extends
  • Class needs behavior from multiple sources
  • Creating "is-a" relationships
  • Building class hierarchies

The Iron Rule

NEVER use inheritance when composition would work.

No exceptions:

  • Not for "it's the OOP way"
  • Not for "is-a relationship"
  • Not for "code reuse via extends"
  • Not for "polymorphism"

Default to composition. Use inheritance only for true type hierarchies.

Detection: The Inheritance Smell

If inheritance feels awkward or forced, use composition:

// ❌ VIOLATION: Inheritance hierarchy
class Animal {
  eat(): void { console.log('Eating'); }
}

class FlyingAnimal extends Animal {
  fly(): void { console.log('Flying'); }
}

class SwimmingAnimal extends Animal {
  swim(): void { console.log('Swimming'); }
}

// Duck needs both fly AND swim - inheritance can't do this cleanly
class Duck extends FlyingAnimal {
  swim(): void { console.log('Swimming'); } // Duplicated!
}

Correct Pattern: Composition with Interfaces

Define capabilities as interfaces, compose them:

// ✅ CORRECT: Composition
interface Flyable {
  fly(): void;
}

interface Swimmable {
  swim(): void;
}

interface Eatable {
  eat(): void;
}

// Reusable behaviors
const flyingBehavior: Flyable = {
  fly() { console.log('Flying'); }
};

const swimmingBehavior: Swimmable = {
  swim() { console.log('Swimming'); }
};

const eatingBehavior: Eatable = {
  eat() { console.log('Eating'); }
};

// Compose what you need
class Duck implements Flyable, Swimmable, Eatable {
  fly = flyingBehavior.fly;
  swim = swimmingBehavior.swim;
  eat = eatingBehavior.eat;
}

class Fish implements Swimmable, Eatable {
  swim = swimmingBehavior.swim;
  eat = eatingBehavior.eat;
}

class Bird implements Flyable, Eatable {
  fly = flyingBehavior.fly;
  eat = eatingBehavior.eat;
}

Why Inheritance Fails

ProblemExample
Diamond problemDuck needs Flying AND Swimming
Tight couplingChild knows parent internals
Rigid hierarchyCan't change parent without breaking children
Forced inheritanceGets methods it doesn't need
Fragile base classParent changes break all children

Why Composition Wins

BenefitExample
FlexibleMix any behaviors together
Loose couplingComponents don't know each other
Easy testingMock individual behaviors
Runtime changesSwap behaviors dynamically
No hierarchy lock-inAdd new combinations freely

Pressure Resistance Protocol

1. "It's the OOP Way"

Pressure: "Object-oriented programming uses inheritance"

Response: Modern OOP favors composition. Inheritance is overused.

Action: Use interfaces + composition. It's still OOP.

2. "It's an Is-A Relationship"

Pressure: "A Duck IS-A Bird, so it should extend Bird"

Response: "Is-a" often becomes "has-a" when requirements change. Composition handles both.

Action: Model as "has behaviors" not "is a type".

3. "Code Reuse via Extends"

Pressure: "I need the parent's methods"

Response: Composition provides better code reuse without coupling.

Action: Extract shared behavior into composable units.

4. "Polymorphism Requires Inheritance"

Pressure: "I need to treat different types uniformly"

Response: Interfaces provide polymorphism without inheritance.

Action: Define interface, have classes implement it.

Red Flags - STOP and Reconsider

If you notice ANY of these, use composition instead:

  • extends keyword in your code
  • Class hierarchy deeper than 2 levels
  • Child class overriding parent methods
  • "Diamond problem" - needs multiple parents
  • Subclass doesn't use all parent methods
  • Changing parent breaks children
  • Hard to test without instantiating parent

All of these mean: Refactor to composition.

When Inheritance IS Appropriate

Use inheritance only when:

  • True type hierarchy (rarely)
  • Framework requires it (React class components, etc.)
  • Extending library classes you don't control

Even then, keep hierarchy shallow (max 2 levels).

Quick Reference

InheritanceComposition
class Dog extends Animalclass Dog implements Animal + behavior injection
Rigid hierarchyFlexible composition
Single parent onlyMultiple behaviors
Tight couplingLoose coupling
Changes cascadeChanges isolated

Common Rationalizations (All Invalid)

ExcuseReality
"It's the OOP way"Modern OOP prefers composition.
"It's an is-a relationship""Has behavior" is more flexible.
"Need parent's methods"Compose the behavior instead.
"Polymorphism needs it"Interfaces provide polymorphism.
"Less code with extends"More flexibility with composition.
"I noted it's problematic"Don't do it if it's problematic.

The Bottom Line

Compose behaviors. Don't inherit them.

When designing classes: define interfaces for capabilities, create composable behaviors, inject what each class needs. Use extends only as last resort.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Codex

29.89%
按下载量换算72

Claude Code

24.08%
按下载量换算58

windsurf

18.98%
按下载量换算46

Antigravity

13.03%
按下载量换算31

trae

7.38%
按下载量换算18

OpenCode

3.72%
按下载量换算9

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills