From 2ecd960a541940ab40a1348f898b45ee7cd5d13b Mon Sep 17 00:00:00 2001 From: posimai Date: Tue, 21 Apr 2026 18:11:02 +0900 Subject: [PATCH] =?UTF-8?q?fix(pc-audit):=20AI=20=E3=83=97=E3=83=AD?= =?UTF-8?q?=E3=83=B3=E3=83=97=E3=83=88=E3=82=92=E8=87=AA=E5=BE=8B=E5=AE=9F?= =?UTF-8?q?=E8=A1=8C=E3=83=BB=E8=A6=81=E7=A2=BA=E8=AA=8D=E3=81=AE=E4=BD=BF?= =?UTF-8?q?=E3=81=84=E5=88=86=E3=81=91=E6=96=B9=E9=87=9D=E3=81=AB=E6=9B=B8?= =?UTF-8?q?=E3=81=8D=E6=8F=9B=E3=81=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- tools/pc-audit/report-viewer.html | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/tools/pc-audit/report-viewer.html b/tools/pc-audit/report-viewer.html index e63432f8..46015fdf 100644 --- a/tools/pc-audit/report-viewer.html +++ b/tools/pc-audit/report-viewer.html @@ -684,7 +684,15 @@ var lines = []; lines.push("以下は PC 監査ツール(Posimai PC Audit)の実行結果です。"); - lines.push("各チェック項目について、Windows での具体的な対処手順をコマンドや設定画面の操作手順を含めて教えてください。"); + lines.push("各チェック項目への対応をお願いします。"); + lines.push(""); + lines.push("## 対応方針"); + lines.push("- PowerShell コマンドや設定変更など、AI が自律的に実行・提案できる対応はそのまま進めてください。"); + lines.push("- 以下に該当する場合は、実行前に必ず私に確認してください:"); + lines.push(" - システム全体に影響する変更(UAC 設定変更・ユーザー権限変更など)"); + lines.push(" - 元に戻しにくい操作(ファイル削除・レジストリ変更など)"); + lines.push(" - 私の環境や業務の判断が必要なもの(「このソフトは必要か?」など)"); + lines.push(" - リスクや副作用が不明確なもの"); lines.push(""); lines.push("## PC 情報"); lines.push("- PC 名: " + (m.Name || "不明")); @@ -705,13 +713,13 @@ lines.push(""); lines.push("### " + (idx + 1) + ". " + tag + " " + (item.Title || "")); if (item.Body) lines.push((item.Body || "").replace(/\n/g, " ")); - if (item.ActionJa) lines.push("推奨対処: " + item.ActionJa); + if (item.ActionJa) lines.push("推奨対処のヒント: " + item.ActionJa); }); } lines.push(""); lines.push("---"); - lines.push("それぞれについて Windows での具体的な対処手順(PowerShell コマンドや設定画面の操作など)を教えてください。"); + lines.push("各項目について対応方針を示した上で、自律実行できるものはそのまま進め、判断が必要なものは確認を入れてください。"); return lines.join("\n"); }