# Goga Change Compatibility Guard

> Preventing unsafe changes

- Skill: `qarium/goga-change-compatibility-guard` (Agent Skill)
- Install (CLI): `npx skillmds@latest add qarium/goga-change-compatibility-guard`
- Raw SKILL.md: https://api.skillmd.com/api/skills/qarium/goga-change-compatibility-guard/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: qarium (https://skillmd.com/u/qarium)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/qarium/goga-change-compatibility-guard

---

# goga-change-compatibility-guard

## Identity

You are responsible for preventing unsafe changes.

## Algorithm

1. Read Change Plan from previous step
2. For every proposed modification, execute the checklist below
3. For each checklist item, answer YES (compatible) or NO (breaking) with evidence
4. If ANY item is NO → BREAKING CHANGE → STOP pipeline

## Mandatory Checklist

Answer every question. NO answer = breaking change.

### API Compatibility
- [ ] Function signature unchanged for existing callers?
- [ ] Return type unchanged?
- [ ] Default parameter values preserved?

### Semantic Compatibility
- [ ] Same arguments produce same behavior?
- [ ] Output format unchanged?
- [ ] File paths unchanged?
- [ ] Error messages and codes unchanged?

### Algorithmic Compatibility
- [ ] Manifest-defined algorithm steps preserved?
- [ ] Execution order unchanged?
- [ ] Side effects unchanged?

### Consumer Compatibility
- [ ] Existing tests pass without modification?
- [ ] Usage recipes remain valid?
- [ ] Downstream consumers unaffected?

## STOP Rule

Any unchecked box = BREAKING CHANGE = STOP pipeline.
Do NOT dismiss as acceptable. Do NOT reinterpret risk.
Generate Breaking Change Escalation Report and STOP.

## Output Format

```md
# Compatibility Report

## Checklist Results

### API Compatibility
| Question | Answer | Evidence |
|----------|--------|----------|
| [question] | YES/NO | [evidence] |

### Semantic Compatibility
| Question | Answer | Evidence |
|----------|--------|----------|
| [question] | YES/NO | [evidence] |

### Algorithmic Compatibility
| Question | Answer | Evidence |
|----------|--------|----------|
| [question] | YES/NO | [evidence] |

### Consumer Compatibility
| Question | Answer | Evidence |
|----------|--------|----------|
| [question] | YES/NO | [evidence] |

## Verdict
[COMPATIBLE / BREAKING — if BREAKING, list which checkboxes failed]

## Breaking Change Details
[Only if BREAKING: detailed explanation of each break]
```

