Token导航 LogoToken导航TokenDH.com
前端设计需要联网github未标认证来源可访问许可证需确认审计通过

test-pyramid-design测试金字塔设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

259

周安装

11

GitHub Stars

61

下载量

91
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:test-pyramid-design(测试金字塔设计)
来源仓库:https://github.com/melodic-software/claude-code-plugins
仓库路径:skills/test-pyramid-design
安装命令:
npx skills add https://github.com/melodic-software/claude-code-plugins --skill test-pyramid-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/melodic-software/claude-code-plugins --skill test-pyramid-design

简介

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。

  • 适合整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。
  • 需结合现有品牌、设计系统和用户任务,不应只堆装饰元素。
  • 涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出和对齐。
  • 安装方式:通过 npx skills add 命令从指定 GitHub 仓库添加。

SKILL.md

Test Pyramid Design

When to Use This Skill

Use this skill when:

  • Test Pyramid Design tasks - Working on design optimal test pyramids with unit/integration/e2e ratios. identify anti-patterns and recommend architecture-specific testing strategies
  • Planning or design - Need guidance on Test Pyramid Design approaches
  • Best practices - Want to follow established patterns and standards

Overview

The Test Pyramid, introduced by Mike Cohn, visualizes the ideal distribution of tests across different levels. More granular tests at the bottom (fast, cheap) and fewer broad tests at the top (slow, expensive).

The Classic Test Pyramid

                    ┌───────┐
                   /  E2E    \         ~10%
                  /   Tests   \        (UI, Acceptance)
                 /─────────────\
                /  Integration  \      ~20%
               /     Tests       \     (API, Component)
              /───────────────────\
             /      Unit Tests     \   ~70%
            /       (Fast, Cheap)   \  (Methods, Classes)
           └─────────────────────────┘

Test Level Characteristics

LevelSpeedCostScopeConfidenceMaintenance
UnitFastest (ms)LowestSingle unitLowLow
IntegrationMedium (s)MediumComponentsMediumMedium
E2ESlowest (min)HighestFull systemHighHigh

Common Pyramid Shapes

Healthy Pyramid ✅

     /\          Unit: 70%+
    /  \         Integration: 20%
   /    \        E2E: 10%
  /      \
 /________\      Fast feedback, low maintenance

Characteristics:

  • Fast CI/CD pipeline
  • Quick feedback loop
  • Low flakiness
  • Easy maintenance

Ice Cream Cone ❌

   ██████████     E2E: 60%
    ████████      Integration: 30%
      ████        Unit: 10%

Problems:

  • Slow pipelines (hours)
  • Flaky tests
  • Expensive maintenance
  • Late feedback

Fix: Extract unit tests, reduce E2E scope

Cupcake ❌

   ██████████     E2E: 40%
   ██████████     Manual: 50%
      ████        Unit: 10%

Problems:

  • High manual testing cost
  • Inconsistent coverage
  • Slow release cycles

Fix: Automate critical paths, add integration layer

Hourglass ❌

      ██          E2E: 10%
   ██████████     Integration: 70%
      ██          Unit: 20%

Problems:

  • Slow integration tests
  • Brittle test fixtures
  • Missing unit test coverage

Fix: Push coverage down to unit level

Architecture-Specific Pyramids

Monolithic Application

     /\          Unit: 70%
    /  \         Integration: 20%
   /    \        E2E: 10%
  /______\

Focus on unit tests for business logic.

Microservices

     /\          E2E/Contract: 10%
    /  \         Integration: 30%
   /    \        Unit: 60%
  /______\

More integration tests for service boundaries. Add contract tests between services.

Event-Driven Architecture

     /\          E2E: 10%
    /  \         Integration: 35%
   /    \        Unit: 55%
  /______\

Integration tests for event handlers. Unit tests for event processing logic.

Frontend-Heavy (SPA)

     /\          E2E: 15%
    /  \         Integration: 25%
   /    \        Unit/Component: 60%
  /______\

Component tests replace some unit tests. Visual regression testing at integration level.

Testing Trophy (Kent C. Dodds)

Alternative for frontend applications:

                 ┌─────┐
                 │ E2E │              ~5%
              ┌──┴─────┴──┐
              │Integration│           ~50%
           ┌──┴───────────┴──┐
           │    Static        │       ~10%
        ┌──┴─────────────────┴──┐
        │        Unit            │    ~35%
        └────────────────────────┘

Designing Your Pyramid

Step 1: Assess Current State

Count tests by level:

Level        | Count | % Total | Time    | Pass Rate
-------------|-------|---------|---------|----------
E2E          | 150   | 45%     | 30 min  | 85%
Integration  | 100   | 30%     | 10 min  | 95%
Unit         | 80    | 25%     | 30 sec  | 99%

Step 2: Identify Anti-Pattern

If You Have...ShapePriority Fix
E2E > 30%Ice Cream ConeExtract to lower levels
Unit < 50%InvertedAdd unit tests for logic
Integration > 50%HourglassPush to unit level
Manual > 20%CupcakeAutomate critical paths

Step 3: Set Target Ratios

Based on architecture:

ArchitectureUnitIntegrationE2E
Monolith70%20%10%
Microservices60%30%10%
Serverless50%40%10%
Frontend SPA40%45%15%

Step 4: Migration Plan

Prioritize by ROI:

  1. Quick wins: Convert flaky E2E to integration
  2. Coverage gaps: Add unit tests for critical logic
  3. Contract tests: Add for service boundaries
  4. Remove duplicates: Consolidate redundant E2E tests

Test Level Guidelines

Unit Tests

Should test:

  • Business logic
  • Algorithms
  • Data transformations
  • Validation rules
  • Edge cases

Should NOT test:

  • External services
  • Database queries
  • File system operations
  • Third-party libraries

Integration Tests

Should test:

  • Database repository operations
  • API endpoints
  • Message handlers
  • External service adapters
  • Component interactions

Should NOT test:

  • Pure business logic (use unit tests)
  • Full user journeys (use E2E)

E2E Tests

Should test:

  • Critical user journeys
  • Happy paths
  • Smoke tests
  • Cross-system workflows

Should NOT test:

  • Edge cases (use unit tests)
  • API contracts (use integration tests)
  • Everything (be selective)

.NET Example: Test Project Structure

src/
  MyApp.Domain/           # Business logic
  MyApp.Application/      # Use cases
  MyApp.Infrastructure/   # Data access
  MyApp.Api/              # HTTP endpoints

tests/
  MyApp.Domain.Tests/           # Unit tests (70%)
    Features/
      Orders/
        CreateOrderTests.cs
        OrderValidationTests.cs

  MyApp.Application.Tests/      # Integration tests (20%)
    Features/
      Orders/
        CreateOrderHandlerTests.cs

  MyApp.Api.Tests/              # E2E tests (10%)
    Features/
      Orders/
        OrdersEndpointTests.cs

Test Distribution Verification

// Build script or CI check
public class TestDistributionTests
{
    [Fact]
    public void TestPyramidRatiosAreHealthy()
    {
        var unitTests = CountTestsInAssembly("MyApp.Domain.Tests");
        var integrationTests = CountTestsInAssembly("MyApp.Application.Tests");
        var e2eTests = CountTestsInAssembly("MyApp.Api.Tests");

        var total = unitTests + integrationTests + e2eTests;

        Assert.True(unitTests / total >= 0.60, "Unit tests should be ≥60%");
        Assert.True(e2eTests / total <= 0.15, "E2E tests should be ≤15%");
    }
}

Metrics and Monitoring

Pipeline Health

MetricHealthyWarningCritical
Unit test time< 1 min1-5 min> 5 min
Integration time< 5 min5-15 min> 15 min
E2E test time< 10 min10-30 min> 30 min
Flaky test rate< 1%1-5%> 5%

Coverage Balance

Track coverage by pyramid level:

  • Unit coverage of business logic: ≥90%
  • Integration coverage of APIs: ≥80%
  • E2E coverage of critical paths: 100%

Integration Points

Inputs from:

  • Architecture documents → Pyramid shape
  • Risk assessment → E2E scope

Outputs to:

  • test-strategy-planning skill → Strategy document
  • CI/CD configuration → Pipeline stages
  • automation-strategy skill → Automation scope

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.67%
按下载量换算34

Claude

28.94%
按下载量换算26

Cursor

18.57%
按下载量换算17

Gemini CLI

8.04%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills