用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/dandye/adk_runbooks --skill document-in-soar命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
| name | document-in-soar |
| description | Use when adding case comments, tags, or status updates to document actions in SOAR. |
| category | common |
| version | 1.0.0 |
| type | Skill |
| title | Skill: Common Step: Document Findings/Actions in SOAR Case |
| generated | {"by":"human:dandye","at":"2025-11-10T22:21:35.000Z"} |
Add a standardized comment to a specified SOAR case to document findings, actions taken, or recommendations.
This sub-runbook executes the post_case_comment action in the SOAR platform. It assumes the comment content is provided by the calling runbook.
${CASE_ID}: The SOAR case ID to add the comment to.${COMMENT_TEXT}: The full text of the comment to be added.${ALERT_GROUP_IDENTIFIERS}: Relevant alert group identifiers if required by the specific SOAR tool implementation, passed from the calling runbook.${COMMENT_POST_STATUS}: Confirmation or status of the comment posting attempt (e.g., Success, Failure, API response).secops-soar: post_case_comment${CASE_ID}, ${COMMENT_TEXT}, and optionally ${ALERT_GROUP_IDENTIFIERS} from the calling runbook.soar-mcp_post_case_comment with case_id=${CASE_ID} and comment=${COMMENT_TEXT} (and alert_group_identifiers if needed).${COMMENT_POST_STATUS} and return it to the calling runbook.sequenceDiagram
participant CallingRunbook
participant DocumentInSOAR as document_in_soar.md (This Runbook)
participant SOAR as secops-soar
CallingRunbook->>DocumentInSOAR: Execute Documentation\nInput: CASE_ID, COMMENT_TEXT, ALERT_GROUP_IDS (opt)
%% Step 2: Post Comment
DocumentInSOAR->>SOAR: post_case_comment(case_id=CASE_ID, comment=COMMENT_TEXT, ...)
SOAR-->>DocumentInSOAR: Comment Post Result (COMMENT_POST_STATUS)
%% Step 3: Return Status
DocumentInSOAR-->>CallingRunbook: Return Status:\nCOMMENT_POST_STATUS
The post_case_comment action has been attempted. The status (${COMMENT_POST_STATUS}) is available.