Claude Skill

Blumira Agents

Blumira agents (sensors) and the devices they run on: device inventory and filtering, agent health via last-seen timestamps, and agent deployment keys.

LLM Mart · 0 points · 0 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download wyre-ai-msp-claude-plugins-msp-claude-plugins_blumira_blumira_skills_agents-147da75.zip · 1 KB
Part of wyre-ai/msp-claude-plugins — 48 skills

Install

skills CLI npx skills add https://github.com/WYRE-AI/msp-claude-plugins/tree/main/msp-claude-plugins/blumira/blumira/skills/agents
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install wyre-ai-msp-claude-plugins@llmmart
Git git clone https://github.com/WYRE-AI/msp-claude-plugins.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole wyre-ai/msp-claude-plugins collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

Blumira Agents & Devices

Overview

Blumira agents (sensors) are deployed on devices to collect log data and detect threats. This skill covers device inventory management, agent health monitoring, and agent key management for deployments.

Anti-triggers

  • Claude subagents — "agent" here is a Blumira log sensor, never an AI subagent definition under agents/*.md.
  • An EDR agent — a Blumira agent ships logs; it does not detect or remediate on the endpoint. Endpoint sensors are huntress-agents, sentinelone-inventory, or blackpoint-asset-inventory.
  • What the agent detected — telemetry becomes a finding; use blumira-findings.
  • Devices in another client account — these are /org/* calls; per-account device lists are blumira_msp_devices_list in blumira-msp.

Key Concepts

Devices

Devices represent endpoints, servers, or network appliances with Blumira agents installed. Each device record includes agent status, last seen time, OS information, and network details.

Agent Keys

Agent keys are deployment tokens used to register new agents with your Blumira organization. Keys can be scoped and rotated as needed.

API Patterns

List Devices

blumira_agents_devices_list
  page_size=50
  order_by=-last_seen

Filter examples:

blumira_agents_devices_list
  os.contains=Windows
  status.eq=active

Get Device Details

blumira_agents_devices_get
  device_id=<UUID>

List Agent Keys

blumira_agents_keys_list

Get Agent Key Details

blumira_agents_keys_get
  key_id=<UUID>

Common Workflows

Agent Health Check

  1. blumira_agents_devices_list with order_by=last_seen to find stale agents
  2. Identify devices that haven't checked in recently
  3. Cross-reference with user/admin to determine if device is offline or agent needs attention
  4. Document findings for remediation

Device Inventory Audit

  1. blumira_agents_devices_list with page_size=100 to enumerate all devices
  2. Page through results using pagination
  3. Group by OS, status, or location for reporting
  4. Identify gaps in coverage (known devices without agents)

Agent Deployment

  1. blumira_agents_keys_list to find available deployment keys
  2. Use key details to provision new agents
  3. After deployment, verify with blumira_agents_devices_list that the new device appears

Error Handling

Device Not Found

Cause: Invalid device ID or device not in current org scope Solution: Verify the device ID with blumira_agents_devices_list.

No Agent Keys Available

Cause: No keys have been created for the organization Solution: Agent keys must be created in the Blumira portal. The API is read-only for key management.

Best Practices

  • Monitor last_seen timestamps to catch offline agents early
  • Audit device inventory regularly against known asset lists
  • Rotate agent keys periodically for security
  • Use filtering to segment inventory by OS or status for targeted reporting
  • For MSP environments, use blumira_msp_devices_list to audit across accounts

Related Skills

  • API Patterns — Filtering and pagination
  • MSP — MSP device management across accounts
  • Users — Correlating devices with users
Files (msp-claude-plugins)
  • SKILL.md 3.7 KB
    ---
    name: "Blumira Agents"
    description: >
      Blumira agents (sensors) and the devices they run on: device inventory and
      filtering, agent health via last-seen timestamps, and agent deployment keys.
    when_to_use: >-
      When inventorying Blumira devices, checking agent health, or working with agent
      deployment keys. Use when: blumira agent, blumira device, agent
      key, device inventory, agent health, or sensor status.
    ---
    
    # Blumira Agents & Devices
    
    ## Overview
    
    Blumira agents (sensors) are deployed on devices to collect log data and detect threats. This skill covers device inventory management, agent health monitoring, and agent key management for deployments.
    
    ## Anti-triggers
    
    - **Claude subagents** — "agent" here is a Blumira log sensor, never an
      AI subagent definition under `agents/*.md`.
    - **An EDR agent** — a Blumira agent ships logs; it does not detect or
      remediate on the endpoint. Endpoint sensors are `huntress-agents`,
      `sentinelone-inventory`, or `blackpoint-asset-inventory`.
    - **What the agent detected** — telemetry becomes a finding; use
      `blumira-findings`.
    - **Devices in another client account** — these are `/org/*` calls;
      per-account device lists are `blumira_msp_devices_list` in
      `blumira-msp`.
    
    ## Key Concepts
    
    ### Devices
    
    Devices represent endpoints, servers, or network appliances with Blumira agents installed. Each device record includes agent status, last seen time, OS information, and network details.
    
    ### Agent Keys
    
    Agent keys are deployment tokens used to register new agents with your Blumira organization. Keys can be scoped and rotated as needed.
    
    ## API Patterns
    
    ### List Devices
    
    ```
    blumira_agents_devices_list
      page_size=50
      order_by=-last_seen
    ```
    
    Filter examples:
    ```
    blumira_agents_devices_list
      os.contains=Windows
      status.eq=active
    ```
    
    ### Get Device Details
    
    ```
    blumira_agents_devices_get
      device_id=<UUID>
    ```
    
    ### List Agent Keys
    
    ```
    blumira_agents_keys_list
    ```
    
    ### Get Agent Key Details
    
    ```
    blumira_agents_keys_get
      key_id=<UUID>
    ```
    
    ## Common Workflows
    
    ### Agent Health Check
    
    1. `blumira_agents_devices_list` with `order_by=last_seen` to find stale agents
    2. Identify devices that haven't checked in recently
    3. Cross-reference with user/admin to determine if device is offline or agent needs attention
    4. Document findings for remediation
    
    ### Device Inventory Audit
    
    1. `blumira_agents_devices_list` with `page_size=100` to enumerate all devices
    2. Page through results using pagination
    3. Group by OS, status, or location for reporting
    4. Identify gaps in coverage (known devices without agents)
    
    ### Agent Deployment
    
    1. `blumira_agents_keys_list` to find available deployment keys
    2. Use key details to provision new agents
    3. After deployment, verify with `blumira_agents_devices_list` that the new device appears
    
    ## Error Handling
    
    ### Device Not Found
    
    **Cause:** Invalid device ID or device not in current org scope
    **Solution:** Verify the device ID with `blumira_agents_devices_list`.
    
    ### No Agent Keys Available
    
    **Cause:** No keys have been created for the organization
    **Solution:** Agent keys must be created in the Blumira portal. The API is read-only for key management.
    
    ## Best Practices
    
    - Monitor `last_seen` timestamps to catch offline agents early
    - Audit device inventory regularly against known asset lists
    - Rotate agent keys periodically for security
    - Use filtering to segment inventory by OS or status for targeted reporting
    - For MSP environments, use `blumira_msp_devices_list` to audit across accounts
    
    ## Related Skills
    
    - [API Patterns](../api-patterns/SKILL.md) — Filtering and pagination
    - [MSP](../msp/SKILL.md) — MSP device management across accounts
    - [Users](../users/SKILL.md) — Correlating devices with users
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related