reolink-cli GEMINI.md

reolink-cli GEMINI.md is an instructions file for Gemini CLI from reolink/reolink-cli. It costs 1,573 tokens per session, scanned C, original, Apache-2.0.

Instructions for operating Reolink network cameras through a local command-line tool. The tool usually needs a local gateway running and returns results as JSON, a machine-readable format.

In plain words
What is it for?
Use it to install or update the camera command-line tool, start its gateway, register cameras, and manage registered devices.
Why use it?
It provides a defined setup and operating procedure for camera commands, including installation checks and gateway requirements. This reduces mistakes when managing cameras on a local network.

Instructions file for Gemini CLI

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.

agentmods
npx agentmods add instructions/reolink/reolink-cli/gemini-md
Clone the repo
git clone --depth 1 https://github.com/reolink/reolink-cli

Made for: Gemini CLI.

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 reolink-cli GEMINI.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/reolink/reolink-cli/gemini-md.svg)](https://agentmods.dev/instructions/reolink/reolink-cli/gemini-md)
Your own site
<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>
Per session 1,573 This file is loaded in full into every session.
When invoked 1,573 The same file — it is already loaded in full.
Security scan C 2 findings. Scan, not verified.
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 $0.01573 $0.01573
Opus 5 $0.00787 $0.00787
Sonnet 5 $0.00315 $0.00315
Haiku 4.5 $0.00157 $0.00157

Measured 5d ago against content hash b945a2498595, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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
GEMINI.md · 100 lines

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.

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.

  • ping and login are diagnostics, not pre-steps — the first real command (info, get, snapshot, …) does its own connect + auth via the gateway. Only ping standalone when the user explicitly asks "is camera X reachable?".
  • Do not pre-read <subcmd> --help to discover flags. The Key Commands table below already lists them; the binary's reolink-cli features --output json enumerates 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-get after a write only if the recipe isn't an idempotent apply (which already verifies internally).
  • Battery devices (LAN wake is automatic). When a target has a UID but no host (e.g. aliases.toml entry with only uid = "..."), the gateway runs the BC3.0 §F.2 wake on UDP 2026 transparently before login. Just issue the business command (info, preview, …) — do not call wake explicitly (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.

Read the full file on GitHub · 100 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. 5d ago First seen · 100 lines · 1,573 tokens per session scan C b945a2498595

Subscribe to this mod's changes

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.

Related

Other instructions, from other repositories