impact-analysis
Analyze the impact of a proposed change across a traceability graph. Identifies affected artifacts (requirements / stories / tests / deployed services / dependent teams / external consumers), computes blast radius, estimates effort and risk, suggests phasing, and produces a stakeholder-communication plan. Consumes traceability-matrix output.
What this skill does
# Impact Analysis
You analyze the impact of a proposed change across a traceability graph. Input: a change with the source artifact(s). Output: affected artifacts, blast radius, effort, risk, phasing recommendation, and communication plan.
## Core rules
- **Change stated explicitly**: type (remove / modify / split / merge / deprecate), scope, rationale
- **Traceability-based**: follow links from `traceability-matrix` (or elicit graph if absent)
- **Both directions**: upstream (what invalidates the change) + downstream (what the change breaks)
- **Named effects, not "many"**: specific artifact IDs, not hand-waving
- **Risk grounded**: per affected artifact, score risk with rationale
- **No fabricated dependencies**: don't invent links not in the supplied graph
## Input handling
| Dimension | Required | Default |
|---|---|---|
| **Proposed change** | Yes (description + type) | — |
| **Source artifact(s)** | Yes (IDs) | — |
| **Traceability graph** | Yes | From `traceability-matrix` or supplied |
| **Change deadline** | No | None |
| **Stakeholders / teams** | No | Inferred |
## Phase 1 — Setup
```
**Change**: [description]
**Change type**: [remove / modify / split / merge / deprecate / rename / reinterpret]
**Source artifacts**: [IDs]
**Graph source**: [`traceability-matrix` output or supplied links]
**Deadline**: [date or "none"]
```
Ask render mode per `diagram-rendering` mixin and output path (default: `/documentation/[case]/impact-analysis/`).
## Phase 2 — Graph walk
Starting from source artifact(s), walk the graph in both directions:
### Downstream walk (what does this change break?)
Follow child links:
- Requirement → Stories implementing it → Tests verifying them → Deployed services → External consumers
- ADR → Requirements / services decided by it
- Goal → Requirements deriving from it
Depth: follow until natural leaves (tests, deployed artifacts, external APIs).
### Upstream walk (what invalidates this change?)
Follow parent links:
- Requirement → Goal it derives from → Business case
- Story → Requirement → ADR
- Test → Story → Requirement (what does this test exist to verify?)
Depth: until root (goals / strategic drivers).
## Phase 3 — Affected artifact list
Per affected artifact:
| Field | Description |
|---|---|
| **ID** | From graph |
| **Direction** | Upstream / Downstream |
| **Distance** | Hops from source |
| **Link type** | `derives-from` / `implements` / `verifies` / ... |
| **Effect** | What specifically changes (content / existence / behavior / contract) |
| **Effort** | S / M / L / XL |
| **Risk** | Low / Medium / High / Critical |
| **Owner** | Role / team |
Rule: "many affected" is not an answer; name them.
## Phase 4 — Blast radius
Summarize:
- **Total affected artifacts** by type
- **Cross-team impact** (teams other than the change owner)
- **External consumers** (partners, customers, public APIs)
- **Compliance scope** (regulated artifacts touched)
Classify overall blast radius:
- **Local** — single team, no external impact
- **Cross-team** — multiple internal teams
- **External** — customers / partners / public API
- **Enterprise** — org-wide standards or multiple departments
## Phase 5 — Risk assessment
Per affected artifact, risk factors:
- **Reversibility**: can we roll back?
- **Detection**: will we see breakage?
- **Blast**: downstream of this artifact
- **Schedule**: does the deadline force rushed integration?
- **Compliance**: regulatory implications
Aggregate into change-level risk (Low / Medium / High / Critical) with per-factor rationale.
## Phase 6 — Effort estimate
Per team + per artifact type:
| Team | Artifact type | Count | Estimated effort |
|---|---|---|---|
| Platform | Tests | 12 | 5 person-days |
| Frontend | Stories | 4 | 8 person-days |
| External (partner X) | API consumer | 1 | Coordination, 3 weeks lead time |
Totals in person-days or person-weeks.
## Phase 7 — Phasing recommendation
Propose phases (not all at once):
| Phase | Scope | Duration | Gate |
|---|---|---|---|
| 1 | Non-breaking shim, parallel support | 2 wk | Shim deployed |
| 2 | Migrate internal consumers | 4 wk | Internal traffic on new |
| 3 | Migrate external consumers | 6 wk | Deprecation notices sent |
| 4 | Remove old path | 2 wk | Telemetry confirms zero use |
Phase boundaries include:
- Decision gates
- Rollback plan per phase
- Communication milestones
## Phase 8 — Communication plan
| Audience | Message | Channel | When |
|---|---|---|---|
| Affected internal teams | Change + impact + timeline | Slack + planning docs | Before phase 1 |
| External API consumers | Deprecation notice + migration guide | Email + changelog | ≥ 3 months before phase 3 |
| Leadership | Blast radius + risk + phasing | Steering update | At kickoff |
| Compliance / legal | Regulatory implications | Written notice | If compliance scope > local |
## Phase 9 — Residual uncertainties
Name items where impact cannot be fully determined:
- Unlinked artifacts (not in trace graph)
- External consumers not inventoried
- Behavioral dependencies beyond documented links
Recommend discovery actions before committing.
## Phase 10 — Diagrams
### 1. Blast radius graph
```mermaid
flowchart LR
SOURCE["R-042<br/>(change)"]
S123["S-123"]
S124["S-124"]
T089["T-U-89"]
T012["T-E-12"]
D023["D-service-auth-v2.3"]
EXT["External partner X"]
SOURCE --> S123
SOURCE --> S124
S123 --> T089
S123 --> T012
SOURCE --> D023
D023 --> EXT
style SOURCE fill:#ffd93d
style EXT fill:#ff6b6b
```
Color code: source (yellow), high-risk downstream (red).
### 2. Impact by team
```mermaid
xychart-beta
title "Affected artifacts by team"
x-axis ["Platform", "Frontend", "Backend", "Mobile", "External X"]
y-axis "Artifacts" 0 --> 20
bar [12, 4, 6, 0, 1]
```
## Phase 11 — Diagram rendering
Per `diagram-rendering` mixin. File names:
- `blast-radius.mmd` / `.png`
- `impact-by-team.mmd` / `.png`
## Phase 12 — Report assembly and approval
```markdown
# Impact Analysis: [Change title]
**Date**: [date]
**Change**: [description]
**Change type**: [type]
**Source artifacts**: [IDs]
**Blast radius**: [local / cross-team / external / enterprise]
**Overall risk**: [low / medium / high / critical]
## Scope
[Change + source + graph source + deadline]
## Affected Artifacts
[Table: ID, direction, distance, link type, effect, effort, risk, owner]
## Blast Radius
[Counts by type + cross-team + external + compliance]
## Risk Assessment
[Per-factor rationale aggregating to change-level risk]
## Effort Estimate
[Per team + per artifact type + totals]
## Phasing Recommendation
[Phases with gates + rollback]
## Communication Plan
[Audience → message → channel → when]
## Residual Uncertainties
[Discovery actions before committing]
## Diagrams
[Blast radius + impact-by-team]
## Assumptions & Limitations
[Graph gaps, confidence on inferred links]
```
Present for user approval. Save only after confirmation.
## Extraction + assessment rules
- Follow graph links; never invent
- Name artifacts explicitly
- Risk per factor, aggregated honestly
- Residual uncertainties surfaced
## Failure behavior
| Situation | Behavior |
|---|---|
| No change description | Interview mode (§7) |
| No graph source | Require `traceability-matrix` output or ask for links |
| Graph has known gaps | Produce analysis on what's available, flag gaps |
| External consumers unknown | Flag as residual uncertainty, require discovery |
| Change type unclear | Ask (remove / modify / split / merge / deprecate / rename) |
| mmdc failure | See `diagram-rendering` mixin |
| Out-of-scope ("plan the rollout") | Pointer to `mitigation-strategy-planning` / planning skills |
## Self-check
```
[] Change clearly described with type
[] Source artifacts named
[] Upstream + downstream walks
[] Every affected artifact named (no "many")
[] Per-artifact effect, effort, risk, owner
[] Blast radius classified
[] Change-level risk with per-facRelated in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.