close-case-artifact
Close a case or alert with proper reason and documentation. Use when triage determines an alert is FP/BTP or investigation is complete. Requires artifact ID, type, closure reason, and root cause.
适合你,如果需要在安全运营中规范关闭告警或案件。
npx oh-my-skill add dandye/ai-runbooks/close-case-artifactcurl -fsSL https://oh-my-skill.com/install.sh | bash -s -- dandye/ai-runbooks/close-case-artifactnpx oh-my-skill verify dandye/ai-runbooks/close-case-artifact怎么用
商店整理自技能原文 · 版本 086cbf6 · 表述以原文为准装上后,Claude 可以帮你关闭安全案件或告警,需要提供案件/告警 ID、类型、关闭理由、根本原因和备注。关闭理由包括:恶意、非恶意、维护、不确定、未知。
当安全人员判断告警是误报或调查完成需要关闭案件时触发。需要用户提供案件 ID、关闭理由等信息。
技能原文 SKILL.md
Close Case Artifact Skill
Close a case or alert with the required reason, root cause, and justification comment.
Inputs
ARTIFACT_ID- The ID of the case or alert to closeARTIFACT_TYPE- Either "Case" or "Alert"CLOSURE_REASON- Must be one of:MALICIOUS- Confirmed threatNOT_MALICIOUS- False positive or benignMAINTENANCE- System/maintenance activityINCONCLUSIVE- Unable to determineUNKNOWN- Unknown/otherROOT_CAUSE- Must match a predefined root cause (useget_case_settings_root_causesto list options)CLOSURE_COMMENT- Detailed justification for closure- (Optional)
ALERT_GROUP_IDENTIFIERS- Alert group identifiers - (Optional, for alerts)
ASSIGN_TO_USER- User to assign closed alert to - (Optional, for alerts)
TAGS- Comma-separated tags
Workflow
Step 1: Execute Closure
For Cases:
secops-soar.siemplify_close_case(
case_id=ARTIFACT_ID,
reason=CLOSURE_REASON,
root_cause=ROOT_CAUSE,
comment=CLOSURE_COMMENT,
alert_group_identifiers=ALERT_GROUP_IDENTIFIERS
)
For Alerts:
secops-soar.siemplify_close_alert(
alert_id=ARTIFACT_ID,
reason=CLOSURE_REASON,
root_cause=ROOT_CAUSE,
comment=CLOSURE_COMMENT,
assign_to_user=ASSIGN_TO_USER,
tags=TAGS
)
Outputs
| Output | Description | |--------|-------------| | CLOSURE_STATUS | Success/failure status of the closure |
Common Closure Patterns
| Scenario | Reason | Typical Root Cause | |----------|--------|-------------------| | False Positive | NOT_MALICIOUS | "Legit action", "Normal behavior" | | Duplicate | NOT_MALICIOUS | "Similar case is already under investigation" | | Benign True Positive | NOT_MALICIOUS | "Legit action" | | Confirmed Threat (remediated) | MALICIOUS | Varies by threat type | | Unable to determine | INCONCLUSIVE | "Insufficient data" |
Get Valid Root Causes
If unsure of valid root cause values:
secops-soar.get_case_settings_root_causes()