jpskill.com
📄 ドキュメント コミュニティ

security-report

セキュリティ監査や脆弱性診断の結果を、リスク評価や改善策とともにWord形式の報告書として作成し、セキュリティに関する課題を明確にするSkill。

📜 元の英語説明(参考)

Generate security assessment reports in docx format with findings, risk ratings, and remediation recommendations. Use when: User asks for security audit report, vulnerability assessment document, penetration test report, or compliance gap analysis document. Keywords: security report, audit findings, vulnerability report, pentest report

🇯🇵 日本人クリエイター向け解説

一言でいうと

セキュリティ監査や脆弱性診断の結果を、リスク評価や改善策とともにWord形式の報告書として作成し、セキュリティに関する課題を明確にするSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o security-report.zip https://jpskill.com/download/17663.zip && unzip -o security-report.zip && rm security-report.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/17663.zip -OutFile "$d\security-report.zip"; Expand-Archive "$d\security-report.zip" -DestinationPath $d -Force; ri "$d\security-report.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して security-report.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → security-report フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

セキュリティレポートジェネレーター

クイックスタート

from docx import Document
from docx.shared import Pt, Inches, RGBColor
from docx.enum.text import WD_ALIGN_PARAGRAPH

doc = Document()
doc.add_heading('Security Assessment Report', 0)

コアワークフロー

  1. 標準セクションを含むドキュメントを作成します(以下の構造を参照)。
  2. リスク評価の色を適用します(Critical=赤、High=オレンジ、Medium=黄、Low=緑)。
  3. 重大度でソートされた調査結果テーブルを生成します。
  4. 修正タイムラインを追加します。
  5. /mnt/user-data/outputs/ に保存します。

ドキュメント構造

1. Executive Summary (最大1ページ)
2. Scope & Methodology
3. Risk Summary (テーブル + チャート)
4. Detailed Findings (重大度でソート)
   - Finding ID
   - Title
   - Severity + CVSS
   - Description
   - Evidence
   - Remediation
   - References
5. Remediation Roadmap
6. Appendices

重要な注意点

  • Table borders: 各セルの境界線を明示的に設定する必要があります。テーブルレベルの設定はありません。
  • Color codes: 16進文字列ではなく、RGBColor(r,g,b) を使用してください。
  • Page breaks: 主要なセクションの前に doc.add_page_break() を使用して追加してください。

リスク評価の色

RISK_COLORS = {
    'Critical': RGBColor(192, 0, 0),    # Dark red
    'High': RGBColor(255, 102, 0),      # Orange  
    'Medium': RGBColor(255, 192, 0),    # Yellow
    'Low': RGBColor(0, 176, 80),        # Green
    'Info': RGBColor(91, 155, 213)      # Blue
}

高度な機能

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Security Report Generator

Quick Start

from docx import Document
from docx.shared import Pt, Inches, RGBColor
from docx.enum.text import WD_ALIGN_PARAGRAPH

doc = Document()
doc.add_heading('Security Assessment Report', 0)

Core Workflow

  1. Create document with standard sections (see structure below)
  2. Apply risk rating colors (Critical=red, High=orange, Medium=yellow, Low=green)
  3. Generate findings table with severity sorting
  4. Add remediation timeline
  5. Save to /mnt/user-data/outputs/

Document Structure

1. Executive Summary (1 page max)
2. Scope & Methodology
3. Risk Summary (table + chart)
4. Detailed Findings (sorted by severity)
   - Finding ID
   - Title
   - Severity + CVSS
   - Description
   - Evidence
   - Remediation
   - References
5. Remediation Roadmap
6. Appendices

Critical Gotchas

  • Table borders: Must set each cell border explicitly, no table-level setting
  • Color codes: Use RGBColor(r,g,b), not hex strings
  • Page breaks: Add before major sections with doc.add_page_break()

Risk Rating Colors

RISK_COLORS = {
    'Critical': RGBColor(192, 0, 0),    # Dark red
    'High': RGBColor(255, 102, 0),      # Orange  
    'Medium': RGBColor(255, 192, 0),    # Yellow
    'Low': RGBColor(0, 176, 80),        # Green
    'Info': RGBColor(91, 155, 213)      # Blue
}

Advanced Features