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.
npx agentmods add instructions/reolink/reolink-cli/gemini-mdgit clone --depth 1 https://github.com/reolink/reolink-cliWrote 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.
[](https://agentmods.dev/instructions/reolink/reolink-cli/gemini-md)<a href="https://agentmods.dev/instructions/reolink/reolink-cli/gemini-md"><img src="https://agentmods.dev/badge/instructions/reolink/reolink-cli/gemini-md.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.01573 | $0.01573 |
| Opus 5 | $0.00787 | $0.00787 |
| Sonnet 5 | $0.00315 | $0.00315 |
| Haiku 4.5 | $0.00157 | $0.00157 |
Grade C, and why
reolink-cli GEMINI.md scanned grade C with 2 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 5d 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.
Downloads and executes remote codehighSupply chain
curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.
curl -fsSL https://raw.githubusercontent.com/reolink/reolink-cli/main/install.sh | sh Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
curl -fsSL https://raw.githubusercontent.com/reolink/reolink-cli/main/install.sh | sh How it starts
The opening of the file, as written. The whole thing — 100 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Reolink Camera Operator
You have access to reolink-cli for operating Reolink cameras locally. The binary must be installed and the gateway must be running for most commands.
Setup
The user installs reolink-cli and reolink-gateway once:
curl -fsSL https://raw.githubusercontent.com/reolink/reolink-cli/main/install.sh | sh
Both binaries land under ~/.local/bin/. To upgrade later: reolink-cli self-update (macOS/Linux), or re-run the installer.
The installer picks the right archive per platform, including the statically linked musl build on Alpine and Home Assistant OS, and verifies the download against a checksum committed to the repository. If it refuses with a checksum mismatch, retry once and then report it — do not point REOLINK_REPO elsewhere or fetch the archive by hand to get past it. There is no flag to skip verification.
# Start the gateway (required for most commands)
reolink-cli gateway start --addr 127.0.0.1:9000 &
# Register a camera
reolink-cli device add front-door --host 192.168.x.x --user admin
Primary Surface
reolink-cli (JSON stdout). Works without the gateway: device add|list|update|remove|resolve|show, config init, discover, features, doctor, cache status|clean. Everything that touches a camera needs the gateway running.
Envelopes:
- CLI:
{ok:true, command, protocol, data}/{ok:false, error:{code, message, retryable}} - Gateway
POST /api:{status:"success", data}/{status:"error", code, message}
Credential Safety
Never pass --password PLAIN on argv. Use --alias front-door (from aliases.toml), REOLINK_PASSWORD env, --password-stdin, or interactive prompt.
Workflow
Default: just run the command. The gateway daemon caches auth across CLI invocations, so you don't pay ping+login per command. Most user intents map to one CLI call.
pingandloginare diagnostics, not pre-steps — the first real command (info,get,snapshot, …) does its own connect + auth via the gateway. Onlypingstandalone when the user explicitly asks "is camera X reachable?".- Do not pre-read
<subcmd> --helpto discover flags. The Key Commands table below already lists them; the binary'sreolink-cli features --output jsonenumerates the surface at runtime. Each extra tool round adds ~2–3 s of perceived latency. - Batch sequenced commands in a single shell call. "PTZ full sweep" / "snapshot before & after a move" should be one Bash invocation with
&&, not N separate calls. Each separate call costs one more agent turn (~2–3 s perceived). - Re-
getafter a write only if the recipe isn't an idempotentapply(which already verifies internally). - Battery devices (LAN wake is automatic). When a target has a UID but no host (e.g.
aliases.tomlentry with onlyuid = "..."), the gateway runs the BC3.0 §F.2 wake on UDP 2026 transparently before login. Just issue the business command (info,preview, …) — do not callwakeexplicitly (it is a hidden diagnostic). The first call may take 2–8 s while the device boots; subsequent calls reuse the live session and feel instant.
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.
- 5d ago First seen · 100 lines · 1,573 tokens per session scan C b945a2498595
reolink-cli GEMINI.md is an instructions file published in the GitHub repository reolink/reolink-cli (93 stars, last pushed 7d ago), licensed Apache-2.0. It adds 1,573 tokens to every session, about $0.0079 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
HomeAssistant-Tapo-Control AGENTS.md
Instructions for JurajNyiri/HomeAssistant-Tapo-Control, covering agent instructions, required user agreement, repository rules and commits and prs.
HomeAssistant-Tapo-Control CLAUDE.md
Instructions for JurajNyiri/HomeAssistant-Tapo-Control: Follow AGENTS.md and CONTRIBUTING.md before working in this repository.
ha-selora-ai CLAUDE.md
Claude Code instructions for SeloraHomes/ha-selora-ai, covering selora ai — home assistant integration, what this is, architecture, project structure and key conventions.
ecowitt_local CLAUDE.md
Claude Code instructions for alexlenk/ecowitt_local, covering claude.md, project overview, ⚠️ critical: entity creation pipeline issues, development commands and local environment.
hass-mcp-server AGENTS.md
AGENTS.md instructions for ganhammar/hass-mcp-server, covering working on this integration, calling into home assistant, before replacing a private call with a service, anything left in category 2 or 3 and conventions.
robsonfelix-hass-addons CLAUDE.md
Instructions for robsonfelix/robsonfelix-hass-addons, covering claude code instructions, before every commit, added/changed/fixed, project structure and version bumping.