Install
openclaw skills install fingQuery and troubleshoot Fing Local API monitoring agents for local network device inventory, presence, online/offline state, people/presence where supported,...
openclaw skills install fingUse this skill for read-only Fing local monitoring data. Prefer summaries because device lists reveal private network inventory.
Use the bundled helper:
python3 skills/fing/scripts/fing_helper.py --help
Environment defaults:
FING_API_HOST — Fing agent host/IP, default localhost.FING_API_PORT — default 49090.FING_API_SCHEME — default http.FING_API_KEY — API key.The helper also loads .env from the current workspace directory.
Examples:
# Compact health/device summary
python3 skills/fing/scripts/fing_helper.py summary
# Device inventory summary
python3 skills/fing/scripts/fing_helper.py devices
# Raw API wrapper for debugging
python3 skills/fing/scripts/fing_helper.py devices --raw
# People/presence, Fing Desktop only
python3 skills/fing/scripts/fing_helper.py people
summary to verify API reachability and device counts.devices for inventory, online/offline checks, or finding unknown devices.people only when Fing Desktop is expected; Fing Agent/Fingbox may return 503 for this endpoint.Read references/api-summary.md when endpoint details, response fields, or error meanings matter.