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 skills add nanxiaoyao/network-huawei-skills --skill ospf-configgit clone --depth 1 https://github.com/nanxiaoyao/network-huawei-skillsWrote 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/skills/nanxiaoyao/network-huawei-skills/ospf-config)<a href="https://agentmods.dev/skills/nanxiaoyao/network-huawei-skills/ospf-config"><img src="https://agentmods.dev/badge/skills/nanxiaoyao/network-huawei-skills/ospf-config/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.
<a href="https://agentmods.dev/skills/nanxiaoyao/network-huawei-skills/ospf-config"><img src="https://agentmods.dev/badge/skills/nanxiaoyao/network-huawei-skills/ospf-config.svg" alt="Reviewed on agentmods" width="80" 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.1 | $0.00136 | $0.03512 |
| Opus 5 | $0.00068 | $0.01756 |
| Sonnet 5 | $0.00027 | $0.00702 |
| Haiku 4.5 | $0.00014 | $0.00351 |
Grade A, and why
ospf-config 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.
How it starts
The opening of the file, as written. The whole thing — 366 lines — stays where its author put it; the contents beside it link to each section on GitHub.
华为交换机/防火墙 OSPF 配置技能 (ospf-config)
适用平台 S1720/S2700/S5700/S6720 V200R011C10+ | CloudEngine 5800-9800 V200R022C00+ | USG6000E V600R007C20+ 文档来源 华为 S 系列与 CloudEngine 系列产品文档 (dc_cfg_ospf_*)
OSPF 是企业内网最常用的动态路由协议 交换机上跑在 VLANIF 三层接口 防火墙上跑在三层物理接口或子接口
触发场景
- 配置交换机/防火墙 OSPF 多区域
- VLANIF 接口跑 OSPF(交换机场景)
- 三层接口跑 OSPF(防火墙场景)
- OSPF 邻居建立不起来
- 配置 DR/BDR 选举优先级
- 配置 Stub / NSSA 区域
- OSPF 引入外部路由 / 默认路由通告
- OSPF 路由汇总
- OSPF 与 BFD 联动(毫秒级切换)
- OSPF GR(平滑重启)
- OSPF IP FRR(快速重路由)
- OSPF 路由过滤
交换机 vs 防火墙 接口差异
| 项目 | 交换机 | 防火墙 |
|---|---|---|
| 三层接口 | VLANIF | GigabitEthernet / 10GE 物理口或子接口 |
| IP 配置 | interface Vlanif 10 → ip address | interface GigabitEthernet 0/0/1 → ip address |
| 启 OSPF 前 | 必须先创建 VLAN + 加接口 | 必须先把接口加入安全区域 |
| OSPF network | 用 VLANIF 网段 | 用物理接口网段 |
配置六步走(交换机 VLANIF 场景)
1 创建 VLAN 与 VLANIF
system-view
vlan batch 10 20
interface Vlanif 10
ip address 192.168.0.1 255.255.255.0
quit
interface Vlanif 20
ip address 192.168.1.1 255.255.255.0
quit
2 物理接口加入 VLAN
interface GigabitEthernet 0/0/1
port link-type trunk
port trunk allow-pass vlan 10
quit
interface GigabitEthernet 0/0/2
port link-type trunk
port trunk allow-pass vlan 20
quit
3 创建 OSPF 进程与区域
ospf 1 router-id 10.1.1.1
area 0.0.0.0
network 192.168.0.0 0.0.0.255
quit
area 0.0.0.1
network 192.168.1.0 0.0.0.255
quit
quit
4 验证
display ospf peer brief
display ospf routing
display ip routing-table protocol ospf
配置六步走(防火墙三层接口场景)
1 接口 IP 与安全区域
system-view
interface GigabitEthernet 0/0/1
ip address 10.1.1.1 24
quit
firewall zone untrust
add interface GigabitEthernet 0/0/1
quit
2 安全策略放通 OSPF
security-policy
rule name ospf_out
source-zone local
destination-zone untrust
service ospf
action permit
rule name ospf_in
source-zone untrust
destination-zone local
service ospf
action permit
quit
3 OSPF 进程
ospf 1 router-id 1.1.1.1
area 0.0.0.0
network 10.1.1.0 0.0.0.255
quit
quit
高级场景
What ships with it
2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 11d ago First seen · 366 lines · 136 tokens per session scan A 98d5fbe5a264
ospf-config is a skill published in the GitHub repository nanxiaoyao/network-huawei-skills (2 stars, last pushed 1mo ago), licensed MIT. It adds 136 tokens to every session and 3,512 once invoked, about $0.0007 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-08-31.
Other skills, from other repositories
gke-ai-troubleshooting-tpu-vbar-oom
Diagnoses and prevents vbarcontrolagent segfaults, out-of-memory (OOM) errors, and TPU device initialization failures on TPU v6e nodes in GKE caused by race conditions during TPU device resets or high-frequency metrics polling. Use when troubleshooting vbarcontrolagent crashes, memory cgroup OOMs in serial console…
competition-firmware-layout
Internal downstream skill for ctf-sandbox-orchestrator. CTF-sandbox workflow for firmware images, partition tables, boot chains, update packages, extracted filesystems, embedded configs, and device-facing trust boundaries. Use when the user asks to unpack firmware, map partition layout, inspect bootloader or init…
systematic-debugging
A step-by-step method for finding the underlying cause of technical problems before changing code. It covers reading errors, reproducing failures, checking recent changes, and tracing data across system components.
doca-flow
Build and debug DOCA Flow applications on supported NVIDIA NICs/DPUs: define match/action pipes, initialize ports and representors, choose forwarding targets, validate pipes before hardware programming, read counters, match the Flow version to the installed DOCA release, and diagnose Flow API errors. Trigger on DOCA…
diagnose-driver-install
Diagnose NVIDIA driver installation failures on DeepOps-managed nodes — nvidia-smi errors, "No devices were found", DKMS build failures, or GPU pods crash-looping. Use before reinstalling anything.
percepxion-oob
Manage Lantronix out-of-band (OOB) infrastructure via Percepxion central management platform: device inventory, serial port inspection via SLC CLI, firmware compliance, config management, security auditing, and closed-loop incident remediation. Use during outages, maintenance windows, compliance cycles, and…