# Impact

> Check Impact

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

---


# Check Impact

Analyze the blast radius of a spec before implementation. Identify what existing
code, tests, specs, and documentation will be affected.

## Step 0: Parse arguments

Extract the spec file path from the first token.

## Step 1: Read the spec

1. Read the spec file in full. **Parse YAML frontmatter** to extract `title`,
   `status`, `depends_on`, `affects`, `effort`.
2. Use the `affects` list from frontmatter as the primary set of code files and
   directories this spec touches.
3. Extract additional file paths, package names, type names, function names, and
   interface names mentioned in the spec body.
4. Identify the spec's deliverables: what new things it creates, what existing
   things it modifies.

## Step 2: Map the code impact

For each file, type, or function the spec plans to modify:

1. Find all callers and dependents using Grep/Glob:
   - Functions: grep for call sites across the codebase.
   - Types: grep for usage (field access, type assertions, interface
     implementations).
   - Interfaces: grep for implementations and consumers.
   - Packages: grep for imports.
2. Build a dependency fan-out: "changing X affects Y, Z, W".
3. Classify each affected file as:
   - **Direct** — mentioned in the spec, will be intentionally modified.
   - **Ripple** — not mentioned but uses something being changed; may need
     updates.
   - **Test** — test file that exercises affected code; may need updates.

Use Agent subagents (Explore type) for parallel searches across independent
packages. Launch up to 3 concurrently.

## Step 3: Check interface stability

For each interface or exported type the spec modifies:

1. Find all implementations (for interfaces) or embeddings (for structs).
2. Check if any are in other packages or other specs' deliverables.
3. Flag breaking changes: method signature changes, removed fields, renamed
   types.
4. For each breaking change, list every file that would need updating.

## Step 4: Check spec cross-references (reverse dependency analysis)

Use two complementary approaches:

### 4a. Reverse `depends_on` scan
Grep all spec files for `depends_on` entries that reference this spec's path.
These are specs that directly depend on this one. For each:
- Check its `status` — if `validated` or later, it may be affected by changes.
- If the dependent is already `complete`, flag it as potentially needing a
  `stale` review.

### 4b. `affects` overlap scan
Grep all spec files for `affects` entries that reference the same code paths
as this spec. Specs with overlapping `affects` may conflict even without an
explicit `depends_on` edge.

### 4c. Transitive impact
Follow the reverse `depends_on` graph transitively: if spec A depends on this
spec, and spec B depends on A, then B is transitively affected. Report both
direct and transitive dependents.

### 4d. Body reference scan
Grep all other spec files for references to:
- The spec being analyzed (by filename).
- Types, interfaces, or packages the spec modifies.
For each referencing spec, assess whether it:
- Depends on the current shape of what's being changed (needs update).
- Merely mentions it in passing (no action needed).
- Has assumptions that conflict with the proposed changes.

## Step 5: Check documentation impact

Scan documentation files for references to things being changed:

1. Repository instructions such as `AGENTS.md` or `CLAUDE.md`.
2. User-facing guides and reference documentation.
3. Architecture or internals documentation.
4. `README.md` and `CONTRIBUTING.md` at the project root when present.

Flag any doc sections that reference modified APIs, types, or behaviors.

## Step 6: Check test impact

1. Find test files in affected packages.
2. Grep for test functions that reference modified types or functions.
3. Estimate how many tests will need updating.
4. Flag packages with low test coverage in the affected area (no existing
   tests for the code being changed).

## Step 7: Generate report

```
## Impact Analysis: <spec-name>

### Direct Changes
Files the spec explicitly modifies:
- <file> — <what changes>

### Ripple Effects
Files not in the spec but affected by the changes:
- <file> — uses <thing being changed>, may need: <what>
- <file> — imports <package being changed>, may need: <what>

### Interface Changes
- <interface/type> — <N> implementations, <N> callers
  Breaking: <yes/no>, affected files: <list>

### Cross-Spec Impact
- <other-spec> — references <thing>, needs: <update/no action>

### Documentation Updates Needed
- <doc-file> — mentions <thing being changed>

### Test Impact
- <N> test files in affected packages
- <N> test functions reference modified code
- Packages with no tests in affected area: <list>

### Risk Assessment
- **Blast radius:** <Small (1-3 files) | Medium (4-10) | Large (10+)>
- **Breaking changes:** <None | <list>>
- **Highest risk area:** <description of what's most likely to break>

### Recommendations
- <actions to take before or during implementation>
```

## Notes

- This skill is read-only. It does not modify any files.
- Focus on actionable findings. Don't flag every transitive import — focus on
  code that will actually need changes.
- If the spec has a task breakdown, check impact per-task to identify which
  tasks carry the most risk.

