nautobot-sot

nautobot-sot is a skill for Claude Code, Codex from automateyournetwork/netclaw. It costs 71 tokens per session (1,911 once invoked), scanned A, original, Apache-2.0.

A read-only connector to Nautobot, a network inventory and IP address management system, retrieves addresses, network prefixes, and related details. It can filter results by site, tenant, VRF, role, or status.

In plain words
What is it for?
Use it to find IP addresses, search prefixes and subnets, inspect a specific IP record, and test the connection to Nautobot.
Why use it?
It avoids searching network records manually and provides a way to verify that the Nautobot API is reachable. Read-only access prevents these lookups from changing inventory data.

Skill for Claude CodeCodex

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

Good fit Use it to find IP addresses, search prefixes and subnets, inspect a specific IP record, and test the connection to Nautobot.

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

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 nautobot-sot

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/automateyournetwork/netclaw/nautobot-sot"><img src="https://agentmods.dev/badge/skills/automateyournetwork/netclaw/nautobot-sot.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,911 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00071 $0.01911
Opus 5 $0.00036 $0.00955
Sonnet 5 $0.00014 $0.00382
Haiku 4.5 $0.00007 $0.00191

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

Security

Grade A, and why

nautobot-sot 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 9d 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.

workspace/skills/nautobot-sot/SKILL.md · 147 lines

How it starts

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

Nautobot Source of Truth

MCP Server

  • Repository: aiopnet/mcp-nautobot
  • Transport: stdio (Python via MCP SDK) — also supports HTTP on configurable port
  • Requires: NAUTOBOT_URL, NAUTOBOT_TOKEN
  • Python: 3.13+
  • Read-only: All tools are read-only (requires API token with read permissions)

MCP Tools

Tool Parameters What It Does
get_ip_addresses address?, prefix?, status?, role?, tenant?, vrf?, limit?, offset? Retrieve IP addresses with filtering — status (active, reserved, deprecated), role (loopback, secondary, anycast), VRF, tenant
get_prefixes prefix?, status?, site?, role?, tenant?, vrf?, limit?, offset? Retrieve network prefixes with filtering by site, role, status, VRF, tenant
get_ip_address_by_id ip_id Retrieve a specific IP address by its Nautobot UUID
search_ip_addresses query, limit? Full-text search across all IP address data — find IPs by any matching field
test_connection none Verify connectivity to the Nautobot API — returns status, URL, and timestamp

Tool Details

get_ip_addresses

The primary IPAM query tool. Supports rich filtering:

  • address — specific IP to search (e.g., 10.0.1.1)
  • prefix — network prefix filter (e.g., 10.0.0.0/24) — returns all IPs within the prefix
  • statusactive, reserved, deprecated
  • roleloopback, secondary, anycast, vip, hsrp, vrrp
  • tenant — filter by tenant (multi-tenancy support)
  • vrf — filter by VRF (routing instance isolation)
  • limit — max results (default: 100, max: 1000)
  • offset — pagination offset

Returns JSON with count and IP address objects including assignment details.

get_prefixes

Network prefix (subnet) lookup with site awareness:

  • prefix — specific prefix (e.g., 10.0.0.0/24)
  • site — filter by site/location name
  • role — prefix role (production, development, management, etc.)
  • status — active, reserved, deprecated, container
  • tenant / vrf — multi-tenancy and routing isolation

Read the full file on GitHub · 147 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. 9d ago First seen · 147 lines · 71 tokens per session scan A 96a65da8184a

Subscribe to this mod's changes

nautobot-sot is a skill published in the GitHub repository automateyournetwork/netclaw (657 stars, last pushed 6d ago), licensed Apache-2.0. It adds 71 tokens to every session and 1,911 once invoked, about $0.0004 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-09-03.

Related

Other skills, from other repositories

nbox-serve

Run nbox as an MCP server (read-only by default; optional local stdio writes with --local-writes, or shared HTTP/OIDC writes with --allow-writes + nbox:write + [serve.vault]) so an agent host can query NetBox over JSON-RPC — stdio or HTTP+OIDC transport, the read tools (search/get/getinterface/history/…), the…

lance0/nbox · 128 tokens

nbox

Query and modify NetBox (DCIM/IPAM) from the shell with the nbox CLI — look up devices, interfaces, IPs, prefixes, VLANs, sites, racks, circuits, VRFs, tenants, VMs, and clusters; run cross-object search; use IPAM helpers (next free IP/prefix, prefix utilization, cable-path traces); and safely write (reserve…

lance0/nbox · 160 tokens

nbox-device-context

Pull the full physical context of a device or interface from NetBox with nbox — a device's interfaces/IPs/cables/VLANs/services, an interface's cable-path A↔Z trace, a MAC reverse-resolved to its carrying interface/device, plus rack and site context. Use when the user asks how a device is connected, what's on an…

lance0/nbox · 91 tokens

nbox-ipam-read

Answer IP addressing questions from NetBox with nbox's IPAM read commands — look up an IP and its parent prefix/VLAN/scope, check prefix utilization and the prefix tree, preview the next free IP/prefix, and inspect VLANs, IP ranges, aggregates, VRFs, and route targets. Use when the user asks about addressing…

lance0/nbox · 82 tokens

nbox-patch-writes

Update NetBox object fields using nbox's PATCH write commands — interface set description and device set status. Use when the user wants to change an interface description or a device's status in NetBox.

lance0/nbox · 47 tokens

dcim-devices

NetBox DCIM device CRUD with foreign-key name resolution and bulk operations.

Hebbian-Robotics/nbx · 20 tokens