From domotz
Manages Domotz network operations: triggers scans, lists SNMP data and open ports, runs speed tests, supports topology discovery via API calls.
How this skill is triggered — by the user, by Claude, or both
Slash command
/domotz:networkThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Domotz provides comprehensive network monitoring capabilities through its agents. This includes network device discovery, SNMP polling for hardware metrics, TCP port monitoring, speed tests for bandwidth measurement, and network topology mapping.
Domotz provides comprehensive network monitoring capabilities through its agents. This includes network device discovery, SNMP polling for hardware metrics, TCP port monitoring, speed tests for bandwidth measurement, and network topology mapping.
Domotz agents periodically scan local network subnets to discover devices. Scans can also be triggered on demand. Discovery uses:
Domotz polls SNMP-enabled devices for operational metrics:
TCP port monitoring checks whether specific services are reachable:
Agents can run bandwidth speed tests to measure:
domotz_scan_network
Parameters:
agent_id -- The agent to run the scan from (required)domotz_list_snmp_data
Parameters:
agent_id -- The agent ID (required)device_id -- The device to get SNMP data for (required)Example response:
[
{
"oid": "1.3.6.1.2.1.2.2.1.10.1",
"label": "ifInOctets (GigabitEthernet0/1)",
"value": "1234567890",
"type": "Counter32",
"last_polled": "2026-03-27T15:00:00Z"
}
]
domotz_list_ports
Parameters:
agent_id -- The agent ID (required)device_id -- The device to check ports for (required)Example response:
[
{
"port": 443,
"protocol": "tcp",
"status": "open",
"service": "https",
"last_checked": "2026-03-27T15:00:00Z"
}
]
domotz_run_speed_test
Parameters:
agent_id -- The agent to run the speed test from (required)Example response:
{
"download_speed": 245.6,
"upload_speed": 48.2,
"latency": 12.4,
"timestamp": "2026-03-27T15:05:00Z"
}
domotz_scan_network to trigger a fresh scandomotz_list_devices to see all discovered devicesdomotz_list_snmp_data for network devicesifInOctets and ifOutOctets countersdomotz_list_ports for a server deviceopencloseddomotz_run_speed_test from the site's agentCause: Agent is busy, offline, or network is very large Solution: Check agent status; wait and retry; reduce scan scope
Cause: Device does not support SNMP, wrong community string, or SNMP not configured Solution: Verify SNMP is enabled on the device; check community string configuration
Cause: Firewall blocking the scan, device offline, or service not running Solution: Verify device is online; check firewall rules; verify service is running
npx claudepluginhub wyre-technology/msp-claude-plugins --plugin domotzLists Domotz network devices, searches by name/IP/MAC, checks status, views details, and supports network topology understanding for inventory management.
Configures and manages Atera device monitors using HTTP, SNMP, and TCP protocols for network devices, services, and applications. Covers types, fields, thresholds, and MSP best practices.
Performs professional network reconnaissance and port scanning using nmap with a two-phase strategy (fast SYN scan then targeted service detection). Supports scan types, NSE scripts, and organized output.