Skip to content
Development
Skill

/cases

Abnormal Security abuse mailbox cases: user-reported email submissions, case statuses and judgments, the case lifecycle, bulk and remediation actions, and phishing simulation handling.

From plugin
msp-claude-plugins
46200 skills146 agents200 commands4 MCP
Install
$ npx -y skills add wyre-technology/msp-claude-plugins --skill cases --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/cases

Context preview

The summary Claude sees to decide when to auto-load this skill.

Abnormal Security abuse mailbox cases: user-reported email submissions, case statuses and judgments, the case lifecycle, bulk and remediation actions, and phishing simulation handling.

SKILL.md

cases.SKILL.md
name: "Abnormal Security Cases"
description: >
  Abnormal Security abuse mailbox cases: user-reported email submissions,
  case statuses and judgments, the case lifecycle, bulk and remediation
  actions, and phishing simulation handling.
when_to_use: >-
  When triaging or remediating user-reported suspicious emails in the
  Abnormal Security abuse mailbox. Use when: abnormal case, abuse mailbox,
  user reported email, reported phishing, case triage, case review, abnormal
  cases, abuse case management, phishing report, user submission, case
  remediation, or case judgment.

Abnormal Security Abuse Mailbox Cases

Overview

Abnormal Security's Abuse Mailbox automatically processes user-reported suspicious emails. When users forward or report emails to a designated abuse mailbox address, Abnormal analyzes the reported message and creates a case with an AI-generated judgment. This skill covers case lifecycle, triage workflows, remediation actions, and bulk operations.

Anti-triggers

  • **A compromised mailbox rather than a reported email** — sign-in

anomalies, new inbox rules, and session revocation have no surface on this server at all; investigate identity in the M365 tenant, use `cipp-users`.

  • **Threats Abnormal found on its own** — no user reported them, so no

case exists; use `Abnormal Security Threats`.

  • **User-reported phishing in a different platform** — IRONSCALES runs

its own report-to-incident loop from its Outlook and Gmail add-ins, with separate IDs and its own classification verbs; use `IRONSCALES Incidents`.

  • **A user who reported a simulated phish** — campaign reporting rates

belong to the training platform; use `KnowBe4 Phishing`.

Case Lifecycle

User Reports Email
       |
       v
  Case Created (status: Open)
       |
       v
  AI Analysis (judgment generated)
       |
       +---> Malicious   ---> Auto-Remediate (if configured)
       |
       +---> Suspicious  ---> Analyst Review Required
       |
       +---> Spam         ---> Auto-Dismiss (if configured)
       |
       +---> Safe         ---> Auto-Dismiss (if configured)
       |
       v
  Analyst Action
       |
       +---> Remediate (quarantine/delete across org)
       |
       +---> Mark Not Spam (release to inbox)
       |
       +---> Dismiss (close case, no action)
       |
       v
  Case Closed (status: Done)

Case Field Reference

Core Fields

| Field | Type | Description | |-------|------|-------------| | `caseId` | number | Unique case identifier — numeric, unlike `threatId` | | `severity` | string | Severity level of the case | | `affectedEmployee` | string | Email address of the user who reported | | `firstReported` | datetime | When the case was first reported |

Judgment Fields

| Field | Type | Description | |-------|------|-------------| | `overallStatus` | string | Case status: Open, Acknowledged, Done | | `judgmentStatus` | string | AI judgment: Malicious, Spam, Safe, No Action Needed | | `customerVisibleTime` | datetime | When the case became visible in portal |

Reported Message Fields

| Field | Type | Description | |-------|------|-------------| | `reportedMessage.subject` | string | Subject of the reported email | | `reportedMessage.senderAddress` | string | Sender of the reported email | | `reportedMessage.senderName` | string | Display name of the sender | | `reportedMessage.recipientAddress` | string | Recipient of the reported email | | `reportedMessage.receivedTime` | datetime | When the reported email was received | | `reportedMessage.attackType` | string | Detected attack type (if malicious) |

Case Judgments

| Judgment | Description | Recommended Action | |----------|-------------|-------------------| | **Malicious** | Confirmed threat (BEC, phishing, malware) | Remediate across organization | | **Spam** | Unsolicited bulk email, marketing | Dismiss or move to junk | | **Safe** | Legitimate email, no threat detected | Dismiss, notify user it is safe | | **No Action Needed** | Phishing simulation or already remediated | Dismiss |

MCP Tools

**The cases domain is read-only.** Two tools, both GETs. There is no tool that changes a case's state, assigns it to an analyst, dismisses it, or closes it. Case state changes happen in the Abnormal portal, not through this server — an agent can read and reason about a case, then it has to hand the actual disposition to a human in the UI.

| Tool | Description | Parameters | |------|-------------|------------| | `abnormal_cases_list` | List cases | `pageSize` (default 100, max 100), `pageNumber` (1-indexed), `filter` (OData string) | | `abnormal_cases_get` | Get one case by ID | `caseId` (required, **number**) |

There is no date-range parameter. Narrow by time through the OData `filter` string: `createdTime gt 2026-03-01T00:00:00Z`.

ID vocabulary

`caseId` is a **number** — `12345`, not `"12345"`. The neighbouring `threatId` used by `abnormal_threats_get` is a **UUID string**. Both are called "the ID" in conversation and they are not interchangeable; a threat UUID passed to `abnormal_cases_get` is a type error, not a lookup miss.

The one action this server *can* take on the mail behind a case is message remediation, and it is reached through the threat, not the case: `abnormal_remediation_manage` needs a `threatId` and a `messageId`, and a `caseId` is neither.

Tool Usage Examples

**List cases from this month:**

{
  "tool": "abnormal_cases_list",
  "parameters": {
    "filter": "createdTime gt 2026-03-01T00:00:00Z",
    "pageSize": 25
  }
}

**Get case details:**

{
  "tool": "abnormal_cases_get",
  "parameters": {
    "caseId": 12345
  }
}

Triage Workflows

Standard Triage Workflow

1. **List open cases** - Get all cases with `overallStatus eq 'Open'` 2. **Sort by severity** - Address critical and high severity first 3. **Review AI judgment:**

  • If Malicious: verify and remediate across organization
  • If Spam: dismiss or move to
Read more
Ships withmsp-claude-plugins

One command to supercharge Claude Code for MSP workflows. Then restart Claude Code. That's it. Documentation: mcp.wyre.ai

Get the whole plugin

Other skills on msp-claude-plugins.