Nano Banana Pro
Agent skill for nano-banana-pro
Execute simple network status queries that require 1-2 commands. Use when user asks to "check device status", "show interface", "query routing table", "display BGP neighbors", or needs simple read-only information retrieval.
Sign in to like and favorite skills
name: Quick Query description: Execute simple network status queries that require 1-2 commands. Use when user asks to "check device status", "show interface", "query routing table", "display BGP neighbors", or needs simple read-only information retrieval. version: 1.0.0
intent: query complexity: simple
User questions contain: "check", "see", "status", "is it normal", "show", "display"
Trigger: "R1 Gi0/1 status", "show interface status" Command:
show interfaces GigabitEthernet0/1 or show interface brief
Extract: up/down, speed, error counts
Trigger: "What port is 10.1.1.100 on", "Find this MAC" Process:
show arp | include 10.1.1.100 → Get MACshow mac address-table address <mac> → Get portTrigger: "Device version", "show version" Command:
show version or display version
Extract: Device model, software version, uptime
Trigger: "CPU usage", "Memory status" Command:
show processes cpu history, show memory statistics
Extract: Current usage, trends
User query → Parse alias → search_capabilities → nornir_execute → Format output
Keep it concise, highlight key information:
R1 (10.1.1.1) - Interface Status ├─ Gi0/1: up, line protocol up │ ├─ Input: 1000 Mbps, 0 errors │ └─ Output: 1000 Mbps, 0 errors ├─ Gi0/2: administratively down └─ Gi0/3: up, line protocol up └─ CRC errors: 0