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.
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
| Platform | Status | Evidence | What to check |
|---|---|---|---|
| Codex | Not declared | No explicit evidence | Portability before use |
| Claude Code | Not declared | No explicit evidence | Portability before use |
| Cursor | Not declared | No explicit evidence | Portability before use |
| Gemini CLI | Not declared | No explicit evidence | Portability before use |
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.
npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/huntress/huntress/skills/agents"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
- 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 - 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 - 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. - 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
| Signal | Value | Evidence type | Meaning |
|---|---|---|---|
| Quality score | 93/100 | Computed | Documentation, specificity, maintenance, and trust rules |
| Repository stars | 42 | Source | Repository attention, not individual Skill quality |
| Compatibility | 0 platforms | Source | Declared in the catalog source record |
| Usage guide | automated source guide | Editorial | Generated 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-signalsand its confirmed threats arehuntress-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, ordomotz-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 organizationpage_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
- Call
huntress_agents_listto get all agents - Paginate through full result set
- Group by status (online/offline)
- Flag agents not seen in >24 hours as potentially unhealthy
- Group by organization to identify clients with agent issues
Organization Agent Audit
- Call
huntress_agents_listwithorganization_idfilter - Compare agent count against expected endpoint count
- Check for outdated agent versions
- Identify endpoints missing agents
Platform Inventory
- List all agents across organizations
- Group by platform (Windows, macOS, Linux)
- 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_atto 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
- api-patterns - Pagination and rate limiting
- organizations - Organization management
- incidents - Incidents affecting specific agents
- signals - Signals from specific agents
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
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
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.
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
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