Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

network-tools网络工具

Agent Skill

network-tools 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,415

周安装

270

GitHub Stars

公开资料未说明

下载量

2,246
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:network-tools(网络工具)
来源仓库:https://github.com/savior-li/network-tools
安装命令:
openclaw skills install network-tools
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

ClawHubOpenClaw
openclaw skills install network-tools

简介

通过选择和管理本地网络工具以及针对阻塞和直接连接的自动代理路由,实现高效的互联网访问。

SKILL.md

Network Tools Skill

Description

Enables AI Agents to leverage various local network tools for efficient and reliable internet access. Supports intelligent tool selection, proxy routing, and comprehensive network diagnostics - all without requiring API keys.

Core Philosophy: Maximize network reliability, speed, and accessibility by providing a unified interface to the best available command-line network tools.

🔒 Security & Privacy Commitment

  • No External Dependencies: Uses only locally installed command-line tools
  • No API Keys Required: All functionality works without external authentication
  • Proxy Isolation: Optional SOCKS5 proxy support (127.0.0.1:9050) for restricted content
  • Input Validation: Validates URLs and parameters before execution
  • Transparent Operations: Clear logging of all network activities
  • Local Execution Only: All functionality operates within the OpenClaw environment

Available Network Tools

HTTP Clients (Core)

  • curl: Versatile HTTP client with extensive protocol support
  • wget: Reliable file downloader with resume capability
  • httpie: User-friendly HTTP client with excellent JSON support

Download Accelerators

  • aria2: High-speed download utility with multi-connection support (16 connections by default)
  • axel: Multi-threaded download accelerator with 10 connections

Network Diagnostics

  • dig/nslookup: DNS lookup and record querying
  • ping: Network connectivity testing
  • traceroute/mtr: Network path tracing and analysis
  • whois: Domain registration information lookup

Media Tools

  • youtube-dl: Video/audio downloading from 1000+ supported sites
  • ffmpeg: Media processing and format conversion (when needed)

Commands Overview

Basic Web Operations

  • fetch: Retrieve web content with intelligent tool selection
  • download: Download files with resume support and format detection

Network Diagnostics

  • dns: Query DNS records (A, AAAA, MX, TXT, CNAME, etc.)
  • ping: Test network connectivity and latency
  • traceroute: Trace network route to destination
  • whois: Get domain registration details
  • ipinfo: Retrieve public IP address from multiple services

Media Operations

  • media: Download videos, audio, and other media from supported platforms

Utility Commands

  • tools: List all available network tools and their status

Intelligent Features

Auto Tool Selection

  • Large Files (>10MB): Automatically uses aria2 or axel for faster downloads
  • JSON APIs: Prefers httpie for clean JSON output when available
  • Fallback Logic: Gracefully falls back to available tools if preferred tool is missing

Proxy Support

  • Manual Control: Use --proxy flag to force proxy usage
  • Direct Access: Default behavior uses direct connections for better performance
  • Universal Proxy: Works with all supported tools through environment variables or native proxy options

Enhanced Download Features

  • Resume Support: Continue interrupted downloads with --resume flag
  • Smart Filenames: Automatically generates safe filenames from URLs
  • Multiple Destinations: Specify custom output paths with --output

User-Agent Rotation

  • Anti-Detection: Rotates between realistic browser user agents
  • Tool-Specific: Uses appropriate user agents for different tools
  • Customizable: Can be extended with additional user agent strings

Usage Examples

Basic Operations

# Simple fetch with auto tool selection
network-tools fetch https://api.github.com/users/octocat

# Force proxy usage for restricted content
network-tools fetch --proxy https://blocked-api.com/data

# Specify exact tool to use
network-tools fetch --tool=httpie https://jsonplaceholder.typicode.com/posts/1

Advanced Downloads

# Large file download with resume capability
network-tools download --resume --output=myfile.zip https://example.com/large-file.zip

# Use specific download accelerator
network-tools download --tool=aria2 https://mirror.example.com/ubuntu.iso

# Custom headers for authentication or API keys
network-tools fetch --header="Authorization: Bearer token123" https://api.example.com/protected

Network Diagnostics

# DNS record lookup
network-tools dns --type MX google.com

# Network connectivity test
network-tools ping --count 10 example.com

# Route tracing
network-tools traceroute cloudflare.com

# Domain information
network-tools whois example.com

# Public IP detection (with proxy support)
network-tools ipinfo --proxy

Media Downloads

# YouTube video download
network-tools media --format mp4 https://youtube.com/watch?v=example

# Audio-only extraction
network-tools media --format bestaudio https://soundcloud.com/user/track

Tool Discovery

# Check available tools
network-tools tools

Error Handling & Recovery

Connection Resilience

  • Multiple Retries: Built-in retry logic for transient failures
  • Service Fallback: Multiple IP info services for reliability
  • Tool Fallback: Automatic switching to alternative tools on failure

Input Validation

  • URL Validation: Ensures proper URL format (http/https only)
  • Filename Safety: Sanitizes output filenames to prevent directory traversal
  • Parameter Validation: Validates all command-line options

Graceful Degradation

  • Partial Feature Support: Works even if only basic tools (curl/wget) are available
  • Clear Error Messages: Provides actionable error messages for missing dependencies
  • Help Integration: Built-in help with examples for all commands

Implementation Guidelines for AI Agents

When to Use This Skill

  • External Data Retrieval: Any need to fetch data from internet resources
  • File Downloads: Retrieving files, documents, datasets, or media
  • API Integration: Communicating with REST APIs and web services
  • Network Troubleshooting: Diagnosing connectivity or DNS issues
  • Media Processing: Downloading content from video/audio platforms

Best Practices

  1. Leverage Auto-Selection: Let the skill choose the best tool unless you have specific requirements
  2. Use Proxy Judiciously: Only enable proxy when accessing known restricted resources
  3. Handle Large Downloads: Use resume capability for large or unreliable downloads
  4. Validate Results: Always check download success and file integrity
  5. Respect Rate Limits: Implement appropriate delays between requests when doing batch operations

Security Considerations

  • Content Validation: Verify downloaded content before processing
  • URL Sanitization: Ensure URLs don't contain malicious parameters
  • File Safety: Scan downloaded files for malware when possible
  • Privacy Awareness: Avoid downloading sensitive content through shared proxies

Compatibility Requirements

Required Tools (at minimum)

  • curl OR wget (for basic HTTP operations)

Recommended Tools (for full functionality)

  • httpie (better JSON handling)
  • aria2c (fast downloads)
  • dig (DNS queries)
  • ping/traceroute (network diagnostics)
  • youtube-dl (media downloads)

Proxy Requirements

  • SOCKS5 Proxy: Local proxy at 127.0.0.1:9050 (optional, for restricted content access)

Language Support

  • English documentation and error messages
  • UTF-8 encoding support for international content and domains

Success Metrics

  • Reliability: High success rate across different network conditions
  • Performance: Optimal tool selection for fastest results
  • Compatibility: Works with minimal tool requirements
  • Security: Safe handling of network requests and responses
  • Usability: Intuitive command structure with helpful error messages

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

96.94%
按下载量换算2,177

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills