From rocketcyber
Manages RocketCyber endpoint agents (RocketAgent) including deployment, communication status monitoring, health checks, and troubleshooting for SOC threat detection telemetry.
How this skill is triggered — by the user, by Claude, or both
Slash command
/rocketcyber:agentsWhen to use
When working with deployment, communication status, health monitoring, and troubleshooting in RocketCyber agents (RocketAgent). Use when: rocketcyber agent, rocketagent, rocketcyber endpoint, rocketcyber deployment, agent offline rocketcyber, agent health rocketcyber, rocketcyber online, endpoint protection rocketcyber, or rocketcyber install agent.
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
RocketAgent is the endpoint agent deployed by RocketCyber to customer workstations and servers. It provides the telemetry pipeline for threat detection -- collecting event data, monitoring processes, and reporting back to the RocketCyber SOC platform. Agent health directly impacts the MSP's security coverage.
RocketAgent is the endpoint agent deployed by RocketCyber to customer workstations and servers. It provides the telemetry pipeline for threat detection -- collecting event data, monitoring processes, and reporting back to the RocketCyber SOC platform. Agent health directly impacts the MSP's security coverage.
Key agent functions:
┌──────────────┐ Deploy ┌────────────┐ Checks In ┌──────────┐
│ Unmanaged │ ──────────> │ Installed │ ─────────────> │ Online │
│ Endpoint │ │ (Pending) │ │ │
└──────────────┘ └────────────┘ └──────────┘
│
Communication │ Lost
▼
┌──────────┐
│ Offline │
└──────────┘
| Status | Description | Action |
|---|---|---|
| Online | Agent is communicating normally with the RocketCyber cloud | No action needed |
| Offline | Agent has not communicated within the expected interval | Investigate connectivity, service status |
RocketAgent supports multiple platforms (verify against current documentation):
| Platform | Description |
|---|---|
| Windows | Primary platform -- workstations and servers |
| macOS | Mac endpoint support |
| Linux | Server monitoring (verify availability) |
| Field | Type | Description |
|---|---|---|
id | integer | Unique agent identifier |
hostname | string | Endpoint hostname |
accountId | integer | Customer account the agent belongs to |
accountName | string | Customer account name (verify against API docs) |
platform | string | Operating system platform (Windows, macOS, Linux) |
osVersion | string | OS version details (verify against API docs) |
status | string | Communication status: Online, Offline |
lastSeen | datetime | Last successful communication timestamp |
agentVersion | string | Installed RocketAgent version (verify against API docs) |
ipAddress | string | Last known IP address (verify against API docs) |
installedAt | datetime | When the agent was first installed (verify against API docs) |
Note: Field names are inferred from the Celerium PowerShell wrapper. Verify exact field names against RocketCyber API responses.
# All agents across all accounts
curl -s "https://api-${ROCKETCYBER_REGION:-us}.rocketcyber.com/v3/agents" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"
Response (verify against API docs):
{
"data": [
{
"id": 5001,
"hostname": "WORKSTATION-01",
"accountId": 12345,
"platform": "Windows",
"status": "Online",
"lastSeen": "2026-02-23T10:15:00Z",
"agentVersion": "3.2.1"
}
],
"totalCount": 350,
"page": 1,
"limit": 50
}
# Agents for a specific customer
curl -s "https://api-us.rocketcyber.com/v3/agents?accountId=12345" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"
# Single agent with full details
curl -s "https://api-us.rocketcyber.com/v3/agents/5001" \
-H "Authorization: Bearer ${ROCKETCYBER_API_KEY}"
Response (verify against API docs):
{
"id": 5001,
"hostname": "WORKSTATION-01",
"accountId": 12345,
"accountName": "Acme Corporation",
"platform": "Windows",
"osVersion": "Windows 11 Pro 23H2",
"status": "Online",
"lastSeen": "2026-02-23T10:15:00Z",
"agentVersion": "3.2.1",
"ipAddress": "192.168.1.50",
"installedAt": "2025-06-15T09:00:00Z"
}
When an agent shows as Offline:
Get-Service -Name "RocketAgent" | Select-Object Status, StartType
*.rocketcyber.comagentVersion| Scenario | HTTP Code | Resolution |
|---|---|---|
| Invalid API key | 401 | Verify key in Provider Settings > API |
| Agent not found | 404 | Verify agent ID; agent may have been removed |
| Account has no agents | 200 (empty) | Agents not yet deployed to this customer |
| Rate limited | 429 | Back off 30 seconds, retry |
No agents found for account ID 12345.
This could mean:
- Agents have not been deployed to this customer
- The account ID is incorrect (verify with /accounts endpoint)
- Agents were recently removed
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin rocketcyberLists, filters, and inspects Huntress endpoint agents. Check agent health, status, and details across organizations.
Manages Blumira agents, devices, and agent deployment keys including listing devices, checking agent health, and auditing device inventory.
Manages Atera RMM agents: list, search, monitor, and execute PowerShell commands on managed endpoints. Useful for MSP technicians handling agent status, device info, and agent lifecycle.