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

nginx-explorernginx 浏览器

Agent Skill

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

总安装

5,826

周安装

238

GitHub Stars

公开资料未说明

下载量

1,885
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install nginx-explorer

简介

nginx-explorer 用于探索 nginx 代理目录下的工具和实用程序,适合运维环境发现。

  • 帮助用户定位特定任务的可用资源或脚本。nginx-explorer 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装后,按关键词快速检索相关工具集。
  • 安装前需确认目录访问权限,避免敏感配置暴露。
  • 建议定期更新工具列表,保持与 nginx 版本同步。

SKILL.md

name
nginx-explorer
description
Explore nginx-proxied directories to discover tools and utilities. Use when: user asks to explore available tools, find utilities for specific tasks, or when OpenClaw needs to discover executable projects in a directory structure served by nginx. Configuration requires nginx URL. Each directory contains README.md explaining contents and execution instructions.
metadata
openclaw
emoji
🔍
requires
bins
["curl"]
primaryEnv
NGINX_URL
env
NGINX_URL
description
The base URL of the nginx server (e.g., http://192.168.1.100:8080 or http://internal-tools.local)
required
true
type
string
example
http://192.168.1.100:8080
NGINX_SKIP_SSL_VERIFY
description
Skip SSL certificate verification (useful for internal networks with self-signed certificates)
required
false
type
boolean
default
true

Nginx Explorer Skill

Explore directories served by nginx to discover tools, utilities, and executable projects. Each main directory contains a README.md file that explains what's available and how to use it.

Configuration

This skill requires one environment variable:

  • NGINX_URL: The base URL of the nginx server (e.g., http://192.168.1.100:8080 or http://internal-tools.local)

Optional environment variable:

  • NGINX_SKIP_SSL_VERIFY: Set to true to skip SSL certificate verification (useful for internal networks with self-signed certificates). Default is true.

Configure in ~/.openclaw/openclaw.json:

{
  skills: {
    entries: {
      "nginx-explorer": {
        enabled: true,
        env: {
          NGINX_URL: "http://your-nginx-server:port",
          NGINX_SKIP_SSL_VERIFY: "true"  // Optional: skip SSL verification for internal networks
        }
      }
    }
  }
}

When to Use

USE this skill when:

  • User asks "what tools are available?" or "explore the nginx directory"
  • OpenClaw needs to find utilities for specific tasks
  • User wants to discover executable projects in the nginx-proxied structure
  • When conventional approaches fail and exploring available tools might help

DON'T use this skill when:

  • Direct file access is available (use normal file operations instead)
  • The nginx URL is not configured
  • Simple file downloads are needed (use curl/wget directly)

Configuration

The skill requires one configuration item:

  • NGINX_URL: The base URL of the nginx server (e.g., http://192.168.1.100:8080 or http://internal-tools.local)

How It Works

  1. Directory Discovery: Fetches the nginx directory listing (HTML)
  2. README Reading: For each directory, reads the README.md file to understand contents
  3. Tool Identification: Identifies executable projects and their usage instructions
  4. Download & Execution: Can download tools locally and run them as needed

Basic Usage

1. Configure the nginx URL

First, set the nginx URL in your environment or workspace:

# Set as environment variable
export NGINX_URL="http://192.168.1.100:8080"

# Or store in workspace config
echo '{"nginx_url": "http://192.168.1.100:8080"}' > /home/node/.openclaw/workspace/nginx-config.json

2. Explore the Directory Structure

# Fetch directory listing
curl -s "$NGINX_URL/" | grep -o 'href="[^"]*"' | grep -v '^href="\.' | cut -d'"' -f2

3. Read README Files

For each discovered directory:

# Check if README.md exists
curl -s -I "$NGINX_URL/tool-directory/README.md" | head -1 | grep "200"

# Read the README
curl -s "$NGINX_URL/tool-directory/README.md"

4. Download and Execute Tools

When a useful tool is found:

# Download the tool (assuming it's a script or archive)
curl -o /tmp/tool.sh "$NGINX_URL/tool-directory/tool.sh"

# Make executable if needed
chmod +x /tmp/tool.sh

# Run according to README instructions
/tmp/tool.sh --help

Workflow Examples

Example 1: Discovering Available Tools

#!/bin/bash
NGINX_URL="http://192.168.1.100:8080"

# Get all directories
echo "Exploring $NGINX_URL..."
DIRS=$(curl -s "$NGINX_URL/" | grep -o 'href="[^"]*/"' | grep -v '^href="\.' | cut -d'"' -f2 | sed 's|/$||')

for dir in $DIRS; do
    echo "=== $dir ==="
    # Try to read README
    README=$(curl -s "$NGINX_URL/$dir/README.md" 2>/dev/null)
    if [ -n "$README" ]; then
        echo "$README" | head -5
    else
        echo "No README found"
    fi
    echo
done

Example 2: Finding a Specific Type of Tool

#!/bin/bash
NGINX_URL="http://192.168.1.100:8080"

# Search for tools related to "data processing"
echo "Searching for data processing tools..."
DIRS=$(curl -s "$NGINX_URL/" | grep -o 'href="[^"]*/"' | grep -v '^href="\.' | cut -d'"' -f2 | sed 's|/$||')

for dir in $DIRS; do
    README=$(curl -s "$NGINX_URL/$dir/README.md" 2>/dev/null)
    if echo "$README" | grep -qi "data.*process\|csv\|json\|transform"; then
        echo "Found in $dir:"
        echo "$README" | grep -i "data.*process\|csv\|json\|transform" | head -3
        echo "---"
    fi
done

Example 3: Downloading and Running a Tool

#!/bin/bash
NGINX_URL="http://192.168.1.100:8080"
TOOL_DIR="data-processor"

# Read instructions
README=$(curl -s "$NGINX_URL/$TOOL_DIR/README.md")
echo "Tool instructions:"
echo "$README"

# Download main script
curl -o /tmp/processor.py "$NGINX_URL/$TOOL_DIR/processor.py"

# Download dependencies if mentioned
if echo "$README" | grep -q "requirements.txt"; then
    curl -o /tmp/requirements.txt "$NGINX_URL/$TOOL_DIR/requirements.txt"
    pip install -r /tmp/requirements.txt
fi

# Run the tool
python /tmp/processor.py --help

Integration with OpenClaw Decision Making

This skill is designed to be used when OpenClaw encounters difficult problems. The workflow:

  1. Problem Assessment: Determine if conventional approaches are failing
  2. Tool Exploration: Use this skill to explore available utilities
  3. Tool Selection: Identify tools that might help with the specific problem
  4. Tool Application: Download and use the selected tool

Decision Flow

User Request → Can OpenClaw solve it directly? → Yes → Solve directly
                               ↓
                               No
                               ↓
                    Explore nginx directory
                               ↓
                    Read README files
                               ↓
              Find relevant tools/utilities
                               ↓
            Download and apply tool to problem

Error Handling

  • Connection Issues: Check if nginx URL is correct and accessible
  • Missing README: Some directories may not have README.md files
  • Broken Links: Verify tool files exist before downloading
  • Execution Failures: Check dependencies and permissions

Best Practices

  1. Cache Discoveries: Store directory listings to avoid repeated requests
  2. Validate Tools: Test tools in isolated environment before use
  3. Clean Up: Remove downloaded files after use
  4. Document Findings: Update workspace notes with useful tools discovered

Example README Structure

Tools in the nginx directory should follow this README format:

# Tool Name

## Purpose
Brief description of what this tool does.

## Usage

./tool.sh [options]


## Dependencies
- Python 3.8+
- Required packages: requests, pandas

## Examples

Basic usage

./tool.sh --input data.csv --output results.json

Advanced usage

./tool.sh --config config.yaml --verbose


## Notes
Any additional information or warnings.

Security Considerations

  • Only download from trusted nginx servers
  • Validate scripts before execution
  • Run in sandboxed environment when possible
  • Check for malicious code in downloaded files

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.01%
按下载量换算1,395

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills