用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dandye/adk_runbooks --skill report-writing-guidelines命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when evaluating threat detection opportunities (TDOs), generating synthetic UDM events, evaluating Chronicle rule coverage, and drafting YARA-L 2.0 rules.
Use when hunting for advanced persistent threat (APT) actor activity, tools, and infrastructure.
Use when hunting for lateral movement via PsExec, WMI, remote scheduled tasks, or WinRM.
正在显示 SKILL.md
| name | report-writing-guidelines |
| description | Use when structuring, formatting, and refining professional cybersecurity incident reports. |
| category | reporting |
| version | 1.0.0 |
| type | Skill |
| title | Skill: Report Writing Guidelines & Template |
| generated | {"by":"process:google-labs-jules","at":"2026-08-20T02:00:00Z"} |
To provide general guidelines and a basic template structure for writing consistent and informative security reports generated from runbook executions or ad-hoc investigations.
These guidelines apply to various report types (e.g., investigation summaries, threat hunt reports, triage reports) generated within this security environment. Specific content requirements may vary based on the report type (refer to rules-bank/reporting_templates.md).
${FINDINGS}: The synthesized data, analysis, and conclusions from the investigation/hunt.${RUNBOOK_NAME}: The name of the runbook used (if applicable).${CASE_ID}: Relevant SOAR Case ID(s).${MERMAID_DIAGRAM}: The Mermaid sequence diagram illustrating the workflow performed.write_report: To save the final report.${FINDINGS})rules-bank/reporting_templates.md for specific section requirements based on report type.**Runbook Used:** ${RUNBOOK_NAME} (If applicable)${CASE_ID}${MERMAID_DIAGRAM}.${FinalReportContent}.write_report with report_name="<report_type>_<report_name_suffix>_${CASE_ID}_${timestamp}.md" and report_contents=${FinalReportContent}. (Ensure variables like ${CASE_ID} and ${timestamp} are resolved before the call).Reports should include which agents called which MCP tools
**Agent Workflow Diagram:**
```mermaid
sequenceDiagram
participant User
participant Manager
participant Tier2 as soc_analyst_tier2
participant SOAR
User->>Manager: research soar case 2396 and then write a report on what you find
Manager->>Tier2: research soar case 2396 and then write a report on what you find
Tier2->>SOAR: get_case_full_details(case_id="2396")
SOAR-->>Tier2: Case Details
Tier2->>Manager: Report on SOAR Case 2396 with Recommendations
Manager->>User: Report on SOAR Case 2396 with Recommendations
User->>Manager: update the report to include a mermaid sequence diagram for which agents called which mcp tools
...
Report is written, reviewed, and saved in the standard format and location.