docs: 초기 파일 추가 및 기본 설정 구성
- .git-commit-template.txt: 커밋 메시지 템플릿 추가 - .gitignore: OS 및 데이터베이스 관련 파일 무시 설정 추가 - .mcp.json: MCP 서버 설정 추가 - CLAUDE.md: SuperClaude 엔트리 포인트 문서 추가 - README.md: 프로젝트 템플릿 설명 추가 - .claude/COMMANDS.md: 명령어 실행 프레임워크 문서 추가 - .claude/FLAGS.md: 플래그 시스템 문서 추가 - .claude/MCP.md: MCP 서버 통합 문서 추가 - .claude/MODES.md: 운영 모드 문서 추가 - .claude/ORCHESTRATOR.md: 지능형 라우팅 시스템 문서 추가 - .claude/PERSONAS.md: 페르소나 시스템 문서 추가 - .claude/PRINCIPLES.md: 핵심 원칙 문서 추가 - .claude/RULES.md: 실행 가능한 규칙 문서 추가 - .claude/settings.json: 권한 설정 추가 - .claude/commands 디렉토리: 다양한 명령어 문서 추가 - .taskmaster/config.json: 기본 설정 파일 추가 - .taskmaster/docs 디렉토리: 문서 파일 추가 - .taskmaster/tasks/tasks.json: 기본 작업 파일 추가
This commit is contained in:
46
.claude/commands/planning/1-mrd/4-compare-mrd-versions.md
Normal file
46
.claude/commands/planning/1-mrd/4-compare-mrd-versions.md
Normal file
@ -0,0 +1,46 @@
|
||||
---
|
||||
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"`
|
||||
Reference in New Issue
Block a user