Agent skill
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.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/close-case-artifact
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/other
ROOT_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()
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?