workspace/skills/aws-cloud-monitoring/SKILL.md
AWS CloudWatch monitoring — metrics, alarms, log queries, VPC flow log analysis, network performance. Use when checking AWS alarms, analyzing VPC flow logs, investigating network latency, or monitoring VPN and NAT Gateway metrics.
npx skillsauth add automateyournetwork/netclaw aws-cloud-monitoringInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
uvx awslabs.cloudwatch-mcp-server@latest (stdio transport)AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION (or AWS_PROFILE)When a user asks "how is our AWS network performing?":
When investigating traffic patterns or security events:
| Service | Metric | What It Tells You |
|---------|--------|-------------------|
| VPN | TunnelState | 0=down, 1=up for each tunnel |
| VPN | TunnelDataIn/Out | Bytes through each VPN tunnel |
| NAT GW | ActiveConnectionCount | Active NAT connections |
| NAT GW | PacketsDropCount | Packets dropped (capacity issue) |
| NAT GW | BytesProcessed | Traffic volume through NAT |
| TGW | BytesIn/BytesOut | Traffic per TGW attachment |
| TGW | PacketDropCountBlackhole | Blackhole route drops |
| ELB | HealthyHostCount | Healthy targets behind ALB/NLB |
| ELB | TargetResponseTime | Backend latency |
| EC2 | NetworkIn/NetworkOut | Instance network throughput |
| EC2 | NetworkPacketsIn/Out | Instance packet rate |
# Top rejected connections in last hour
fields @timestamp, srcAddr, dstAddr, dstPort, action
| filter action = "REJECT"
| stats count() as rejections by srcAddr, dstAddr, dstPort
| sort rejections desc
| limit 20
# Traffic from specific source
fields @timestamp, srcAddr, dstAddr, dstPort, bytes, action
| filter srcAddr = "10.0.1.50"
| sort @timestamp desc
# Top talkers by bytes
fields srcAddr, dstAddr, bytes
| stats sum(bytes) as totalBytes by srcAddr, dstAddr
| sort totalBytes desc
| limit 10
AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION (or AWS_PROFILE)testing
Human-in-the-loop escalation via HumanRail — route low-confidence agent decisions, pre-destructive operation approvals, and ambiguous incident tickets to real human engineers. Human answers are verified and returned as structured output. Workers are paid via Lightning Network. Use when the agent is uncertain, when a destructive change needs explicit human sign-off beyond a ServiceNow CR, or when an ambiguous ticket requires human triage before automated handling.
testing
Manage EVE-NG node lifecycle. Use when listing nodes, checking runtime state, creating or deleting nodes, starting or stopping nodes or whole labs, verifying node details, or wiping node NVRAM back to factory defaults.
development
Manage EVE-NG labs and platform inventory. Use when listing labs, checking lab metadata, creating or deleting labs, importing or exporting lab archives, checking EVE-NG health or auth, or verifying available node images before build work.
tools
Execute live CLI commands on running EVE-NG nodes over telnet console. Use when running show commands, making live config changes, verifying protocol state, testing connectivity, checking console readiness, or interacting with IOS, Junos, VPCS, EOS, or NX-OS nodes.