?? ?? ??? ?? ??? ??? ???? DOCX ???? ?? ??? ?? ??? ??

?? ??
- ?? ?? ?? critic/repair ?? ?? ??? ??? DOCX/XLSX/HTML/PPT ??? ? ???? ?? ???? ????? ??
- ??? ????? DOCX ?? ??? ? ????? ????? ?? ??? ?? ??? ??

?? ????
- ArtifactQualityReviewService? DOCX ?? ??? cover, ??, ???, header/footer ?? ??? ???? XLSX dashboard workbook? highlight/action, detail navigation, trend/variance formula ?? ??? ??
- ArtifactRepairGuideService? ? ?? ??? ?? ?? ???? ??? ??? ???? HTML/DOCX/XLSX ??? ???? ? ???
- DeckRepairGuideService? appendix/evidence ??? duplicate headline ??? ?? ???? ??? deck ?? ???? ??
- DocxSkill? Repair guide? ??? ?? ????? ???? Executive Summary/Recommendation/Appendix ?? ??? ?? ???? ??
- ArtifactQualityReviewServiceTests, ArtifactRepairGuideServiceTests, DeckRepairGuideServiceTests, DocxSkillTemplateFeaturesTests? ??? ??? ??
- README.md? docs/DEVELOPMENT.md? 2026-04-15 09:05 (KST) ?? ??? ?? ??? ??

?? ??
- dotnet build src/AxCopilot/AxCopilot.csproj -c Release -v minimal -p:OutputPath=bin\\verify_doc_repair_finalize\\ -p:IntermediateOutputPath=obj\\verify_doc_repair_finalize\\ : ?? 0 / ?? 0
- dotnet test src/AxCopilot.Tests/AxCopilot.Tests.csproj -c Release -v minimal --filter "ArtifactQualityReviewServiceTests|ArtifactRepairGuideServiceTests|DeckRepairGuideServiceTests|DocxSkillTemplateFeaturesTests" -p:OutputPath=bin\\verify_doc_repair_finalize_tests\\ -p:IntermediateOutputPath=obj\\verify_doc_repair_finalize_tests\\ : ?? 11
This commit is contained in:
2026-04-15 08:48:04 +09:00
parent 6b3e5e6797
commit 918d62b8d5
10 changed files with 122 additions and 4 deletions

View File

@@ -38,6 +38,8 @@ public static class ArtifactRepairGuideService
return "Add a decision summary and evidence cards near the recommendation section";
if (message.Contains("cover page", StringComparison.OrdinalIgnoreCase))
return "Add a cover page for print-ready or board-facing reports";
if (message.Contains("table of contents", StringComparison.OrdinalIgnoreCase))
return "Add a table of contents for longer print-ready reports";
if (message.Contains("comparison or roadmap", StringComparison.OrdinalIgnoreCase))
return "Add comparison or roadmap blocks to make options and sequencing explicit";
if (message.Contains("supporting paragraphs", StringComparison.OrdinalIgnoreCase))
@@ -55,6 +57,12 @@ public static class ArtifactRepairGuideService
return "Add a dashboard sheet with KPI tiles, trends, and links to detail sheets";
if (message.Contains("Summary sheet could better surface", StringComparison.OrdinalIgnoreCase))
return "Promote KPIs, decisions, and highlights into the summary or dashboard sheet";
if (message.Contains("Dashboard sheet could better call out highlights or actions", StringComparison.OrdinalIgnoreCase))
return "Add highlight and action callout blocks to the dashboard sheet";
if (message.Contains("Dashboard sheet should link", StringComparison.OrdinalIgnoreCase))
return "Add hyperlinks from the dashboard to each supporting detail sheet";
if (message.Contains("trend or variance formulas", StringComparison.OrdinalIgnoreCase))
return "Add trend, variance, or rollup formulas so the dashboard summarizes detail sheets";
if (message.Contains("data validation", StringComparison.OrdinalIgnoreCase))
return "Add data validation rules for editable status, owner, or category columns";
if (message.Contains("Conditional formatting", StringComparison.OrdinalIgnoreCase))
@@ -68,6 +76,14 @@ public static class ArtifactRepairGuideService
private static string? BuildDocumentAction(string message)
{
if (message.Contains("cover page", StringComparison.OrdinalIgnoreCase))
return "Add a cover page with subtitle, owner, and review context for the document";
if (message.Contains("table of contents", StringComparison.OrdinalIgnoreCase))
return "Add a table of contents so longer readers can navigate the document quickly";
if (message.Contains("Template-based styling", StringComparison.OrdinalIgnoreCase))
return "Apply a document template or style map to keep headings and body copy consistent";
if (message.Contains("Header or footer", StringComparison.OrdinalIgnoreCase))
return "Add header and footer metadata such as document name, confidentiality, or page numbers";
if (message.Contains("Executive Summary", StringComparison.OrdinalIgnoreCase))
return "Add an Executive Summary section at the start of the document";
if (message.Contains("Recommendation", StringComparison.OrdinalIgnoreCase))