Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计提醒

aws-network-opsAWS network OPS 搜索

Agent Skill

用于辅助云资源、部署、容器、基础设施和运维自动化任务。它适合让 Agent 检查配置、整理部署步骤、分析资源状态、生成排障思路或辅助云服务接入。使用时需要明确目标环境、账号权限、区域和资源组,区分本地测试与生产操作;涉及删除资源、重启服务、修改网络或权限配置时,应先确认影响范围。

总安装

233

周安装

10

GitHub Stars

462

下载量

82
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:aws-network-ops(AWS network OPS 搜索)
来源仓库:https://github.com/automateyournetwork/netclaw
仓库路径:skills/aws-network-ops
安装命令:
npx skills add https://github.com/automateyournetwork/netclaw --skill aws-network-ops
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/automateyournetwork/netclaw --skill aws-network-ops

简介

用于查询 AWS 网络资源的拓扑结构与连接关系,支持路径追踪与 IP 归属分析。

  • 它适合让 Agent 获取 VPC、子网、ENI 等组件详情,并协助诊断网络连通性问题。
  • 使用时需提供有效的 AWS 凭证和区域信息,所有操作均为只读模式不可修改配置。
  • 安装需通过 npx skills add 命令从 automateyournetwork/netclaw 仓库添加 aws-network-ops 技能。
  • 包含 27 个专用工具覆盖通用网络查询与 VPC 专项功能,适用于运维排障与架构审查场景。

SKILL.md

AWS Network Operations

MCP Server

  • Command: uvx awslabs.aws-network-mcp-server@latest (stdio transport)
  • Requires: AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION (or AWS_PROFILE)
  • Read-only: All operations are Describe/Get/List — no create/modify/delete

Available Tools (27)

General (3)

ToolWhat It Does
get_path_trace_methodologyGuidance for tracing network paths across AWS resources
find_ip_addressFind which VPC/subnet/ENI an IP address belongs to
get_eni_detailsGet Elastic Network Interface details — security groups, subnet, routes

VPC (3)

ToolWhat It Does
list_vpcsList all VPCs in the account/region
get_vpc_network_detailsFull VPC details — subnets, route tables, IGW, NAT GW, endpoints, NACLs
get_vpc_flow_logsQuery VPC flow logs for traffic analysis

Transit Gateway (7)

ToolWhat It Does
list_transit_gatewaysList all Transit Gateways
get_tgw_detailsTransit Gateway details — attachments, route tables, associations
get_tgw_routesGet routes from a specific TGW route table
get_all_tgw_routesGet routes from all TGW route tables
get_tgw_flow_logsQuery Transit Gateway flow logs
list_tgw_peeringsList TGW peering connections
detect_tgw_inspectionDetect if traffic inspection is configured on a TGW

Cloud WAN (10)

ToolWhat It Does
list_core_networksList all Cloud WAN core networks
get_cloudwan_detailsCore network details — segments, policies, attachments
get_cloudwan_routesGet routes from a Cloud WAN segment
get_all_cloudwan_routesGet routes from all Cloud WAN segments
get_cloudwan_attachment_detailsDetails for a specific Cloud WAN attachment
detect_cloudwan_inspectionDetect inspection configuration on Cloud WAN
list_cloudwan_peeringsList Cloud WAN peering connections
get_cloudwan_peering_detailsDetails for a specific Cloud WAN peering
get_cloudwan_logsQuery Cloud WAN logs
simulate_cloud_wan_route_changeSimulate a route change and predict impact

VPN (1)

ToolWhat It Does
list_vpn_connectionsList all site-to-site VPN connections with tunnel status

Network Firewall (3)

ToolWhat It Does
list_network_firewallsList all AWS Network Firewalls
get_firewall_rulesGet firewall rule groups and policies
get_network_firewall_flow_logsQuery Network Firewall flow logs

Workflow: VPC Network Audit

When a user asks "show me our AWS network" or "audit the VPCs":

  1. List VPCs: list_vpcs to see all VPCs in the region
  2. For each VPC: get_vpc_network_details — subnets, route tables, gateways, NACLs
  3. Check TGW: list_transit_gateways to see cross-VPC connectivity
  4. Check VPN: list_vpn_connections for hybrid connectivity
  5. Check firewalls: list_network_firewalls for security posture
  6. Report: Formatted summary of the cloud network architecture

Workflow: Troubleshoot Connectivity

When a user asks "why can't EC2 instance X reach Y?":

  1. Find the IPs: find_ip_address for both source and destination
  2. Get ENI details: get_eni_details to check security groups, subnet, routes
  3. Check route tables: get_vpc_network_details to see routing
  4. Check flow logs: get_vpc_flow_logs to see if traffic is being dropped
  5. Check firewalls: get_firewall_rules if traffic crosses a Network Firewall
  6. Check TGW: get_tgw_routes if traffic crosses Transit Gateway
  7. Report: Root cause analysis with fix recommendation

Workflow: Transit Gateway Health

When checking multi-VPC connectivity:

  1. List TGWs: list_transit_gateways
  2. Get details: get_tgw_details for attachments and route tables
  3. Check routes: get_all_tgw_routes for route table completeness
  4. Check peerings: list_tgw_peerings for cross-region/cross-account
  5. Check inspection: detect_tgw_inspection for security posture
  6. Flow logs: get_tgw_flow_logs for traffic analysis

Workflow: VPN Tunnel Monitoring

When checking hybrid connectivity:

  1. List VPNs: list_vpn_connections
  2. Check tunnel status: Up/Down for each tunnel (redundancy check)
  3. Check routes: TGW or VGW routes for the VPN prefixes
  4. Flow logs: VPC flow logs for traffic across VPN
  5. Report: VPN health summary with any down tunnels flagged

Important Rules

  • Read-only — this MCP cannot create, modify, or delete any AWS resources
  • Region-specific — results are scoped to the configured AWS_REGION
  • IAM permissions required — EC2 Describe, Network Manager, Network Firewall Describe, CloudWatch Logs
  • Record in GAIT — log all AWS network investigations for audit trail

Environment Variables

  • AWS_ACCESS_KEY_ID — AWS access key
  • AWS_SECRET_ACCESS_KEY — AWS secret key
  • AWS_REGION — AWS region (e.g., us-east-1)
  • Or AWS_PROFILE — Named AWS CLI profile

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.45%
按下载量换算30

Claude

32.15%
按下载量换算26

Cursor

19.07%
按下载量换算16

Gemini CLI

8.77%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills