unifi-network-manager

unifi-network-manager is a skill for Claude Code, Codex from colindickson/unifi. It costs 173 tokens per session (1,545 once invoked), scanned A, original, MIT.

A command-line tool for inspecting and managing UniFi networks, which are networks built with Ubiquiti devices such as access points, switches, and gateways.

In plain words
What is it for?
It helps list sites, devices, and Wi-Fi clients; manage guest vouchers; restart devices; cycle PoE ports; and configure network, firewall, DNS, VLAN, WLAN, and port-forwarding settings.
Why use it?
It lets a developer or administrator query network information and perform approved network changes from the terminal. Its workflow requires checking current state before changes and explicit confirmation for risky actions.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps list sites, devices, and Wi-Fi clients; manage guest vouchers; restart devices; cycle PoE ports; and configure network, firewall, DNS, VLAN, WLAN, and port-forwarding settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/colindickson/unifi/unifi-network-manager
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add colindickson/unifi --skill unifi-network-manager
Clone the repo
git clone --depth 1 https://github.com/colindickson/unifi

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for unifi-network-manager

README.md
[![agentmods](https://agentmods.dev/badge/skills/colindickson/unifi/unifi-network-manager/github.svg)](https://agentmods.dev/skills/colindickson/unifi/unifi-network-manager)
Your own site
<a href="https://agentmods.dev/skills/colindickson/unifi/unifi-network-manager"><img src="https://agentmods.dev/badge/skills/colindickson/unifi/unifi-network-manager/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for unifi-network-manager

Your own site · 80×15
<a href="https://agentmods.dev/skills/colindickson/unifi/unifi-network-manager"><img src="https://agentmods.dev/badge/skills/colindickson/unifi/unifi-network-manager.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 173 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,545 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00173 $0.01545
Opus 5 $0.00086 $0.00772
Sonnet 5 $0.00035 $0.00309
Haiku 4.5 $0.00017 $0.00154

Measured 10d ago against content hash 69fe6e47a67d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

unifi-network-manager scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/unifi-network-manager/SKILL.md · 127 lines

How it starts

The opening of the file, as written. The whole thing — 127 lines — stays where its author put it; the contents beside it link to each section on GitHub.

UniFi Network Manager (CLI)

Overview

unifi is a CLI wrapping the UniFi Network Integration API (https://{host}/proxy/network/integration/v1, X-API-KEY auth). Use it to inspect and manage a local UniFi console. JSON is the default output — parse it to answer.

Safety (read first)

  • READ before WRITE — inspect with list/get/stats before any mutation.
  • Every mutation requires --yes. First state exactly what will happen and get the user's explicit confirmation in conversation (e.g. "This reboots AP (id ...) — proceed?"), THEN run the command with --yes.
  • You operate the user's real network. Never run a mutation the user did not approve, and keep actions scoped to the network they asked about. If a request is ambiguous or risky, stop and ask.

Setup Check

  1. Verify the tool: command -v unifi. If missing, tell the user to install it (repo has make install). Do NOT install it yourself without asking.
  2. Test connectivity: unifi info.

If you see host is required or auth errors, config is missing. Precedence: flags > env (UNIFI_HOST, UNIFI_API_KEY, UNIFI_SITE, UNIFI_INSECURE) > file (~/.config/unifi/config.json). Have the user configure it themselves — never ask for the API key in chat:

unifi configure --host <ip> --insecure   # set UNIFI_API_KEY in their env

Local consoles use self-signed certs, so --insecure is normally required.

Workflow

  • Discover the site first if unknown: unifi sites list → use the site id as --site. One site → use it (often named "default").
  • Use --all for the complete list (handles pagination); else --limit N.

Read commands

unifi info                                  # connectivity check
unifi sites list                            # get site id
unifi devices list --site <id>              # APs/switches/gateways
unifi devices get <deviceId> --site <id>
unifi devices stats <deviceId> --site <id>  # health telemetry
unifi clients list --site <id> --all        # connected devices
unifi clients get <clientId> --site <id>
unifi vouchers list --site <id>             # guest WiFi vouchers

Read the full file on GitHub · 127 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 127 lines · 173 tokens per session scan A 69fe6e47a67d

Subscribe to this mod's changes

unifi-network-manager is a skill published in the GitHub repository colindickson/unifi (2 stars, last pushed 2mo ago), licensed MIT. It adds 173 tokens to every session and 1,545 once invoked, about $0.0009 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

lab-hardware-cad

Design custom laboratory hardware as parametric build123d models and export fabrication-ready STEP, STL, and DXF files - microfluidic chips and molds, optomechanical mounts and breadboard adapters, cuvette and microplate holders, tube racks, animal-behavior rigs, and 3D-printed instrument fixtures. Use when a research…

K-Dense-AI/scientific-agent-skills · 106 tokens

opentrons-integration

Author, review, migrate, simulate, and troubleshoot official Opentrons Python Protocol API v2 protocols for Flex and OT-2 robots. Use for robot-specific liquid handling, deck and labware setup, pipettes, modules, runtime parameters, liquid classes, and Opentrons App analysis. Use pylabrobot instead when one workflow…

K-Dense-AI/scientific-agent-skills · 79 tokens

pylabrobot

Develop and review PyLabRobot lab-automation resources, liquid-handling plans, offline simulations, and supported-device integrations. Use for PyLabRobot protocols or API questions; keep physical execution behind an explicit operator safety gate.

K-Dense-AI/scientific-agent-skills · 49 tokens

offensive-wifi

Wireless / 802.11 attack methodology for red team engagements and wireless security assessments. Covers monitor-mode setup, WPA/WPA2-PSK handshake capture and PMKID attacks, WPA3 SAE downgrade and Dragonblood, WPA-Enterprise (EAP) attacks (MSCHAPv2 cracking, EAP-TLS cert theft, evil-twin RADIUS), Karma / Known Beacons…

SnailSploit/Claude-Red · 183 tokens

offensive-wifi-recon

Wi-Fi reconnaissance methodology — adapter selection, monitor mode and packet injection setup, regulatory domain handling, multi-band airspace mapping, hidden SSID discovery, BSSID/ESSID/channel/PMF/encryption fingerprinting, client probe analysis, vendor OUI lookup, war-driving with Kismet/airodump-ng/Wigle, and…

SnailSploit/Claude-Red · 130 tokens

offensive-zigbee-thread-matter

Zigbee, Thread, and Matter mesh-protocol attack methodology — IEEE 802.15.4 sniffing with TI CC2531 / CC2540 / Sonoff Zigbee Dongle E, KillerBee toolkit, Touchlink commissioning abuse with the well-known transport key, replay/injection attacks, Zigbee Cluster Library command abuse for door locks and bulbs, Thread…

SnailSploit/Claude-Red · 126 tokens