# Change Impact Analysis

> Used when analyzing the impact scope of PRD changes, design changes, or requirement changes. Change impact auto-analysis, analyzing the impact scope of requirement changes on functional, technical, testing, and other dimensions, generating change impact reports and re-review recommendations. Keywords: change impact, requirement change, impact analysis, change review, PRD change.

- **Type:** Skill
- **Install:** `agentstack add skill-luckyonetwothree-vibe-skill-change-impact-analysis`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [LuckyOneTwoThree](https://agentstack.voostack.com/s/luckyonetwothree)
- **Installs:** 0
- **Category:** [Agent Skills](https://agentstack.voostack.com/c/agent-skills)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [LuckyOneTwoThree](https://github.com/LuckyOneTwoThree)
- **Source:** https://github.com/LuckyOneTwoThree/vibe-skill/tree/main/.codex/skills/change-impact-analysis
- **Website:** https://luckyonetwothree.github.io/all-skill-html/

## Install

```sh
agentstack add skill-luckyonetwothree-vibe-skill-change-impact-analysis
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Requirement Change Impact Analysis Automation

## Core Principles

1. **Trigger-driven**: Automatically triggered by new events in the change request system, rather than initiated manually
2. **Automated acceptance**: Change classification, impact propagation analysis, and re-review judgment are fully automated
3. **Continuous deployment**: Change impact analysis results are automatically synced to version planning, maintaining release cadence
4. **Real-time retrospective**: Version linkage recommendations are generated immediately after change impact analysis is completed

## Interaction Mode

🤖 **AI auto-execution**

Trigger condition: New change request added to the change request system.

## Input

| Input Item | Type | Required | Source | Description |
|--------|------|------|------|------|
| Change Request | JSON | Yes | Change management system | Change content to be analyzed |
| Current PRD | JSON | Yes | PRD management system | Currently effective PRD version |
| Current Technical Solution | JSON | Yes | Technical solution repository | Reviewed technical solution |
| Development Progress | JSON | Yes | Development tracking system | Current development status of each task |
| API Contract | YAML/JSON | ○ | output/backend-api-design/api-design-spec/openapi.yaml | Backend API design, evaluating change impact on backend interfaces |
| Backend Review Report | JSON | ○ | output/backend-architecture/backend-architecture-spec/review_report.json | Backend architecture review results, evaluating change impact on backend architecture |

### Change Request Structure Example

```json
{
  "change_id": "CR_2024_001",
  "title": "Add WeChat login to login flow",
  "requester": "product_manager_zhang",
  "created_at": "ISO8601",
  "change_type": "functional",
  "description": "Add WeChat authorization login method on top of existing phone number login",
  "affected_scope": ["Login module", "User center"],
  "proposed_solution": "Introduce WeChat OpenID authorization mechanism",
  "priority": "high",
  "expected_completion": "2024-02-01"
}
```

## Execution Steps

### Step 1: Change Classification (L1-L4) [Core]

#### Classification Dimensions

| Level | Change Type | Impact Scope | Decision Level |
|------|----------|----------|----------|
| L1 Minor | Text correction, style adjustment, copy optimization | Single small feature | Developer self-decision |
| L2 Moderate | Feature detail adjustment, interaction optimization, non-core logic change | Single feature module | Product manager approval |
| L3 Major | Core feature change, API interface change, database structure change | Multiple feature modules | Multi-role review |
| L4 Strategic | Architecture change, business model change, cross-system impact | Global or cross-system | Strategic-level review |

#### Classification Decision Tree

```
Change Request
    │
    ├─ Does it affect core business processes? ──Yes──→ L3
    │
    ├─ Does it change API interface contracts? ──Yes──→ L3
    │
    ├─ Does it affect data models? ──Yes──→ L3
    │
    ├─ Does it affect multiple feature modules? ──Yes──→ L2
    │
    └─ Other ──→ L1
```

#### Classification Output

```json
{
  "classification": {
    "level": "L3",
    "level_description": "Major change",
    "reasons": [
      "Core login process undergoes major change",
      "New WeChat authorization service dependency required"
    ],
    "confidence": 0.92
  }
}
```

### Step 2: Impact Propagation Analysis [Core]

#### 2.1 Functional Impact Analysis

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| Directly affected features | PRD feature points directly affected by the change |
| Indirectly affected features | Associated features affected by directly affected features |
| Features dependent on this feature | Whether upstream features are affected |

**Functional Impact Matrix**:

```json
{
  "functional_impact": {
    "directly_affected": [
      {"feature_id": "F001", "feature_name": "Phone number login", "impact_type": "modified"}
    ],
    "indirectly_affected": [
      {"feature_id": "F002", "feature_name": "User registration", "impact_type": "needs_regression"},
      {"feature_id": "F003", "feature_name": "Third-party binding", "impact_type": "needs_regression"}
    ],
    "dependent_features": [
      {"feature_id": "F004", "feature_name": "Order creation", "reason": "Depends on user login state"}
    ]
  }
}
```

#### 2.2 Technical Impact Analysis [Conditional]

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| Code change scope | Code files and functions that need modification |
| Database changes | Table structures and data migrations that need modification |
| API changes | New/modified/deprecated interfaces |
| Third-party dependencies | New/upgraded dependencies |

**Technical Impact Matrix**:

```json
{
  "technical_impact": {
    "code_changes": [
      {"file": "auth/login.ts", "change_type": "modify", "change_lines": 150}
    ],
    "database_changes": [
      {"table": "user_bindings", "change_type": "add_column", "column": "wechat_openid"}
    ],
    "api_changes": [
      {"endpoint": "/api/auth/wechat", "method": "POST", "change_type": "new"}
    ],
    "external_dependencies": [
      {"service": "WeChat Open Platform API", "change_type": "new", "risk": "medium"}
    ]
  }
}
```

#### 2.3 Test Impact Analysis [Conditional]

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| Features requiring regression testing | Test cases for affected features |
| New test cases needed | Tests for new features |
| Test environment requirements | Special environments needed for testing |

**Test Impact Matrix**:

```json
{
  "test_impact": {
    "regression_cases": [
      {"case_id": "TC001", "case_name": "Phone number login normal flow", "priority": "P0"},
      {"case_id": "TC002", "case_name": "Verification code error handling", "priority": "P1"}
    ],
    "new_cases_needed": [
      {"case_id": "TC_NEW_001", "case_name": "WeChat authorization login flow", "priority": "P0"},
      {"case_id": "TC_NEW_002", "case_name": "WeChat unbound handling", "priority": "P1"}
    ],
    "test_environment": {
      "needs_mock_wechat": true,
      "special_config": "WeChat sandbox environment"
    }
  }
}
```

#### 2.4 Operations Impact Analysis [Deep]

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| Operations configuration changes | Whether operations backend needs adjustment |
| Data tracking impact | Whether tracking and statistics are affected |
| Customer service script impact | Whether customer service knowledge base needs updating |

**Operations Impact Matrix**:

```json
{
  "operation_impact": {
    "config_changes": [],
    "data_tracking": [
      {"event": "wechat_login_success", "change_type": "new", "need_verify": true}
    ],
    "customer_service": [
      {"topic": "WeChat login issues", "update_needed": true, "priority": "medium"}
    ]
  }
}
```

### Step 3: Re-Review Necessity Judgment [Core]

#### Review Trigger Rules

**Decision Matrix**:

| Change Level | Involves Role Change | Involves Assumption Change | Re-Review Necessity |
|----------|--------------|----------|--------------|
| L4 | Any | Any | **Mandatory re-review** |
| L3 | Any | Yes | **Mandatory re-review** |
| L3 | Yes | No | **Mandatory re-review** |
| L3 | No | No | Suggested review |
| L2 | Yes | Yes | Suggested review |
| L2 | Other | - | Optional review |
| L1 | - | - | No review needed |

#### Review Role Identification

| Role | Trigger Condition |
|------|----------|
| Product Manager | Requirement change involves product features |
| Designer | UI/UX related changes |
| Backend Developer | API/data model changes |
| Frontend Developer | Interface/interaction changes |
| Test Lead | Any change |
| Operations | Operations related changes |

#### Re-Review Necessity Output

```json
{
  "review_decision": {
    "required": true,
    "level": "L3_mandatory_review",
    "review_scope": [
      {"role": "Product Manager", "reason": "Core feature change"},
      {"role": "Test Lead", "reason": "Expanded testing scope"}
    ],
    "review_content": [
      "WeChat login technical solution",
      "Compatibility with existing login flow",
      "Regression test plan"
    ],
    "review_deadline": "ISO8601"
  }
}
```

### Step 4: Version Linkage Analysis [Deep]

#### 4.1 PRD Version Update

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| PRD sections needing update | PRD sections involved in the change |
| Change type | Add/modify/delete |
| Update recommendations | Specific update content suggestions |

**PRD Version Update**:

```json
{
  "prd_version_update": {
    "current_version": "1.2.0",
    "new_version": "1.3.0",
    "update_type": "minor_version",
    "sections_to_update": [
      {"chapter": "3. Login Feature", "change_type": "modify", "suggestion": "Add WeChat login section"}
    ],
    "update_proposal": "See attached PRD update recommendations"
  }
}
```

#### 4.2 Code Version Planning

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| Target version | Version the change is planned for |
| Code branch strategy | How to organize code changes |
| Release cadence | Which Sprint to release with |

**Code Version Planning**:

```json
{
  "code_version_plan": {
    "target_release": "v2.1.0",
    "branch_strategy": "feature/wechat_login",
    "merge_target": "release/2.1.0",
    "sprint_plan": "Sprint 8",
    "code_freeze_date": "ISO8601"
  }
}
```

#### 4.3 Test Case Version Update

**Analysis Content**:

| Analysis Item | Output |
|--------|------|
| Test cases to add | For new features |
| Test cases to modify | For changed content |
| Test cases to delete | For deprecated features |

**Test Case Version Update**:

```json
{
  "test_case_version_update": {
    "cases_to_add": [
      {"case_id": "NEW_001", "case_name": "WeChat login success", "priority": "P0"}
    ],
    "cases_to_modify": [
      {"case_id": "TC_001", "case_name": "Login page UI", "change": "Add WeChat login entry"}
    ],
    "cases_to_delete": [],
    "estimated_test_effort_hours": 16
  }
}
```

## Output

**Storage Path**: `output/pm-design/change-impact-analysis/`

**Output File**: `change_impact_report.json`

**Output Schema**:

```json
{
  "type": "object",
  "required": ["output_id", "change_id", "classification", "impact_analysis", "review_needed"],
  "properties": {
    "output_id": {"type": "string", "description": "Output unique identifier"},
    "change_id": {"type": "string", "description": "Change request ID"},
    "generated_at": {"type": "string", "description": "Generation time"},
    "classification": {"type": "object", "description": "Change classification, including level and reasons"},
    "impact_analysis": {"type": "object", "description": "Impact analysis, including functional/technical/test/operations four dimensions"},
    "review_needed": {"type": "boolean", "description": "Whether re-review is needed"},
    "review_decision": {"type": "object", "description": "Review decision, including review scope and content"},
    "version_updates": {"type": "object", "description": "Version linkage update recommendations"},
    "summary": {"type": "object", "description": "Change impact summary, including impact scope and risk level"}
  }
}
```

### Final Output Structure

```json
{
  "output_id": "change_impact_report_xxx",
  "change_id": "CR_2024_001",
  "generated_at": "ISO8601",
  "classification": {
    "level": "L3",
    "level_description": "Major change",
    "reasons": [...]
  },
  "impact_analysis": {
    "functional": {...},
    "technical": {...},
    "test": {...},
    "operation": {...}
  },
  "review_needed": true,
  "review_decision": {...},
  "version_updates": {
    "prd": {...},
    "code": {...},
    "test_cases": {...}
  },
  "summary": {
    "impact_scope": "Multiple feature modules",
    "estimated_effort_days": 10,
    "risk_level": "medium"
  }
}
```

### Output Field Descriptions

| Field | Type | Description |
|------|------|------|
| classification | JSON | Change level and reasons |
| impact_analysis | JSON | Four-dimension impact analysis details |
| review_needed | boolean | Whether re-review is needed |
| review_decision | JSON | Review scope and content |
| version_updates | JSON | Version linkage update recommendations |

## Output Validation Rules

| Field Path | Type | Required | Description |
|----------|------|------|------|
| output_id | string | Yes | Output unique identifier |
| change_id | string | Yes | Change request ID, must match input change_id |
| generated_at | string | Yes | Generation time, ISO 8601 format |
| classification | object | Yes | Change classification |
| classification.level | string | Yes | Change level, enum: L1/L2/L3/L4 |
| classification.level_description | string | Yes | Level description |
| classification.reasons | array | Yes | Classification reason list, cannot be empty |
| classification.confidence | number | Yes | Classification confidence, range 0.0-1.0 |
| impact_analysis | object | Yes | Impact analysis |
| impact_analysis.functional | object | Yes | Functional impact analysis, containing directly_affected/indirectly_affected/dependent_features |
| impact_analysis.functional.directly_affected | array | Yes | Directly affected feature list, each item containing feature_id/feature_name/impact_type |
| impact_analysis.technical | object | Yes | Technical impact analysis, containing code_changes/database_changes/api_changes/external_dependencies |
| impact_analysis.technical.api_changes | array | Yes | API change list, each item containing endpoint/method/change_type |
| impact_analysis.test | object | Yes | Test impact analysis, containing regression_cases/new_cases_needed/test_environment |
| impact_analysis.operation | object | Yes | Operations impact analysis, containing config_changes/data_tracking/customer_service |
| review_needed | boolean | Yes | Whether re-review is needed |
| review_decision | object | No | Review decision (required when review_needed is true), containing level/review_scope/review_content/review_deadline |
| review_decision.level | string | No | Review level, enum: L1_optional/L2_suggested/L3_mandatory/L4_strategic |
| review_decision.review_scope | array | No | Review role list, each item containing role/reason |
| version_updates | object | No | Version linkage update recommendations, containing prd/code/test_cases |
| version_updates.prd | object | No | PRD version update recommendations, containing current_version/new_version/sections_to_update |
| version_updates.code | object | No | Code version planning, containing target_release/branch_strategy/sprint_plan |
| version_updates.test_cases | object | No | Test case version update, containing cases_to_add/cases_to_modify/cases_to_delete |
| summary | object | Yes | Change impact summary |
| summary.impact_scope | string | Yes | Impact scope description |
| summary.estimated_effort_days | number | Yes | Estimated impact person-days, must be ≥ 0 |
| summary.risk_level | string | Yes | Risk level, enum: low/medium/high/critical |

## Upstream Change Response

When upstream inputs change, this Skill's response strategy:

| Upstream Change | Impact Scope | Response Strategy |
|----------|----------|----------|
| PRD requirement change | Functional impact analysis, version linkage | Update functional impact matrix, re-evaluate change level and re-review necessity |
| API contract change | Technical impact analysis | Update API change list, re-evaluate technical impact scope |
| Backend architecture review result change | Technical impact analysis | Update technical impact assessment, re-evaluate architecture risk |
| Development progress change | Test impact analysis | Update regression testing scope, adjust version planning |

When change impact analysis results themselves change, downstream notification mechanism:

| Change Impact Analysis Change T

…

## Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [LuckyOneTwoThree](https://github.com/LuckyOneTwoThree)
- **Source:** [LuckyOneTwoThree/vibe-skill](https://github.com/LuckyOneTwoThree/vibe-skill)
- **License:** MIT
- **Homepage:** https://luckyonetwothree.github.io/all-skill-html/

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-luckyonetwothree-vibe-skill-change-impact-analysis
- Seller: https://agentstack.voostack.com/s/luckyonetwothree
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
