Source profileQuality 91/100

WYRE-AI/msp-claude-plugins/msp-claude-plugins/huntress/huntress/skills/signals/SKILL.md

Huntress Signals

Huntress security signals: how signals differ from incidents, the signal types, listing and filtering by organization, and the threat-hunting and pattern-analysis workflows built on signal data.

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

Huntress security signals: how signals differ from incidents, the signal types, listing and filtering by organization, and the threat-hunting and pattern-analysis workflows built on signal data.

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/huntress/huntress/skills/signals"
    Safe inspection promptEditorial

    Inspect the Agent Skill "Huntress Signals" from https://github.com/WYRE-AI/msp-claude-plugins/blob/5005f73ba2f52cd299f58aa6bb79f4e70ae87103/msp-claude-plugins/huntress/huntress/skills/signals/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

      Anything requiring action or remediation — signals are read-only

      Anything requiring action or remediation — signals are read-onlyReal-time alerting — signal queries are point-in-time; Huntress- Anything requiring action or remediation — signals are read-only telemetry with no remediation lifecycle; once the SOC confirms one it becomes an incident, so use huntress-incidents. - Real-time alerting — signal quer…
    2. 02

      Key Concepts

      Signals cover various detection categories including: - Suspicious process execution - Persistence mechanism changes - Network connection anomalies - File system modifications - Registry changes

      Signals are raw detections from endpoint agentsIncidents are confirmed threats escalated by the Huntress SOCMany signals are benign or informational; only confirmed threats become incidents
    3. 03

      Signals vs Incidents

      Signals are raw detections from endpoint agents

      Signals are raw detections from endpoint agentsIncidents are confirmed threats escalated by the Huntress SOCMany signals are benign or informational; only confirmed threats become incidents
    4. 04

      Signal Types

      Signals cover various detection categories including: - Suspicious process execution - Persistence mechanism changes - Network connection anomalies - File system modifications - Registry changes

      Suspicious process executionPersistence mechanism changesNetwork connection anomalies

    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 score91/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/huntress/huntress/skills/signals/SKILL.md
    Commit
    5005f73ba2f52cd299f58aa6bb79f4e70ae87103
    License
    Apache-2.0
    Collected
    2026-08-28
    Default branch
    main
    View the original SKILL.md

    Huntress Signals

    Overview

    Signals are security-relevant events detected by Huntress agents on managed endpoints. Not all signals become incidents — they represent the raw detection layer that feeds into Huntress SOC analysis. Monitoring signals provides visibility into the threat landscape before incidents are formally created.

    Anti-triggers

    • Anything requiring action or remediation — signals are read-only telemetry with no remediation lifecycle; once the SOC confirms one it becomes an incident, so use huntress-incidents.
    • Real-time alerting — signal queries are point-in-time; Huntress webhooks carry the push feed.

    Key Concepts

    Signals vs Incidents

    • Signals are raw detections from endpoint agents
    • Incidents are confirmed threats escalated by the Huntress SOC
    • Many signals are benign or informational; only confirmed threats become incidents
    • Reviewing signals provides early warning and proactive threat hunting context

    Signal Types

    Signals cover various detection categories including:

    • Suspicious process execution
    • Persistence mechanism changes
    • Network connection anomalies
    • File system modifications
    • Registry changes

    API Patterns

    List Signals

    huntress_signals_list
    

    Parameters:

    • organization_id — Filter by organization
    • page_token — Pagination token

    Example response:

    {
      "signals": [
        {
          "id": "sig-555",
          "type": "suspicious_process",
          "description": "PowerShell execution with encoded command",
          "organization_id": "org-456",
          "hostname": "ACME-WS-042",
          "severity": "medium",
          "created_at": "2026-02-26T14:00:00Z"
        }
      ],
      "next_page_token": "eyJwYWdlIjoyfQ=="
    }
    

    Get Signal Details

    huntress_signals_get
    

    Parameters:

    • signal_id — The signal ID

    Example response:

    {
      "signal": {
        "id": "sig-555",
        "type": "suspicious_process",
        "description": "PowerShell execution with encoded command",
        "organization_id": "org-456",
        "hostname": "ACME-WS-042",
        "severity": "medium",
        "created_at": "2026-02-26T14:00:00Z",
        "details": {
          "process_name": "powershell.exe",
          "command_line": "powershell.exe -EncodedCommand ...",
          "parent_process": "cmd.exe",
          "user": "ACME\\jsmith"
        }
      }
    }
    

    Common Workflows

    Proactive Signal Monitoring

    1. List recent signals with huntress_signals_list
    2. Filter by organization for client-specific views
    3. Review signal types and severity distribution
    4. Investigate unusual patterns or high-severity signals
    5. Correlate with known incidents

    Signal Investigation

    1. Get signal details with huntress_signals_get
    2. Review process chain and command details
    3. Check if related incidents exist
    4. Assess whether the signal indicates a genuine threat
    5. If concerning, check for related signals on the same host

    Threat Pattern Analysis

    1. List signals across all organizations
    2. Group by type and severity
    3. Identify trending signal types
    4. Detect patterns that may indicate widespread attacks
    5. Proactively alert affected clients

    Error Handling

    Signal Not Found

    Cause: Invalid signal ID or signal has been archived Solution: List signals to verify available IDs

    Large Result Sets

    Cause: Unfiltered signal queries return many results Solution: Use organization filters and pagination; signals are high-volume

    Best Practices

    • Use signals for proactive threat hunting, not just reactive incident response
    • Filter by organization to manage volume
    • Correlate signals with incidents for complete threat context
    • Monitor signal trends to detect emerging threats early
    • Don't treat every signal as an incident — trust the Huntress SOC triage process
    • Use signal data in client security reports for added value

    Related Skills

    Frequently asked questions

    What to verify before installation and use

    What does the Huntress Signals source document cover?

    Huntress security signals: how signals differ from incidents, the signal types, listing and filtering by organization, and the threat-hunting and pattern-analysis workflows built on signal data.

    How do I install Huntress Signals?

    The source record exposes this install command: npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/huntress/huntress/skills/signals". 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 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 100147

    equinor/neqsim

    neqsim-professional-reporting

    Engineering deliverable quality — the nine analytical-depth moves (contributor ranking, adjudicating the source document, quantitative rule-outs, robustness crossover, conservatism direction, discriminating test), results.json schema, figure→discussion→linked_results traceability, evidence matrices, assumptions/gaps registers, citation conventions, KaTeX math formatting, units consistency, executive-summary structure, AACE class declaration. USE WHEN: producing a task report, a PEPR/M1/root-caus

    Computed 100133

    JasonColapietro/suede-creator-skills

    suede-ab-testing

    Suede-owned experimentation discipline for hypotheses, sample sizing, test duration, significance, and repeatable experiment programs. Use when comparing variants, deciding whether a result is reliable, or building an experiment backlog and cadence. NOT FOR: analytics instrumentation (use suede-analytics), post-click conversion diagnosis (use suede-site-alchemy), or writing the variant copy itself (use suede-copy).