đ Ops Copilot Guide
A lightweight, offline network troubleshooting assistant that generates smart diagnostic commands and AI-ready prompts for Cisco environments.
Quick Start
- Online: You're already here! Just use the tabs above.
- Offline: Download the files from GitHub and open
index.html in any browser
No installation required. Works 100% offline.
What It Does
Incident Analysis:
- Enter symptoms in plain language (e.g., "WiFi keeps dropping", "slow internet")
- Get intelligent command suggestions based on keywords and device type
- Auto-generates evidence collection worksheets
- Performs basic offline analysis of command outputs
- Creates structured AI prompts for deeper troubleshooting
Config Review:
- Paste sanitized configs
- Generate AI-ready prompts for security and best practice analysis
đ§ How to Use Incident Analysis
đĄ Purpose: Get smart command suggestions and AI-ready troubleshooting prompts based on plain-language symptoms.
Step-by-Step:
- Select Incident Type
- Wired Connectivity
- Connectivity Issue
- Performance/Latency
- Intermittent/Flapping
- DHCP/IP Issues
- Wireless Issues
- Other
- Choose Device Role
- Access/IDF (Cat9300/9300X) - Most common for end-user issues
- Core/Root (Nexus 9K) - For backbone/routing issues
- Wireless (Catalyst 9800) - For WiFi/AP problems
- Add Interface (Optional)
- Enter interface if known:
gi1/0/24, te 2/0/4, po-2
- Tool accepts any format and normalizes it
- Describe Symptoms in Plain Language
- â
Good: "WiFi keeps disconnecting, users get authentication errors"
- â
Good: "Link flapping on gi1/0/24, seeing errors"
- â
Good: "Internet is slow, Teams calls dropping"
- The tool detects keywords like "flapping", "slow", "WiFi", "dhcp", etc.
- Get Smart Command Suggestions
- Click "Suggest Evidence Commands"
- Tool auto-generates relevant show commands based on your symptoms
- Commands adapt to device type (IOS-XE vs NX-OS vs WLC)
- Insert Evidence Worksheet
- Click "Insert Evidence Worksheet"
- Creates a formatted template with suggested commands
- Run the commands on your device and paste outputs below
- Offline Analysis (Optional)
- After pasting command outputs, click "Offline Analysis"
- Get basic pattern detection (errors, down interfaces, etc.)
- Enable auto-redaction to sanitize IPs and emails
- Generate AI Prompt
- Click "Generate AI Prompt" for deeper analysis
- Copy and paste into ChatGPT, Claude, or your AI tool
- Get structured troubleshooting steps and root cause analysis
Smart Detection Examples:
Symptom: "WiFi keeps dropping"
Tool detects: Wireless issue
Suggests: show wlan summary, show ap summary, show wireless client summary, etc.
Symptom: "Link flapping on gi1/0/24"
Tool detects: Interface + flapping
Suggests: show interface gi1/0/24, show interface gi1/0/24 counters errors, show logging, etc.
Symptom: "Can't get DHCP address"
Tool detects: DHCP issue
Suggests: show ip dhcp binding, show ip dhcp snooping, show ip dhcp pool, etc.
đĄ Pro Tip: Enable "Auto-update suggestions" to see commands refresh automatically as you type symptoms. The more details you provide, the better the suggestions!
đ How to Use Config Review
đĄ Purpose: Get AI-ready prompts to review your configs for security issues, misconfigurations, and best practices.
Step-by-Step:
- Select Device Type
- Catalyst 9300/9300X (Access switches)
- Nexus 9000 (Core/distribution)
- Catalyst 9800 (Wireless controller)
- Other
- Describe Intent - Explain what the device should do
- Example: "Access switch for Building A, 3rd floor, user VLANs 10-20, uplink to core via 10G fiber"
- Include: Location, purpose, VLANs, uplinks, special requirements
- Paste Config - Add your sanitized running-config
- â ī¸ Always sanitize first! Remove/redact:
- âĸ Passwords and secrets
- âĸ Public IP addresses
- âĸ Real hostnames
- âĸ SNMP community strings
- âĸ AAA keys
- â
Can paste full config or specific sections
- Generate AI Prompt
- Click "Generate AI Prompt" to create a structured review request
- The prompt asks AI to check for security issues, misconfigurations, and best practices
- Copy & Use with AI
- Click "Copy Output" to copy the prompt
- Paste into ChatGPT, Claude, or your preferred AI tool
- Get findings categorized as High/Medium/Low with fix suggestions
What the AI Checks:
- đ Security issues (weak passwords, missing ACLs, open services)
- âī¸ Misconfigurations (VLAN mismatches, STP issues, routing problems)
- đ Best practices (naming conventions, QoS, redundancy)
- đ¯ Alignment with stated intent
Example Config Review:
Device Type: Catalyst 9300
Intent: Access switch for guest WiFi, isolated VLAN 99, no internet access, logging to syslog server
Config snippet:
vlan 99
name GUEST_WIFI
!
interface GigabitEthernet1/0/1
description AP-Guest-Floor3
switchport mode access
switchport access vlan 99
spanning-tree portfast
!
AI will check:
âĸ Is VLAN 99 properly isolated? (ACLs, no routing)
âĸ Is internet access actually blocked?
âĸ Is syslog configured?
âĸ Are there any security gaps?
âĸ Best practices for guest networks
â ī¸ Remember: This tool generates prompts for AI review. It doesn't analyze configs itself. Always verify AI suggestions with network documentation and change control procedures.
Key Features
- â
Smart Detection - Understands natural language ("flapping", "can't connect", "slow")
- â
Platform-Aware - Adapts to Cat9300/9300X, Nexus9K, or Cat9800 WLC
- â
Interface Parsing - Handles
gi1/0/24, te 2/0/4, po-2 formats
- â
Offline Analysis - Basic diagnostics without external APIs
- â
Auto-Redaction - Sanitizes IPs and emails
- â
100% Offline - No data leaves your browser
Usage Example
Input:
Type: Wireless Issues
Symptoms: "Users in conference room can't connect to WiFi, authentication errors"
Device: Catalyst 9800 WLC
Output:
# Auto-suggested commands
show wlan summary
show wireless client summary
show ap summary
show wireless client mac <MAC> detail
show radius server-group detail
# ... and more
The tool detects "authentication" and automatically includes auth-specific commands.
Supported Platforms
- Access: Catalyst 9300, 9300X (IOS-XE)
- Core: Nexus 9000 Series (NX-OS)
- Wireless: Catalyst 9800 WLC
- APs: Catalyst 9100 Series
Privacy & Security
- 100% client-side JavaScript - no server communication
- Safe for sanitized/redacted data
- Auto-redaction available for IPs and emails
- No data storage or tracking
Tips
- Auto-update: Enable "Auto-update suggestions" to see recommendations refresh as you type
- Multiple symptoms: Tool detects multiple issue types and combines relevant commands
- Any interface format:
gi1/0/24, g 1/0/24, GigabitEthernet1/0/24 all work
Made for Network Operations Teams