eNSP

v1.1.0

Always use when user asks to create, generate, or design a network topology diagram for eNSP (Enterprise Network Simulation Platform), or mentions creating e...

0· 110·0 current·0 all-time
Security Scan
Capability signals
Crypto
These labels describe what authority the skill may exercise. They are separate from suspicious or malicious moderation verdicts.
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description = generate eNSP topology files; declared requirements are empty and included files are documentation and format references for .topo — nothing requested is disproportionate to creating .topo files.
Instruction Scope
SKILL.md explicitly describes parsing user intent, generating UUIDs, laying out devices, building .topo XML, and writing the file with the agent's Write tool. It does not instruct reading unrelated files, accessing credentials, or calling external endpoints.
Install Mechanism
No install spec and no code files — the skill is instruction-only, so nothing will be downloaded or written by an installer step.
Credentials
The skill declares no required environment variables, no credentials, and the instructions do not reference hidden env vars or config paths; requested permissions (write to current directory) are proportionate.
Persistence & Privilege
always is false and the skill does not request persistent/privileged presence or modify other skills or system-wide settings; autonomous invocation remains platform default but is not combined with other red flags.
Assessment
This skill appears to do exactly what it says: generate .topo XML files for eNSP. Before installing/using it, note that the agent will write files to its current working directory — ensure you trust that workspace and have appropriate file permissions. Also review any generated .topo before opening in eNSP if you want to confirm device names, IPs, or any peerIP/udpPort fields in templates; no network calls or credentials are requested by this skill.

Like a lobster shell, security has layers — review code before you run it.

enspvk9756s4bpcxp73jwg872pp5jn584etk2huaweivk9756s4bpcxp73jwg872pp5jn584etk2latestvk9756s4bpcxp73jwg872pp5jn584etk2networkvk9756s4bpcxp73jwg872pp5jn584etk2simulationvk9756s4bpcxp73jwg872pp5jn584etk2
110downloads
0stars
2versions
Updated 1w ago
v1.1.0
MIT-0

eNSP Topology Skill

Generate eNSP (Enterprise Network Simulation Platform) topology files as native .topo files that can be opened directly in eNSP.

How to create a topology

  1. Parse user's request to identify:

    • Network devices (routers, switches, PCs, Cloud, etc.)
    • Connections between devices
    • Optional: text labels, area boxes
  2. Generate UUIDs for each device using a valid UUID v4 format

  3. Calculate layout coordinates for devices using auto-layout algorithm

  4. Build the .topo XML following the format in references/topo-reference.md

  5. Write the file to current directory using Write tool

  6. Open the result - print the file path so user can open it in eNSP

Output format

Always output a .topo file. The user will open it in eNSP for simulation.

Example filenames:

  • simple-network.topo
  • ospf-topology.topo
  • campus-network.topo

Device types supported

Routers

ModelDescriptionInterface Config
AR201RouterEthernet x8 + Ethernet x1
AR1220Router2GE + 8Ethernet
AR2220RouterGE x1 + GE x2 + Serial x2
AR2240RouterGE x1 + GE x2
AR3260RouterGE x1 + GE x2
RouterGeneric RouterEthernet x2 + GE x4 + Serial x4
NE40EEnterprise Router10x Ethernet (slot format)
NE5000ECore Router10x Ethernet (slot format)
NE9000Core Router10x Ethernet (slot format)
R250DRouterGE x1

Switches

ModelDescriptionInterface Config
S3700SwitchEthernet x22 + GE x2
S5700Switch24GE
CE6800Data Center Switch20x GE (slot format)
CE12800Data Center Switch10x GE (slot format)
CXSwitch10x Ethernet (slot format)

Firewalls

ModelDescriptionInterface Config
USG5500FirewallGE x9
USG6000VFirewallGE x1 (slot0) + GE x7 (slot1)

Wireless

ModelDescriptionInterface Config
AC6005Wireless AC8GE
AC6605Wireless AC24GE
AP2050Wireless AP5GE
AP3030Wireless AP1GE
AP4030Wireless AP2GE
AP4050Wireless AP2GE
AP5030Wireless AP2GE
AP6050Wireless AP2GE
AP7030Wireless AP2GE
AP7050Wireless AP2GE
AP8030Wireless AP3GE
AP8130Wireless AP3GE
AP9131Wireless AP2GE
AD9430LTE Module28GE
STAWireless StationWireless
CellphoneMobile DeviceWireless

Endpoints

ModelDescriptionInterface Config
PCPC1GE
LaptopLaptop1GE
ServerServer1Ethernet
ClientClient1Ethernet
MCSMulticast Server1Ethernet
CloudCloud/BNIEthernet interfaces
FRSWFrame Relay SwitchSerial x16
HUBEthernet HUBEthernet x16

Connection types

TypeDescription
CopperEthernet cable
SerialSerial cable
AutoAuto-detect

Layout algorithm

Use a simple grid-based auto-layout:

Grid spacing: 200px horizontal, 150px vertical
Device size: ~80x60px
Start position: (100, 100)

For each row:
  - Place devices horizontally with 200px gap
  - Move to next row when reaching canvas width (~1200px)

Adjust positions based on device types and connections to create logical groupings.

Adding text labels (txttips)

Common labels for network diagrams:

  • Loopback addresses: Loopback0:10.0.1.1/24
  • Network segments: 10.0.12.0/24
  • Area labels: Area0, Area1, AS 64512
  • Device roles: Core Layer, Access Layer

Adding area boxes (shapes)

Use type="1" shapes with appropriate colors to group devices:

  • Same area devices in one rectangle
  • Different colors for different areas/zones

File naming

  • Use lowercase with hyphens
  • Descriptive name based on topology purpose
  • End with .topo extension

Opening the result

After writing the file, print the absolute path:

Topology saved to: C:\path\to\topology.topo
Please open this file in eNSP to view and simulate.

XML format reference

Consult references/topo-reference.md for complete XML structure including:

  • Device XML format with slots and interfaces
  • Line XML format with interfacePair details
  • Shape XML format for area boxes
  • Txttip XML format for text annotations

Comments

Loading comments...