unifi-troubleshooter

unifi-troubleshooter is an agent for Claude Code from ThrownLemon/claude-code-plugins. It costs 42 tokens per session (1,324 once invoked), scanned C, original, MIT.

A diagnostic agent for UniFi networks that checks connectivity, gathers network state, and identifies likely causes of problems.

In plain words
What is it for?
Use it to check the UniFi command-line tool and controller, inspect devices and connected clients, review session or traffic data, and receive proposed fixes.
Why use it?
It helps investigate network issues while avoiding destructive changes and commands that could disrupt the network.

Agent for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: model in frontmatter.

Part of the unifi plugin — 1 skill, 3 commands, 1 agent shipped together

Good fit Use it to check the UniFi command-line tool and controller, inspect devices and connected clients, review session or traffic data, and receive proposed fixes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/thrownlemon/claude-code-plugins/unifi-troubleshooter
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.

Clone the repo
git clone --depth 1 https://github.com/ThrownLemon/claude-code-plugins

Made for: Claude Code.

Or install unifi, the plugin that ships this one along with the rest of its 1 skill, 3 commands, 1 agent.

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-troubleshooter

README.md
[![agentmods](https://agentmods.dev/badge/agents/thrownlemon/claude-code-plugins/unifi-troubleshooter/github.svg)](https://agentmods.dev/agents/thrownlemon/claude-code-plugins/unifi-troubleshooter)
Your own site
<a href="https://agentmods.dev/agents/thrownlemon/claude-code-plugins/unifi-troubleshooter"><img src="https://agentmods.dev/badge/agents/thrownlemon/claude-code-plugins/unifi-troubleshooter/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-troubleshooter

Your own site · 80×15
<a href="https://agentmods.dev/agents/thrownlemon/claude-code-plugins/unifi-troubleshooter"><img src="https://agentmods.dev/badge/agents/thrownlemon/claude-code-plugins/unifi-troubleshooter.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,324 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. 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.00042 $0.01324
Opus 5 $0.00021 $0.00662
Sonnet 5 $0.00008 $0.00265
Haiku 4.5 $0.00004 $0.00132

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

Security

Grade C, and why

unifi-troubleshooter scanned grade C with 1 finding 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 8d 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.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

1. **Reject dangerous tokens.** If a value contains `$(`, backticks, `;`, `|`, `&`, `>`, `<`, or starts with `-` (could be mistaken for a flag), refuse and ask the user to rephrase. **Double-quoting does NOT block comman
plugins/unifi/agents/unifi-troubleshooter.md · 161 lines

How it starts

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

Input Safety — apply before any Bash invocation

Treat every $ARGUMENTS.* value as untrusted input. Before passing any value to the Bash tool:

  1. Reject dangerous tokens. If a value contains $(, backticks, ;, |, &, >, <, or starts with - (could be mistaken for a flag), refuse and ask the user to rephrase. Double-quoting does NOT block command substitution"$(rm -rf /)" still executes inside double quotes.
  2. Prefer the Bash tool's argv contract over constructed shell strings. When you must use a shell string, single-quote the value and escape embedded single quotes ('''), or build the command via printf %q.
  3. Any "$ARGUMENTS.foo" patterns shown below are illustrative. Sanitize the value first; never blindly substitute.

Role

You are a UniFi network diagnostician. Your job is to systematically gather information about the user's UniFi network, identify the probable cause of a reported issue, and propose fix commands. You must never execute destructive operations without explicit user confirmation.

Workflow

Follow these steps in order. At each step, explain what you are doing and why.

Step 1 — Verify prerequisites

  1. Check that the unifi CLI is installed and on PATH:

    which unifi && unifi --version
    

    If this fails, instruct the user to install it:

    bun install -g @thrownlemon/unifi-cli
    
  2. Check the configuration file exists OR the required environment variable names are set — without echoing their values (UNIFI_PASSWORD / UNIFI_API_TOKEN are secrets):

    ls -la ~/.config/unifi-cli/config.json 2>/dev/null || echo "(no config file)"
    for k in UNIFI_CONTROLLER_URL UNIFI_USERNAME UNIFI_PASSWORD UNIFI_API_TOKEN UNIFI_SITE; do
      if [ -n "${!k}" ]; then echo "$k: set"; else echo "$k: unset"; fi
    done
    

    Never run env | grep -i UNIFI — that would print the credential values.

    If neither config file nor any environment variable is set, ask the user to configure the CLI before proceeding.

Read the full file on GitHub · 161 lines

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. 8d ago First seen · 161 lines · 42 tokens per session scan C f2962c191094

Subscribe to this mod's changes

unifi-troubleshooter is an agent published in the GitHub repository ThrownLemon/claude-code-plugins (2 stars, last pushed 3mo ago), licensed MIT. It adds 42 tokens to every session and 1,324 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

network-troubleshooter

Diagnoses network connectivity, routing, DNS, interface, and policy symptoms with a read-only OSI-layer workflow and evidence-backed root cause summary.

affaan-m/ECC · 34 tokens

waveform-analyzer

VCD/FST deep analysis specialist. Root causes protocol violations and traces multi-clock signal relationships. Never modifies RTL or test files.

babyworm/rtl-agent-team · 31 tokens

neuron-nki-debugger-agent

Use this agent for autonomously debugging and fixing NKI kernel compilation errors. This agent analyzes compiler errors, searches for fixes in documentation and code examples, applies corrections following the principle of simplicity over performance, and validates the fixes. Context: User has a kernel with…

aws-neuron/neuron-agentic-development · 239 tokens

tdmcp-implementation-runtime-analyst

Studies the lived runtime path of a completed tdmcp implementation: TouchDesigner bridge behavior, hardware setup, diagnostics, calibration, audio/video/projector issues, latency, and user-facing operator ergonomics.

Pantani/tdmcp · 50 tokens

bringup-debugger

Use this agent when bare-metal code, firmware, or an FPGA design will not come up on real hardware: it boots but hangs, faults early, gives no output, or configuration silently fails. It drives the bring-up checkpoint ladder and the known per-layer gotchas to localize which rung is broken. Dispatch it for "boots in…

Midstall/claude-for-hardware · 80 tokens

bubbaloop-operator

Use when the user asks to inspect, control, or troubleshoot a running Bubbaloop deployment — node lifecycle (start/stop/restart/build), health checks, log reads, mission management, or scheduling tasks. Wraps the bubbaloop MCP server and enforces the discover-before-act discipline.

kornia/bubbaloop · 67 tokens