WYRE-AI/msp-claude-plugins/msp-claude-plugins/domotz/domotz/skills/agents/SKILL.md
Domotz Agents
Domotz agents (collectors/probes) as the per-site entry point for all device and network operations: agent types, lifecycle, ONLINE/OFFLINE status, the list/get tools and their license and last-seen fields, and fleet health, site inventory, and capacity-planning workflows.
- 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
Domotz agents (collectors/probes) as the per-site entry point for all device and network operations: agent types, lifecycle, ONLINE/OFFLINE status, the list/get tools and their license and last-seen fields, and fleet health, site inventory, and capacity-planning workflows.
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/domotz/domotz/skills/agents"Inspect the Agent Skill "Domotz Agents" from https://github.com/WYRE-AI/msp-claude-plugins/blob/5005f73ba2f52cd299f58aa6bb79f4e70ae87103/msp-claude-plugins/domotz/domotz/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 is a site collector appliance,
Claude subagents — "agent" here is a site collector appliance,Software installed on a workstation or server — Domotz agents areWhat the collector found — this skill covers the collector's own - 02
Key Concepts
Agents are deployed at customer sites and maintain a persistent connection to the Domotz cloud. Each agent: - Discovers and monitors devices on local networks - Runs its own scan cycle on a schedule it controls — this integration cannot trigger one - Polls SNMP metrics from devi…
Software Agent - Installed on a VM or physical machine at the siteDomotz Box - Dedicated hardware applianceVirtual Appliance - Pre-configured VM image - 03
Agent Types
Software Agent - Installed on a VM or physical machine at the site
Software Agent - Installed on a VM or physical machine at the siteDomotz Box - Dedicated hardware applianceVirtual Appliance - Pre-configured VM image - 04
Agent Lifecycle
Agents are deployed at customer sites and maintain a persistent connection to the Domotz cloud. Each agent: - Discovers and monitors devices on local networks - Runs its own scan cycle on a schedule it controls — this integration cannot trigger one - Polls SNMP metrics from devi…
Discovers and monitors devices on local networksRuns its own scan cycle on a schedule it controls — this integrationPolls SNMP metrics from devices that support it - 05
Agent Status
Review the “Agent Status” section in the pinned source before continuing.
Review and apply the “Agent Status” source section.
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 | 96/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/domotz/domotz/skills/agents/SKILL.md
- Commit
- 5005f73ba2f52cd299f58aa6bb79f4e70ae87103
- License
- Apache-2.0
- Collected
- 2026-08-28
- Default branch
- main
View the original SKILL.md
Domotz Agents
Overview
Domotz agents (also called collectors or probes) are software or hardware appliances deployed at customer sites that perform network discovery, device monitoring, and data collection. Each agent represents a monitored site/location and is the entry point for all device and network operations.
Anti-triggers
- Claude subagents — "agent" here is a site collector appliance,
never an AI subagent definition under
agents/*.md. - Software installed on a workstation or server — Domotz agents are
one per site, not one per endpoint. RMM endpoint agents are
ateraorncentral; the Huntress endpoint sensor ishuntress-agents. - What the collector found — this skill covers the collector's own
health, licensing, and connectivity; the devices it discovered are
domotz-devices.
Key Concepts
Agent Types
- Software Agent - Installed on a VM or physical machine at the site
- Domotz Box - Dedicated hardware appliance
- Virtual Appliance - Pre-configured VM image
Agent Lifecycle
Agents are deployed at customer sites and maintain a persistent connection to the Domotz cloud. Each agent:
- Discovers and monitors devices on local networks
- Runs its own scan cycle on a schedule it controls — this integration cannot trigger one
- Polls SNMP metrics from devices that support it
- Evaluates the alert profiles bound to its devices
Agent Status
| Status | Meaning |
|---|---|
ONLINE | Agent is connected and reporting |
OFFLINE | Agent is not connected to the cloud |
Tools
| Tool | Description | Arguments |
|---|---|---|
domotz_agents_list | Every agent on the account, with status, IP, and location | (none) |
domotz_agents_get | Detail for one collector | agent_id |
These two are the only account-wide entry point. Every other Domotz tool
requires an agent_id, so a fleet answer always starts here and then
fans out one call per agent.
Do not confuse domotz_status with agent status: domotz_status reports
whether the MCP server can reach Domotz at all. A collector's own state
is the status field on these two tools.
List Agents
domotz_agents_list
Returns all agents associated with your account. Takes no arguments.
Example response:
[
{
"id": 12345,
"display_name": "Acme Corp - Main Office",
"status": {
"value": "ONLINE"
},
"license": {
"bound_devices": 47
},
"location": {
"latitude": 40.7128,
"longitude": -74.0060
},
"last_seen": "2026-03-27T15:30:00Z"
}
]
Get Agent Details
domotz_agents_get
Parameters:
agent_id-- The specific agent ID (required, number)
Example response:
{
"id": 12345,
"display_name": "Acme Corp - Main Office",
"status": {
"value": "ONLINE"
},
"license": {
"bound_devices": 47,
"allowed_devices": 100
},
"access_right": {
"api_enabled": true
},
"creation_time": "2025-01-15T10:00:00Z",
"last_seen": "2026-03-27T15:30:00Z"
}
Common Workflows
Fleet Health Check
- Call
domotz_agents_listto get all agents - Group by status (ONLINE/OFFLINE)
- Flag agents not seen in >1 hour as potentially unhealthy
- Check
license.bound_devicesvslicense.allowed_devicesfor capacity
This is the check that gates every other Domotz report. An offline collector keeps serving its last-known device and metric data, so any downstream read from that site is stale in a way the payload does not advertise. Do it first, not last.
Site Inventory
- Call
domotz_agents_listto get all sites - For each agent, note
display_name, status, and bound device count - Build a summary table of all monitored sites
Agent Capacity Planning
- List all agents
- Compare
bound_devicestoallowed_devicesfor each - Flag agents approaching their device limit
- Recommend license upgrades where needed
Error Handling
Agent Not Found
Cause: Invalid agent ID or agent has been deleted Solution: Verify the agent ID; check if the site was decommissioned
Agent Offline
Cause: Network connectivity issue, agent service stopped, or hardware failure Solution: Check site connectivity; verify agent service is running; contact site contact
Empty Agent List
Cause: No agents deployed or API key has limited scope Solution: Verify API key permissions; check Domotz Portal for agent list
Best Practices
- Check agent status before trusting anything downstream of it
- Monitor
last_seentimestamps to detect offline agents early - Track
bound_devicesvsallowed_devicesfor license planning - Use
display_nameconsistently with client site names in your PSA - Cross-reference agent sites with RMM site structures
- Set up alerts for agent offline events in the Domotz portal — this integration reads alert configuration but cannot create it
domotz_agents_getreturns site location coordinates and licence counts; treat it as customer data, not just an operational read
Related Skills
- api-patterns - Authentication, tool catalog, error codes
- devices - Devices monitored by agents
- alerts - Alert profile coverage
- network - Topology, IP conflicts, and SNMP metrics
- power - PDU outlet control
Frequently asked questions
What to verify before installation and use
What does the Domotz Agents source document cover?
Domotz agents (collectors/probes) as the per-site entry point for all device and network operations: agent types, lifecycle, ONLINE/OFFLINE status, the list/get tools and their license and last-seen fields, and fleet health, site inventory, and capacity-planning workflows.
How do I install Domotz Agents?
The source record exposes this install command: npx skills add https://github.com/WYRE-AI/msp-claude-plugins --skill "msp-claude-plugins/domotz/domotz/skills/agents". Inspect the command and pinned source before running it.
Alternatives
Compare before choosing
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
wanshuiyin/Auto-claude-code-research-in-sleep
citation-audit
Use it for operations and research tasks; the detail page covers purpose, installation, and practical steps.
prowler-cloud/prowler
postgresql-indexing
PostgreSQL indexing best practices for Prowler: index design, partial indexes, partitioned table indexing, EXPLAIN ANALYZE validation, concurrent operations, monitoring, and maintenance. Trigger: When creating or modifying PostgreSQL indexes, analyzing query performance with EXPLAIN, debugging slow queries, reviewing index usage statistics, reindexing, dropping indexes, or working with partitioned table indexes. Also trigger when discussing index strategies, partial indexes, or index maintenance