Files
AIclinicalresearch/git-cleanup-redcap.ps1
HaHafeng 440f75255e feat(rvw): Complete Phase 4-5 - Bug fixes and Word export
Summary:
- Fix methodology score display issue in task list (show score instead of 'warn')
- Add methodology_score field to database schema
- Fix report display when only methodology agent is selected
- Implement Word document export using docx library
- Update documentation to v3.0/v3.1

Backend changes:
- Add methodologyScore to Prisma schema and TaskSummary type
- Update reviewWorker to save methodologyScore
- Update getTaskList to return methodologyScore

Frontend changes:
- Install docx and file-saver libraries
- Implement handleExportReport with Word generation
- Fix activeTab auto-selection based on available data
- Add proper imports for docx components

Documentation:
- Update RVW module status to 90% (Phase 1-5 complete)
- Update system status document to v3.0

Tested: All review workflows verified, Word export functional
2026-01-10 22:52:15 +08:00

32 lines
697 B
PowerShell

# Git cleanup script for REDCap source code folders
# Remove from Git tracking but keep local files
cd D:\MyCursor\AIclinicalresearch
Write-Host "Removing REDCap source folders from Git tracking..." -ForegroundColor Yellow
# Remove from Git cache (but keep local files)
git rm -r --cached redcap15.8.0 2>$null
git rm -r --cached redcap_external_module_framework_docs_main 2>$null
git rm -r --cached redcap_external_module_framework_docs_main/guanfangexternal-module-framework-docs-main 2>$null
Write-Host "Cleanup complete! Files removed from Git but preserved locally." -ForegroundColor Green
Write-Host ""
Write-Host "Next step: Run the commit command" -ForegroundColor Cyan