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)tools
Federate your NetClaw with other NetClaw operators over the BGP mesh — exchange capability inventories and ask your claw what a peer can do. (US1; remote invocation and chat land in later phases.)
tools
3D network topology visualization and interactive digital twin in Unreal Engine 5.8 via the built-in UE5 MCP server.
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
IPv4 and IPv6 subnet calculator - CIDR breakdown, usable hosts, previous/next subnets, address classification, VLSM planning, and dual-stack analysis. Use when calculating subnets, figuring out how many hosts fit in a prefix, planning IP addressing, getting wildcard masks for ACLs, or checking if two IPs are in the same subnet.