keenetic-rci

keenetic-rci is a skill for Claude Code from elihucredible450/keenetic-mcp. It costs 56 tokens per session (1,492 once invoked), scanned A, a copy of keenetic-rci, MIT.

A guide for using Keenetic’s RCI interface, a JSON-based way to inspect and command the router. It covers how to find valid paths, read configuration, and avoid responses that overwhelm the working context.

In plain words
What is it for?
Reading operational state and configuration, finding the syntax for changes, and sending less risky direct RCI requests.
Why use it?
It reduces mistakes when a router question is outside the standard tools. It explains how to discover the router’s actual command structure instead of guessing.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the keenetic plugin — 4 skills, 1 command, 1 MCP server shipped together

Good fit Reading operational state and configuration, finding the syntax for changes, and sending less risky direct RCI requests.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/elihucredible450/keenetic-mcp/keenetic-rci
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 elihucredible450/keenetic-mcp --skill keenetic-rci
Clone the repo
git clone --depth 1 https://github.com/elihucredible450/keenetic-mcp

Made for: Claude Code.

Or install keenetic, the plugin that ships this one along with the rest of its 4 skills, 1 command, 1 MCP server.

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 keenetic-rci

README.md
[![agentmods](https://agentmods.dev/badge/skills/elihucredible450/keenetic-mcp/keenetic-rci/github.svg)](https://agentmods.dev/skills/elihucredible450/keenetic-mcp/keenetic-rci)
Your own site
<a href="https://agentmods.dev/skills/elihucredible450/keenetic-mcp/keenetic-rci"><img src="https://agentmods.dev/badge/skills/elihucredible450/keenetic-mcp/keenetic-rci/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 keenetic-rci

Your own site · 80×15
<a href="https://agentmods.dev/skills/elihucredible450/keenetic-mcp/keenetic-rci"><img src="https://agentmods.dev/badge/skills/elihucredible450/keenetic-mcp/keenetic-rci.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,492 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 100% copy Near-identical to another mod 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.00056 $0.01492
Opus 5 $0.00028 $0.00746
Sonnet 5 $0.00011 $0.00298
Haiku 4.5 $0.00006 $0.00149

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

Security

Grade A, and why

keenetic-rci 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 11d 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.

Origin

This is a copy

100% identical to keenetic-rci — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

plugins/keenetic/skills/keenetic-rci/SKILL.md · 143 lines

How it starts

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

Reaching the Keenetic API directly

The curated tools cover the common questions. rci_call covers everything else. It is deliberately unrestricted, so the responsibility for calling it well is yours.

What RCI actually is

Not REST. It is a JSON mirror of the router's command-line tree, so a URL path is a path through that tree. There are two branches:

Form What it gives you
GET show/... operational state, the equivalent of a show command
GET <config path> the running configuration, as JSON
POST with a body executes a command; the body mirrors the same tree

GET with an empty path returns the entire running configuration, about 35 KB.

Find the syntax instead of guessing it

This is the single most useful technique. The router stores its own configuration as valid CLI, so it will tell you the exact syntax of anything it is already doing:

rci_call { "method": "GET", "path": "show/running-config" }

Read the lines around whatever you want to change. A host with a routing policy appears as host <mac> policy Policy0, which maps to {"ip":{"hotspot":{"host":{"mac":"...","policy":"Policy0"}}}}. Guessing field names instead produces silent no-ops, described below.

Deleting something: no goes beside the arguments

The negation is not a wrapper key. The router shows an already-negated line as "no": true sitting next to that line's arguments, and a delete is written the same way round. The object's own name travels in name:

{"ip": {"policy": {"no": true, "name": "Policy1"}}}
{"interface": {"no": true, "name": "Wireguard1"}}
{"ip": {"name-server": {"no": true, "address": "1.1.1.1", "domain": "", "interface": "Wireguard1"}}}

A successful delete answers with a status block that names what went, for example removed policy "Policy1". or interface "Wireguard1" removed.. No such block means nothing happened, whatever the HTTP code said.

References clean up on their own: removing Wireguard1 also dropped the no permit global Wireguard1 line that Policy0 still carried.

Read the full file on GitHub · 143 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. 11d ago First seen · 143 lines · 56 tokens per session scan A 0d1143b2c03a

Subscribe to this mod's changes

keenetic-rci is a skill published in the GitHub repository elihucredible450/keenetic-mcp (0 stars, last pushed today), licensed MIT. It adds 56 tokens to every session and 1,492 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to keenetic-rci, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

keenetic-rci

Use when a Keenetic question is not covered by the curated tools and you need rcicall - explains the RCI tree, the paths that exist, the responses that will blow up your context, and the traps that make a wrong call look like success.

salatmaster/keenetic-mcp · 56 tokens

keenetic-segments

Use when creating an isolated network on a Keenetic - a guest network, an IoT network, a segment routed through a VPN - explains why the obvious way produces a working network the web interface refuses to list, and the VLAN it is actually missing.

salatmaster/keenetic-mcp · 55 tokens

keenetic-troubleshoot

Use when someone reports the internet is down, Wi-Fi is bad, a device cannot connect, or the network is slow on a Keenetic router - an ordered playbook that narrows the fault instead of guessing.

salatmaster/keenetic-mcp · 48 tokens

keenetic-safe-changes

Use before changing anything on a Keenetic router - explains that changes are not saved until asked, what the router's fail-safe does and does not protect against, and the order that avoids locking yourself out.

salatmaster/keenetic-mcp · 46 tokens

ruview-cli-api

Use the RuView wifi-densepose CLI binary (incl. MAT scan/status/zones/survivors/alerts/export subcommands), the REST API (wifi-densepose-api, Axum), and the browser/WASM build (wifi-densepose-wasm, wifi-densepose-wasm-edge). Use when integrating RuView into another program, scripting it from the shell, exposing it…

ruvnet/RuView · 104 tokens

amazon-alexa

Integracao completa com Amazon Alexa para criar skills de voz inteligentes, transformar Alexa em assistente com Claude como cerebro (projeto Auri) e integrar com AWS ecosystem (Lambda, DynamoDB, Polly, Transcribe, Lex, Smart Home).

sickn33/agentic-awesome-skills · 53 tokens