mirror of
https://github.com/affaan-m/ECC.git
synced 2026-08-17 21:15:40 +02:00
* fix(skills): move version into metadata and normalize to semver 29 skills declared `version` at the top level of their frontmatter. The schema reads it from `metadata`, so tooling that follows the schema either misses it or has to special-case the top level. Three motion skills also declared `version: 1.0`, which is not a valid semantic version; normalized to `1.0.0`. No behavioral change — frontmatter metadata only. * fix(skills): state activation triggers in skill descriptions 148 skills described what they cover but never named the situation that should trigger them. Since the description is what Claude matches against to decide whether to load a skill, a description without a trigger makes activation guesswork — the skill is either missed or loaded at the wrong time. Added a "Use when ..." clause to each, derived from the skill's own body (most already stated the trigger under "## When to Use" or in the opening line; that intent is now reflected in the frontmatter where it is actually read from). Descriptions were only appended to; no existing wording was removed. * fix(skills): sync activation triggers into the Codex skill mirror 10 of the skills whose descriptions changed are also mirrored under `.agents/skills/`, where the description was previously a verbatim copy. Left alone, the two surfaces would disagree about when the skill applies. Only the description line is synced; the Codex copies keep their reduced frontmatter, since that validator accepts only name, description, metadata, license, and allowed-tools. * fix(skills): correct three activation clauses from review - autonomous-loops: the clause pulled new loop work into a skill that its own body marks as a compatibility shim retained for one release. It now points at the canonical continuous-agent-loop instead. - continuous-learning: the description carried the v1 routing directive twice; collapsed to one. - homelab-pihole-dns: the clause fired on any broken home DNS. Narrowed to tasks that actually involve Pi-hole. * chore: retain current main lockfile --------- Co-authored-by: Çağrı Solakoğlu <cagri.solakoglu@vtcenerji.com> Co-authored-by: haelyra <49814733+haelyra@users.noreply.github.com>
165 lines
5.2 KiB
Markdown
165 lines
5.2 KiB
Markdown
---
|
|
name: cisco-ios-patterns
|
|
description: Cisco IOS and IOS-XE review patterns for show commands, config hierarchy, wildcard masks, ACL placement, interface hygiene, and safe change-window verification. Use when reading, writing, or reviewing Cisco IOS / IOS-XE configuration or planning a change window.
|
|
metadata:
|
|
origin: community
|
|
---
|
|
|
|
# Cisco IOS Patterns
|
|
|
|
Use this skill when reviewing Cisco IOS or IOS-XE snippets, building a
|
|
change-window checklist, or explaining how to collect evidence from a router or
|
|
switch without making the incident worse.
|
|
|
|
## When to Use
|
|
|
|
- Reviewing IOS or IOS-XE configuration before a planned change.
|
|
- Choosing read-only `show` commands for troubleshooting.
|
|
- Checking ACL wildcard masks and interface direction.
|
|
- Explaining global, interface, routing process, and line configuration modes.
|
|
- Verifying that a change landed in running config and was saved intentionally.
|
|
|
|
## Operating Rules
|
|
|
|
Treat IOS examples as patterns, not paste-ready production changes. Confirm the
|
|
platform, interface names, current config, rollback path, and out-of-band access
|
|
before making changes on a real device.
|
|
|
|
Prefer this workflow:
|
|
|
|
1. Capture current state with read-only commands.
|
|
2. Review the exact candidate config.
|
|
3. Confirm management access cannot be locked out.
|
|
4. Apply the smallest change in a maintenance window.
|
|
5. Re-read state, compare to the baseline, then save only after validation.
|
|
|
|
## Mode Reference
|
|
|
|
```text
|
|
Router> enable
|
|
Router# show running-config
|
|
Router# configure terminal
|
|
Router(config)# interface GigabitEthernet0/1
|
|
Router(config-if)# description UPLINK-TO-CORE
|
|
Router(config-if)# no shutdown
|
|
Router(config-if)# exit
|
|
Router(config)# end
|
|
Router# show running-config interface GigabitEthernet0/1
|
|
```
|
|
|
|
`running-config` is active memory. `startup-config` is what survives reload.
|
|
Do not save a change just because a command was accepted; validate behavior
|
|
first, then use `copy running-config startup-config` if the change is approved.
|
|
|
|
## Read-Only Collection
|
|
|
|
```text
|
|
show version
|
|
show inventory
|
|
show processes cpu sorted
|
|
show memory statistics
|
|
show logging
|
|
show running-config | section line vty
|
|
show running-config | section interface
|
|
show running-config | section router bgp
|
|
show ip interface brief
|
|
show interfaces
|
|
show interfaces status
|
|
show vlan brief
|
|
show mac address-table
|
|
show spanning-tree
|
|
show ip route
|
|
show ip protocols
|
|
show ip access-lists
|
|
show route-map
|
|
show ip prefix-list
|
|
```
|
|
|
|
Collect the specific section you need instead of dumping full config into a
|
|
ticket when the config may contain secrets, customer names, or private topology.
|
|
|
|
## Wildcard Masks
|
|
|
|
IOS ACL and many routing statements use wildcard masks, not subnet masks.
|
|
|
|
```text
|
|
Subnet mask Wildcard mask
|
|
255.255.255.255 0.0.0.0
|
|
255.255.255.252 0.0.0.3
|
|
255.255.255.0 0.0.0.255
|
|
255.255.0.0 0.0.255.255
|
|
```
|
|
|
|
Review wildcard masks before deployment. A subnet mask accidentally used as a
|
|
wildcard can match far more traffic than intended.
|
|
|
|
```text
|
|
ip access-list extended WEB-IN
|
|
10 permit tcp 192.0.2.0 0.0.0.255 any eq 443
|
|
999 deny ip any any log
|
|
```
|
|
|
|
Every ACL has an implicit deny at the end. Add an explicit logged deny when the
|
|
operational goal includes observing misses, and confirm logging volume is safe.
|
|
|
|
## ACL Placement Review
|
|
|
|
Before applying an ACL to an interface, answer these questions:
|
|
|
|
- Which traffic direction is being filtered, `in` or `out`?
|
|
- Is management traffic sourced from a known jump host or management subnet?
|
|
- Is there an explicit permit for required routing, DNS, NTP, monitoring, or
|
|
application traffic?
|
|
- Are hit counters available from a safe test source?
|
|
- Is there a rollback command and an active console or out-of-band path?
|
|
|
|
Do not test reachability by removing firewall or ACL protections. Read counters,
|
|
logs, and route state first.
|
|
|
|
## Interface Hygiene
|
|
|
|
```text
|
|
interface GigabitEthernet0/1
|
|
description UPLINK-TO-CORE
|
|
switchport mode trunk
|
|
switchport trunk allowed vlan 10,20,30
|
|
switchport trunk native vlan 999
|
|
no shutdown
|
|
```
|
|
|
|
Use clear descriptions, explicit switchport mode, and documented native VLANs.
|
|
On routed interfaces, confirm the mask, peer addressing, and routing process
|
|
before assuming link state means forwarding is correct.
|
|
|
|
## Change-Window Verification
|
|
|
|
Use before/after checks that match the actual change.
|
|
|
|
```text
|
|
show running-config | section interface GigabitEthernet0/1
|
|
show interfaces GigabitEthernet0/1
|
|
show logging | include GigabitEthernet0/1|changed state|line protocol
|
|
show ip route <prefix>
|
|
show ip access-lists <name>
|
|
```
|
|
|
|
For routing changes, also capture neighbor state and route tables before and
|
|
after the change. For ACL changes, compare hit counters from a planned test
|
|
source rather than relying on a generic ping.
|
|
|
|
## Anti-Patterns
|
|
|
|
- Applying a generated config without a device-specific diff.
|
|
- Saving configuration before post-change checks pass.
|
|
- Using a subnet mask where IOS expects a wildcard mask.
|
|
- Applying an ACL to the wrong interface direction.
|
|
- Troubleshooting by disabling ACLs, route policies, or authentication.
|
|
- Pasting full configs into public tools without sanitizing secrets and topology.
|
|
|
|
## See Also
|
|
|
|
- Agent: `network-config-reviewer`
|
|
- Agent: `network-troubleshooter`
|
|
- Skill: `network-config-validation`
|
|
- Skill: `network-interface-health`
|