Source profileQuality 94/100

WYRE-AI/msp-claude-plugins/msp-claude-plugins/blumira/blumira/skills/resolutions/SKILL.md

Blumira Resolutions

Blumira resolution types (Valid, Not Applicable, False Positive): how to choose between them, their effect on security metrics and detection tuning, and the org- and MSP-level resolve calls.

Source repository stars
42
Declared platforms
0
Static risk flags
0
Last source update
2026-08-28
Source checked
2026-08-28

Decision brief

What it does: where it fits

Blumira resolution types (Valid, Not Applicable, False Positive): how to choose between them, their effect on security metrics and detection tuning, and the org- and MSP-level resolve calls.

Best for

    Not for

    • Tasks that require unconfirmed production actions or broad system permissions.
    • Environments where the pinned source and install steps cannot be inspected.

    Compatibility matrix

    Platform support, with evidence labels

    PlatformStatusEvidenceWhat to check
    CodexNot declaredNo explicit evidencePortability before use
    Claude CodeNot declaredNo explicit evidencePortability before use
    CursorNot declaredNo explicit evidencePortability before use
    Gemini CLINot declaredNo explicit evidencePortability before use
    Open the compatibility checker

    Installation

    Inspect first. Install second.

    The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

    Source-detected install commandSource
    npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/blumira/blumira/skills/resolutions"
    Safe inspection promptEditorial

    Inspect the Agent Skill "Blumira Resolutions" from https://github.com/WYRE-AI/msp-claude-plugins/blob/5005f73ba2f52cd299f58aa6bb79f4e70ae87103/msp-claude-plugins/blumira/blumira/skills/resolutions/SKILL.md at commit 5005f73ba2f52cd299f58aa6bb79f4e70ae87103. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

    Workflow

    What the source asks the agent to do

    1. 01

      Anti-triggers

      Triaging, investigating, assigning, or commenting — this skill

      Triaging, investigating, assigning, or commenting — this skillblumiraresolutionslist — that tool enumerates the resolutionHuntress remediation approve/reject — superficially similar
    2. 02

      Key Concepts

      Valid resolutions count toward your confirmed threat statistics

      Valid resolutions count toward your confirmed threat statisticsFalse Positive resolutions feed back into detection tuning — high FP rates indicate rules that need adjustmentNot Applicable resolutions help identify rules to disable for specific environments
    3. 03

      Resolution Types

      Review the “Resolution Types” section in the pinned source before continuing.

      Review and apply the “Resolution Types” source section.
    4. 04

      Impact on Metrics

      Valid resolutions count toward your confirmed threat statistics

      Valid resolutions count toward your confirmed threat statisticsFalse Positive resolutions feed back into detection tuning — high FP rates indicate rules that need adjustmentNot Applicable resolutions help identify rules to disable for specific environments

    Permission review

    Static risk signals and limitations

    No configured static risk pattern was detected

    This is not proof of safety. Runtime behavior, indirect dependencies, and hidden external systems are outside the static scan.

    Evidence record

    Why each signal appears

    EvidenceSourceComputedTestedEditorial
    SignalValueEvidence typeMeaning
    Quality score94/100ComputedDocumentation, specificity, maintenance, and trust rules
    Repository stars42SourceRepository attention, not individual Skill quality
    Compatibility0 platformsSourceDeclared in the catalog source record
    Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

    Pinned source

    Provenance and original SKILL.md

    Repository
    WYRE-AI/msp-claude-plugins
    Skill path
    msp-claude-plugins/blumira/blumira/skills/resolutions/SKILL.md
    Commit
    5005f73ba2f52cd299f58aa6bb79f4e70ae87103
    License
    Apache-2.0
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    Blumira Resolutions

    Overview

    Resolutions are the final disposition applied to findings when closing them. Choosing the correct resolution type is critical for accurate security metrics, detection tuning, and compliance reporting.

    Anti-triggers

    • Triaging, investigating, assigning, or commenting — this skill covers only the disposition decision at close. The rest of the lifecycle is blumira-findings (or blumira-msp for a client account).
    • blumira_resolutions_list — that tool enumerates the resolution catalogue and is unrelated to remediation actions; Blumira cannot isolate, block, or kill anything.
    • Huntress remediation approve/reject — superficially similar close-out language, entirely different mechanics (Huntress acts on the endpoint). Use huntress-incidents.

    Key Concepts

    Resolution Types

    CodeLabelDescriptionWhen to Use
    10ValidConfirmed real threatThe finding represents a genuine security event. Action was taken (blocked, remediated, etc.)
    20Not ApplicableDoesn't applyThe detection is correct but irrelevant to this environment (e.g., policy doesn't apply to test lab)
    30False PositiveIncorrect detectionThe detection fired incorrectly — the activity was benign

    Impact on Metrics

    • Valid resolutions count toward your confirmed threat statistics
    • False Positive resolutions feed back into detection tuning — high FP rates indicate rules that need adjustment
    • Not Applicable resolutions help identify rules to disable for specific environments

    API Patterns

    List Available Resolutions

    blumira_resolutions_list
    

    Returns all resolution types with their codes, labels, and descriptions.

    Resolve a Finding

    blumira_findings_resolve
      finding_id=<UUID>
      resolution_type=10
      notes="Confirmed credential stuffing attack from IP 203.0.113.50. Account locked, password reset forced."
    

    MSP Finding Resolution

    blumira_msp_findings_resolve
      account_id=<UUID>
      finding_id=<UUID>
      resolution_type=30
      notes="False positive - scheduled backup job triggers this detection. Added to allowlist."
    

    Common Workflows

    Choosing the Right Resolution

    1. Is the detected activity real?

      • Yes → Was it malicious or a policy violation? → Valid (10)
      • Yes → But it's expected/allowed in this environment → Not Applicable (20)
      • No → The detection was wrong → False Positive (30)
    2. Always include detailed notes explaining the decision

    3. For False Positives, note what the activity actually was to help with tuning

    Bulk Resolution of False Positives

    1. blumira_findings_list filtered by the specific detection rule
    2. Review a sample to confirm all are false positives
    3. Resolve each with resolution type 30 and consistent notes
    4. Consider requesting a rule tuning in the Blumira portal

    Error Handling

    Invalid Resolution Type

    Cause: Resolution code is not 10, 20, or 30 Solution: Use blumira_resolutions_list to confirm valid codes.

    Missing Notes

    Cause: Some resolution workflows may require notes Solution: Always provide descriptive notes for audit trail purposes.

    Best Practices

    • Track false positive rates by detection rule to identify tuning opportunities
    • Use "Not Applicable" instead of "False Positive" when the detection is correct but the policy doesn't apply
    • Review resolution statistics regularly to improve detection quality
    • For MSP accounts, maintain consistent resolution standards across tenants

    Related Skills

    • Findings — Finding lifecycle and resolution workflow
    • MSP — Cross-account resolution management

    Frequently asked questions

    What to verify before installation and use

    What does the Blumira Resolutions source document cover?

    Blumira resolution types (Valid, Not Applicable, False Positive): how to choose between them, their effect on security metrics and detection tuning, and the org- and MSP-level resolve calls.

    How do I install Blumira Resolutions?

    The source record exposes this install command: npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/blumira/blumira/skills/resolutions". Inspect the command and pinned source before running it.

    Alternatives

    Compare before choosing

    Computed 10045,960

    coreyhaines31/marketingskills

    ab-testing

    When the user wants to plan, design, or implement an A/B test or experiment, or build a growth experimentation program. Also use when the user mentions "A/B test," "split test," "experiment," "test this change," "variant copy," "multivariate test," "hypothesis," "should I test this," "which version is better," "test two versions," "statistical significance," "how long should I run this test," "growth experiments," "experiment velocity," "experiment backlog," "ICE score," "experimentation program

    Computed 10029,236

    garrytan/gbrain

    bulk-ingestion

    End-to-end discipline for turning any large data source (audio libraries, email takeouts, document corpora, chat exports, API dumps) into brain pages at scale. The lifecycle spine: SCHEMA → ACCESS → TRIAL → EVALUATE → IMPROVE → CODIFY → TEST → SKILLIFY → BULK → MONITOR. State is tracked in a durable JSON manifest (see MANIFEST-PATTERN.md) so any crash, session boundary, or subagent fan-out resumes from ground truth instead of memory.

    Computed 10025,136

    alirezarezvani/claude-skills

    app-store-optimization

    App Store Optimization (ASO) toolkit for researching keywords, analyzing competitor rankings, generating metadata suggestions, and improving app visibility on Apple App Store and Google Play Store. Use when the user asks about ASO, app store rankings, app metadata, app titles and descriptions, app store listings, app visibility, or mobile app marketing on iOS or Android. Supports keyword research and scoring, competitor keyword analysis, metadata optimization, A/B test planning, launch checklist

    Computed 1005,277

    dotnet/skills

    migrate-vstest-to-mtp

    Migrates .NET test projects from VSTest to Microsoft.Testing.Platform (MTP). Use when user asks to "migrate to MTP", "switch from VSTest", "enable Microsoft.Testing.Platform", "use MTP runner", set OutputType=Exe only for test projects in Directory.Build.props, or mentions EnableMSTestRunner, EnableNUnitRunner, or UseMicrosoftTestingPlatformRunner. USE FOR: MTP behavioral differences vs VSTest (exit code 8, zero tests discovered, --ignore-exit-code, TESTINGPLATFORM_EXITCODE_IGNORE); centralizing