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

breaking-change-detectorbreaking change detector 搜索

Agent Skill

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

总安装

416

周安装

17

GitHub Stars

5

下载量

135
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:breaking-change-detector(breaking change detector 搜索)
来源仓库:https://github.com/apankov1/quality-engineering
仓库路径:skills/breaking-change-detector
安装命令:
npx skills add https://github.com/apankov1/quality-engineering --skill breaking-change-detector
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/apankov1/quality-engineering --skill breaking-change-detector

简介

用于检测可能破坏现有会话或客户端兼容性的重大变更,覆盖合同接口、数据库模式、API端点等六个类别。

  • 适合在修改共享契约、数据库迁移、API签名等场景下使用,提供可执行工具和静态检查清单。
  • 通过命令行调用,需确认权限范围和维护状态,避免触发联网或文件写入操作。
  • 安装前建议核实来源仓库和实际功能,确保符合项目安全策略和运行环境要求。
  • 涉及删除或更新时,应优先进行 dry-run 或备份,防止误操作影响生产系统。

SKILL.md

Breaking Change Detector

Audits breaking changes that could disrupt active sessions or lose client compatibility across 6 categories. Includes executable utilities for categories 1, 3, 5, and 6; categories 2 and 4 are checklist/static-analysis guided.

When to use: Modifying shared contract/interface packages, changing database schema or migrations, RPC/API endpoint signature changes, WebSocket message format changes, serialized state schema changes, before merging any contract/schema changes.

When not to use: Adding new optional fields (non-breaking), internal refactoring without API changes, documentation or test-only changes.

Rationalizations (Do Not Skip)

RationalizationWhy It's WrongRequired Action
"Nobody uses the old format"Active sessions and stored data use the old format right nowCheck backward compatibility
"We'll fix the clients"Clients update on their own schedule, not yoursKeep old format supported
"It's just a rename"A rename IS a removal + addition -- all consumers need updatingDeprecate, don't rename
"The migration handles it"Migrations run once; replay/recovery may encounter old data indefinitelyUse tolerant reader pattern

Included Utilities

// Breaking change classification (zero dependencies)
import {
  classifyFieldChange,
  classifySerializedSchema,
  classifyDeserializerSafety,
  classifyEventTypeChanges,
  classifyStatusCodeChanges,
  classifyEnumValueChanges,
  classifyApiFieldSemantics,
} from './breaking-change.ts';

Backward Compatibility Checklist

When modifying contracts or schemas:

  • All existing fields preserved (or deprecated with fallback)
  • New fields are optional or have .catch() defaults
  • Type changes are widening only
  • Database migration handles existing data
  • Old event formats still supported for replay
  • WebSocket protocol versioned
  • API endpoints maintain compatibility
  • Tests validate old data still deserializes correctly
  • Serialized state schemas use .catch() for all fields
  • fromJSON() methods use safeParse() with graceful fallback

Violation Rules

SlugRuleSeverity
contract_field_removalRemoved/renamed fields in shared interfacesmust-fail
schema_without_catchSerialized schema fields missing .catch() defaultmust-fail
strict_parse_in_deserializeUsing .parse() instead of .safeParse() in fromJSONmust-fail
migration_drops_columnColumn removal without data migrationmust-fail
endpoint_removedAPI endpoint removed without deprecation periodmust-fail
event_type_renamedEvent type name changed (incompatible with replay)must-fail

Coverage

CategoryUtilityStatus
1. Contract fieldsclassifyFieldChange()Code + tests
2. Database schema--Doc-only (requires SQL diffing)
3. RPC/API endpointsclassifyStatusCodeChanges(), classifyEnumValueChanges(), classifyApiFieldSemantics()Code + tests (API-level diff helpers)
4. WebSocket protocol--Doc-only (requires message schema diffing)
5. Serialized stateclassifySerializedSchema(), classifyDeserializerSafety()Code + tests
6. Event sourcingclassifyEventTypeChanges()Code + tests

Categories 2 and 4 require static analysis of SQL migrations or protocol schemas. Category 3 includes API-level helpers here, but full endpoint/spec diffing still needs OpenAPI/RPC schema tooling. See categories.md for detection commands and safe patterns.

Output Format

## CRITICAL -- Will Disrupt Active Sessions

### Contract: Removed UserState.score field
**File**: src/contracts/types.ts:42
**Impact**: Active sessions fail on state load
**Fix**: Deprecate instead:
  /** @deprecated Use points instead */
  score?: number;
  points: number;

## WARNING -- Migration Required

### Database: Renamed column without migration
**File**: migrations/0036_rename_field.sql:5
**Impact**: Existing rows have NULL values
**Fix**: Add data migration step

## SAFE Changes

- Added optional field `UserState.metadata`
- New API endpoint `orders.archive`
- Widened type `Status: 'active' | 'paused'` to include `'archived'`

Companion Skills

This skill provides breaking change detection, not schema authoring or migration guidance. For broader methodology:

  • Search schema evolution on skills.sh for migration strategies, versioning patterns, and backward compatibility tooling
  • Schema boundary validation pairs with breaking change detection — use zod-contract-testing for compound state matrices and schema evolution testing
  • Serialized schemas with .catch() defaults need structured error logging — use observability-testing to assert log output when old data triggers fallback paths

Framework Adaptation

This skill applies to any system with shared contracts/interfaces, persistent state, event sourcing, real-time protocols, or RPC/API layers with independent client release cycles.

See categories.md for detailed detection patterns, code examples, and safe alternatives for each of the 6 categories.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.29%
按下载量换算45

Claude

32.83%
按下载量换算44

Cursor

18.43%
按下载量换算25

Gemini CLI

9.44%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills