Source profileQuality 93/100

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

Huntress Agents

Huntress endpoint agents: the agent lifecycle, organization and platform filters, health signals such as `last_seen_at` and version, fleet-audit workflows, and the errors returned for missing or empty agent results.

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 endpoint agents: the agent lifecycle, organization and platform filters, health signals such as `last_seen_at` and version, fleet-audit workflows, and the errors returned for missing or empty agent results.

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/agents"
    Safe inspection promptEditorial

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

      Claude subagents — "agent" here means a Huntress endpoint sensor,

      Claude subagents — "agent" here means a Huntress endpoint sensor,What an agent detected — this skill covers the sensor's own healthSeat counts for invoicing — deployed-agent counts and invoiced
    2. 02

      Key Concepts

      Agents are installed on endpoints and report back to the Huntress platform. Each agent belongs to an organization and has a status indicating its health and connectivity.

      Organization — Scope to a specific clientPlatform — Filter by OS (Windows, macOS, Linux)Status — Online, offline, or degraded
    3. 03

      Agent Lifecycle

      Agents are installed on endpoints and report back to the Huntress platform. Each agent belongs to an organization and has a status indicating its health and connectivity.

      Agents are installed on endpoints and report back to the Huntress platform. Each agent belongs to an organization and has a status indicating its health and connectivity.
    4. 04

      Agent Filtering

      Agents can be filtered by: - Organization — Scope to a specific client - Platform — Filter by OS (Windows, macOS, Linux) - Status — Online, offline, or degraded

      Organization — Scope to a specific clientPlatform — Filter by OS (Windows, macOS, Linux)Status — Online, offline, or degraded

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

    Huntress Agents

    Overview

    Huntress agents are lightweight endpoint monitors deployed across MSP client organizations. They collect telemetry and enable Huntress's managed detection and response capabilities. This skill covers listing, filtering, and inspecting agents across your managed fleet.

    Anti-triggers

    • Claude subagents — "agent" here means a Huntress endpoint sensor, never an AI subagent definition under agents/*.md.
    • What an agent detected — this skill covers the sensor's own health and deployment state; its detections are huntress-signals and its confirmed threats are huntress-incidents.
    • Seat counts for invoicing — deployed-agent counts and invoiced seats diverge; use huntress-billing.
    • An "agent" that is not an endpoint sensor — a HaloPSA agent is a human technician, and other security and network vendors ship their own sensors under the same word; use halopsa-agents, blumira-agents, or domotz-agents.

    Key Concepts

    Agent Lifecycle

    Agents are installed on endpoints and report back to the Huntress platform. Each agent belongs to an organization and has a status indicating its health and connectivity.

    Agent Filtering

    Agents can be filtered by:

    • Organization — Scope to a specific client
    • Platform — Filter by OS (Windows, macOS, Linux)
    • Status — Online, offline, or degraded

    API Patterns

    List Agents

    huntress_agents_list
    

    Parameters:

    • organization_id — Filter by organization
    • page_token — Pagination token for next page

    Example response:

    {
      "agents": [
        {
          "id": "agent-123",
          "hostname": "ACME-WS-042",
          "organization_id": "org-456",
          "platform": "windows",
          "version": "0.13.25",
          "status": "online",
          "last_seen_at": "2026-02-26T15:30:00Z"
        }
      ],
      "next_page_token": "eyJwYWdlIjoyfQ=="
    }
    

    Get Agent Details

    huntress_agents_get
    

    Parameters:

    • agent_id — The specific agent ID

    Example response:

    {
      "agent": {
        "id": "agent-123",
        "hostname": "ACME-WS-042",
        "organization_id": "org-456",
        "platform": "windows",
        "version": "0.13.25",
        "status": "online",
        "ip_address": "192.168.1.42",
        "external_ip": "203.0.113.50",
        "os_version": "Windows 11 23H2",
        "last_seen_at": "2026-02-26T15:30:00Z",
        "created_at": "2025-06-15T10:00:00Z"
      }
    }
    

    Common Workflows

    Fleet Health Check

    1. Call huntress_agents_list to get all agents
    2. Paginate through full result set
    3. Group by status (online/offline)
    4. Flag agents not seen in >24 hours as potentially unhealthy
    5. Group by organization to identify clients with agent issues

    Organization Agent Audit

    1. Call huntress_agents_list with organization_id filter
    2. Compare agent count against expected endpoint count
    3. Check for outdated agent versions
    4. Identify endpoints missing agents

    Platform Inventory

    1. List all agents across organizations
    2. Group by platform (Windows, macOS, Linux)
    3. Generate platform distribution report per client

    Error Handling

    Agent Not Found

    Cause: Invalid agent ID or agent has been uninstalled Solution: Verify the agent ID; check if the endpoint was decommissioned

    Empty Agent List

    Cause: Organization has no agents deployed, or filter is too restrictive Solution: Verify organization ID; try listing without filters first

    Best Practices

    • Paginate through all results for accurate fleet counts
    • Monitor last_seen_at to detect offline agents early
    • Track agent version distribution to plan upgrades
    • Use organization filtering to generate per-client reports
    • Cross-reference agent counts with RMM tool endpoint counts

    Related Skills

    Frequently asked questions

    What to verify before installation and use

    What does the Huntress Agents source document cover?

    Huntress endpoint agents: the agent lifecycle, organization and platform filters, health signals such as `last_seen_at` and version, fleet-audit workflows, and the errors returned for missing or empty agent results.

    How do I install Huntress Agents?

    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/agents". 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