generated from Paul.Kim/tpl-superclaude
46 lines
2.3 KiB
Markdown
46 lines
2.3 KiB
Markdown
---
|
|
allowed-tools: [Read, Write, Glob]
|
|
description: Compares two different MRD versions (sessions) and generates a strategic change report.
|
|
---
|
|
|
|
# Compare MRD Versions
|
|
|
|
## Context
|
|
- **User Request:** $ARGUMENTS
|
|
- **Base Session:** Identified by the `--base` argument (name or index).
|
|
- **Compare Session:** Identified by the `--compare` argument (name or index).
|
|
- **Final MRD Documents:** The `market-requirements-document_*.md` file from each of the two specified session directories.
|
|
|
|
## Goal
|
|
To provide a clear, actionable comparison report that highlights the strategic evolution between two different MRD versions. This helps stakeholders quickly understand changes in market perception, target audience, competitive landscape, and overall strategy over time.
|
|
|
|
## Process
|
|
1. **Identify Target Sessions:**
|
|
- Locate the directories for the base and compare sessions using the provided arguments.
|
|
|
|
2. **Read Final MRD Documents:**
|
|
- From each session directory, read the final `market-requirements-document_*.md` file.
|
|
|
|
3. **Perform Comparative Analysis:**
|
|
- Systematically compare the two documents, section by section.
|
|
- Identify and extract key differences, such as:
|
|
- Changes in target market or user personas.
|
|
- Shifts in the competitive landscape.
|
|
- Updates to key performance indicators (KPIs) or success metrics.
|
|
- Evolution of core product requirements.
|
|
- Modifications in pricing or business model assumptions.
|
|
|
|
4. **Generate Comparison Report:**
|
|
- Create a new Markdown file named `mrd_comparison_report_[base]_vs_[compare].md`.
|
|
- Structure the report to clearly present the side-by-side comparison and a summary of the most significant strategic changes.
|
|
|
|
5. **Notify User with Key Insights:**
|
|
- Inform the user that the comparison report has been generated and provide the file path.
|
|
- Present a high-level summary of the most critical findings.
|
|
- Example: "The comparison is complete. The most significant change is the shift in target market from SMBs to Enterprise customers. You can find the detailed report at..."
|
|
|
|
## Example Usage
|
|
- **Compare two sessions by name:**
|
|
`/planning/mrd/4-compare-mrd-versions --base="mvp-launch" --compare="enterprise-expansion"`
|
|
- **Compare by index:**
|
|
`/planning/mrd/4-compare-mrd-versions --base="1" --compare="2"` |