Check Change Impact
Trace the actual diff to its callers and consumers. Report only evidenced changes and meaningful gaps. Do not edit code, post comments, or pad the result with generic risks unless the user separately asks.
Operating contract
- Problem: a changed-file list does not show the runtime blast radius of shared contracts, data, jobs, external calls, generated types, or neighboring consumers.
- Use when: one concrete diff, branch, commit, or PR needs an impact report.
- Do not use when: the user wants implementation, fixes, a general code review, or an explanation without a resolvable change artifact.
- Produce: a compact distinction between direct changes, indirect consumers, confirmed unaffected paths, and material unverified surfaces.
Composition boundary
Own exactly one artifact: the blast-radius report for a concrete repository, comparison base, and head SHA.
- Use this skill when the user wants impact explanation without review findings or fixes.
- Reuse a current report only when repository, base, and head SHA still match.
- Do not reconstruct the implementation plan, run a general code review, classify unrelated findings, or apply fixes.
- Expand beyond immediate callers only when the diff or a shared symbol provides evidence of an indirect consumer.
Workflow
Lock the target: repository, branch/commit/PR, and comparison base. Read applicable repository instructions.
Inspect the changed-file list and relevant full diff. Compare changed behavior with the base version.
Search every changed public symbol with rg: routes, serializers, models, tasks, schedules, callers, shared consumers, tests, and generated contracts.
Trace the owner path:
inbound request or scheduler -> owner logic -> external call -> database
-> response/schema -> direct and shared consumers
Check these surfaces, but report only material results:
- API: exact endpoint and method, auth, path/query/body changes.
- Response: added/removed fields, null/status semantics, ordering, pagination/cardinality.
- Data: table/field reads and writes, migration, historical mutation, backfill, retention.
- Async/external: task cadence, target eligibility, request parameters, call count, retry/error behavior.
- Indirect: shared serializers/helpers/models, other endpoints, generated types, frontend or service consumers.
- Runtime cost: added queries, joins, payload growth, or result growth when meaningful.
- Unaffected: nearby paths that were searched and confirmed unchanged.
Verify relevant tests and current CI when available. Mark real external API or production behavior as unverified unless runtime evidence exists.
Evidence Rules
- Distinguish inbound API request changes from outbound third-party request changes.
- Distinguish runtime response changes from OpenAPI/generated-type-only changes.
- Distinguish “no migration” from “no data writes” and “no historical backfill.”
- Treat shared serializers and helpers as indirect contract surfaces even when one caller omits the new field at runtime.
- Note pagination impact when newly eligible rows can change counts or page contents.
- Do not say “no other impact” until usages and adjacent routes have been searched.
- Label facts as confirmed, inferences as such, and missing runtime proof as unverified.
- Avoid hypothetical failure lists that are not specific to the diff.
Output
Keep the answer compact and use this shape. Omit empty sections.
결론: <one sentence>
핵심 변화
- <maximum three bullets>
| 범위 | 변경 전 -> 변경 후 | 영향 소비자 |
| --- | --- | --- |
| API/Request | ... | ... |
| Response | ... | ... |
| Data | ... | ... |
| Job/External | ... | ... |
간접 영향
- <shared contract or neighboring consumer only>
변하지 않는 것
- <confirmed nearby paths, one compact bullet>
검증/미확인
- <tests/CI and first meaningful runtime gap>
Prefer one table and at most eight total bullets. Include clickable file links when referring to local code.
1---2name: check-change-impact3description: Inspect a code diff, branch, commit, or PR and report its concrete blast radius with minimal prose. Use when asked what changes after merge or deploy, which APIs, requests, responses, data, jobs, external calls, shared consumers, schemas, or neighboring features are affected, or whether any impact surface was missed.4---56# Check Change Impact78Trace the actual diff to its callers and consumers. Report only evidenced changes and meaningful gaps. Do not edit code, post comments, or pad the result with generic risks unless the user separately asks.910## Operating contract1112- **Problem:** a changed-file list does not show the runtime blast radius of shared contracts, data, jobs, external calls, generated types, or neighboring consumers.13- **Use when:** one concrete diff, branch, commit, or PR needs an impact report.14- **Do not use when:** the user wants implementation, fixes, a general code review, or an explanation without a resolvable change artifact.15- **Produce:** a compact distinction between direct changes, indirect consumers, confirmed unaffected paths, and material unverified surfaces.1617## Composition boundary1819Own exactly one artifact: the blast-radius report for a concrete repository, comparison base, and head SHA.2021- Use this skill when the user wants impact explanation without review findings or fixes.22- Reuse a current report only when repository, base, and head SHA still match.23- Do not reconstruct the implementation plan, run a general code review, classify unrelated findings, or apply fixes.24- Expand beyond immediate callers only when the diff or a shared symbol provides evidence of an indirect consumer.2526## Workflow27281. Lock the target: repository, branch/commit/PR, and comparison base. Read applicable repository instructions.292. Inspect the changed-file list and relevant full diff. Compare changed behavior with the base version.303. Search every changed public symbol with `rg`: routes, serializers, models, tasks, schedules, callers, shared consumers, tests, and generated contracts.314. Trace the owner path:3233 ```text34 inbound request or scheduler -> owner logic -> external call -> database35 -> response/schema -> direct and shared consumers36 ```37385. Check these surfaces, but report only material results:3940 - API: exact endpoint and method, auth, path/query/body changes.41 - Response: added/removed fields, null/status semantics, ordering, pagination/cardinality.42 - Data: table/field reads and writes, migration, historical mutation, backfill, retention.43 - Async/external: task cadence, target eligibility, request parameters, call count, retry/error behavior.44 - Indirect: shared serializers/helpers/models, other endpoints, generated types, frontend or service consumers.45 - Runtime cost: added queries, joins, payload growth, or result growth when meaningful.46 - Unaffected: nearby paths that were searched and confirmed unchanged.47486. Verify relevant tests and current CI when available. Mark real external API or production behavior as unverified unless runtime evidence exists.4950## Evidence Rules5152- Distinguish inbound API request changes from outbound third-party request changes.53- Distinguish runtime response changes from OpenAPI/generated-type-only changes.54- Distinguish “no migration” from “no data writes” and “no historical backfill.”55- Treat shared serializers and helpers as indirect contract surfaces even when one caller omits the new field at runtime.56- Note pagination impact when newly eligible rows can change counts or page contents.57- Do not say “no other impact” until usages and adjacent routes have been searched.58- Label facts as confirmed, inferences as such, and missing runtime proof as unverified.59- Avoid hypothetical failure lists that are not specific to the diff.6061## Output6263Keep the answer compact and use this shape. Omit empty sections.6465```markdown66결론: <one sentence>6768핵심 변화69- <maximum three bullets>7071| 범위 | 변경 전 -> 변경 후 | 영향 소비자 |72| --- | --- | --- |73| API/Request | ... | ... |74| Response | ... | ... |75| Data | ... | ... |76| Job/External | ... | ... |7778간접 영향79- <shared contract or neighboring consumer only>8081변하지 않는 것82- <confirmed nearby paths, one compact bullet>8384검증/미확인85- <tests/CI and first meaningful runtime gap>86```8788Prefer one table and at most eight total bullets. Include clickable file links when referring to local code.