Token导航 LogoToken导航TokenDH.com
效率执行命令clawhub未标认证来源可访问clear审计通过

stealth-proxy隐形 Agent

Agent Skill

stealth-proxy 用于辅助安全审计、权限检查和凭据风险排查,适合在 OpenClaw 中需要复核安全边界、认证流程或敏感配置时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

21,976

周安装

944

GitHub Stars

公开资料未说明

下载量

7,703
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install stealth-proxy

简介

stealth-proxy 检测地理封锁并安全切换 VPN 隧道路径。

  • 验证 IP/DNS 安全性,支持被阻断任务的重试机制。
  • 适用于跨境数据整理、反爬虫突破等需要隐藏身份的场合。stealth-proxy 属于效率类 Skill,可作为该场景下的辅助能力补充。
  • 切换网络可能违反目标平台服务条款,使用需用户自行承担风险。
  • 日志记录连接详情,建议开启审计模式以便追溯操作历史。

SKILL.md

name
vpn
description
Meta-skill for secure network tunnel setup, geo-access diagnostics, and leak-aware task resumption by orchestrating shell-scripting, curl-http, wireguard, tailscale, dns, ipinfo, and moltguard. Use when users need controlled VPN switching, region verification, DNS safety checks, and automatic retry of previously blocked workflows.
homepage
https://clawhub.ai
user-invocable
true
disable-model-invocation
false
metadata
{"openclaw":{"emoji":"🔐","requires":{"bins":["bash","curl"],"anyBins":["nordvpn","mullvad","expressvpn","wg","tailscale"],"env":[],"config":[]},"note":"Requires at least one tunnel path (provider CLI, WireGuard, or Tailscale exit node). Optional security/geo enrichment: MoltGuard and IPinfo."}}

Purpose

Establish a secure, verified path when access is blocked by geo/IP policy, then resume the blocked workflow safely and audibly.

Primary outcomes:

  1. detect and classify block behavior,
  2. switch to a valid tunnel path with explicit user consent,
  3. verify public IP, region, and DNS safety posture,
  4. re-run blocked task with bounded retries,
  5. return an auditable connection report.

This is an orchestration skill. It does not guarantee legal access to restricted services.

Required Installed Skills

Core diagnostics/orchestration:

  • shell-scripting (inspected latest: 1.0.0)
  • curl-http (inspected latest: 1.0.0)

Tunnel path options (at least one):

  • provider CLI path (NordVPN / Mullvad / ExpressVPN) via shell orchestration
  • wireguard (inspected latest: 1.0.0)
  • tailscale (inspected latest: 1.0.0)

Safety and verification extensions:

  • dns (inspected latest: 1.0.0)
  • ipinfo (inspected latest: 1.0.0)
  • moltguard (inspected latest: 6.0.2, optional but recommended)

Install/update:

npx -y clawhub@latest install shell-scripting
npx -y clawhub@latest install curl-http
npx -y clawhub@latest install wireguard
npx -y clawhub@latest install tailscale
npx -y clawhub@latest install dns
npx -y clawhub@latest install ipinfo
npx -y clawhub@latest install moltguard
npx -y clawhub@latest update --all

Verify:

npx -y clawhub@latest list

Required Credentials and Access

Required access:

  • valid account/session for selected tunnel path
  • local executable for selected path (nordvpn/mullvad/expressvpn or wg or tailscale)

Optional keys:

  • MOLTGUARD_API_KEY (if MoltGuard remote detection mode is enabled)
  • IPINFO_TOKEN (optional, higher quota geolocation verification)

Preflight:

command -v nordvpn || command -v mullvad || command -v expressvpn || command -v wg || command -v tailscale
echo "$MOLTGUARD_API_KEY" | wc -c
echo "$IPINFO_TOKEN" | wc -c

Mandatory behavior:

  • Never fail silently on missing keys/auth.
  • Always return MissingAPIKeys and/or MissingCredentials with blocked stages.
  • Continue with non-blocked diagnostics and mark output as Partial when needed.

Compliance Gate (Mandatory)

Before any tunnel switch, confirm and record:

  • user authorization to modify network routing,
  • acknowledgment of legal/terms responsibility,
  • stated purpose for geo-switch (testing, parity checks, privacy hardening).

If acknowledgment is missing:

  • do not execute switching commands,
  • return diagnostics-only output.

Inputs the LM Must Collect First

  • blocked_url or blocked_endpoint
  • blocked_task_name (example: prediction-market-arbitrage)
  • target_region
  • tunnel_path (provider-cli, wireguard, tailscale-exit-node)
  • provider_or_profile (provider name, WG profile, or exit-node name)
  • risk_mode (diagnose-only, switch-and-verify, switch-and-resume)
  • kill_switch_required (yes/no)
  • max_retries (default: 2)

Do not execute switching before tunnel path and target region are explicit.

Tool Responsibilities

shell-scripting

Use as control plane:

  • executable detection,
  • connect/disconnect wrappers,
  • retry and cleanup logic,
  • deterministic logging.

curl-http

Use for protocol-level evidence:

  • baseline and post-switch HTTP checks,
  • 403/geo-block signature capture,
  • header and status comparisons.

wireguard

Use when deterministic profile-based tunnels are required:

  • controlled profile activation,
  • route and AllowedIPs sanity expectations,
  • DNS handling awareness in tunnel config.

tailscale

Use for tailnet and exit-node path:

  • tailscale up --exit-node=<node>,
  • connectivity validation via tailscale ping/status,
  • fast fallback among available exit nodes.

dns

Use for DNS leak and propagation sanity guidance:

  • resolver checks,
  • authoritative vs cached record reasoning,
  • explicit leak-risk interpretation when DNS path remains local.

ipinfo

Use for geo-attestation:

  • validate post-switch country/region/ASN,
  • compare with baseline,
  • provide confidence level for geo-alignment.

moltguard

Use as prompt/tool security guardrail:

  • sanitize sensitive prompt/tool content,
  • detect prompt-injection patterns in fetched content,
  • reduce accidental secret leakage in workflow logs.

Important limitation:

  • MoltGuard is not a VPN manager and not a full network leak detector.

Canonical Causal Signal Chain

  1. Block Detection
  • baseline request to blocked endpoint,
  • classify as geo_block, ip_block, auth_block, or other_http_error.
  1. Baseline Snapshot
  • capture pre-switch public IP, country, and resolver context.
  1. Tunnel Path Selection
  • choose one path:

- provider CLI, - WireGuard profile, - Tailscale exit node.

  • verify binary/auth/profile availability before connect.
  1. Tunnel Activation
  • connect selected path,
  • confirm session state from tool output,
  • enforce kill-switch preference if available.
  1. Geo and IP Verification
  • compare pre/post public IP,
  • verify target country best-effort (ipinfo.io + optional token),
  • record confidence if country mismatches.
  1. DNS Safety Check
  • check resolver behavior and detect obvious DNS bypass patterns,
  • flag risk if DNS appears untunneled in full-tunnel expectation.
  1. Access Retest
  • retry blocked endpoint,
  • compare HTTP status/content signatures against baseline.
  1. Task Resumption
  • if retest passes, resume blocked workflow automatically (switch-and-resume mode),
  • otherwise rotate endpoint/profile once within retry budget and stop with evidence.

Suggested verification commands:

curl -s ifconfig.me
curl -s https://ipinfo.io/json
curl -I "${BLOCKED_URL}"

Leak and Safety Checks

Minimum checks before success:

  • public IP changed,
  • target country aligned (or deviation explicitly explained),
  • endpoint moved from blocked to reachable/expected-auth state,
  • DNS path does not contradict tunnel expectations,
  • no unresolved high-risk MoltGuard warning (if enabled).

If kill-switch is required but not supported/verified:

  • return Needs Review and avoid high-risk task resumption.

Output Contract

Always return:

  • BlockDiagnosis

- block type - baseline HTTP evidence

  • TunnelPath

- selected path and rationale - provider/profile/exit node

  • TunnelStatus

- connect state - pre/post IP - target region match

  • DNSSafety

- resolver observation - leak risk assessment (low|medium|high)

  • SecurityStatus

- MoltGuard mode (enabled, gateway-only, disabled) - unresolved warnings

  • AccessRetest

- post-switch result - improvement vs baseline

  • TaskResumption

- resumed or blocked - reason

  • NextActions

- exact commands or account steps for unresolved blockers

Quality Gates

Before final output, verify:

  • diagnosis is evidence-based,
  • pre/post network evidence is present,
  • retry count respected,
  • missing credentials/keys clearly disclosed,
  • provider/path limitations explicitly stated.

If any gate fails, return Needs Revision with concrete missing checks.

Failure Handling

  • Missing tunnel binary/profile: return MissingCredentials with concrete install/profile steps.
  • Missing VPN account/auth session: return MissingCredentials, skip switching stage.
  • Missing MOLTGUARD_API_KEY in detection mode: return MissingAPIKeys, continue with gateway-only or disabled mode.
  • Tunnel connected but geo mismatch persists: one bounded retry with different endpoint/profile, then stop.
  • Endpoint still blocked after retry: return full evidence bundle and manual-decision path.

Guardrails

  • Never claim legal or terms compliance on behalf of user.
  • Never claim secure state without pre/post verification.
  • Never unbounded-loop region hopping.
  • Never hide ambiguous or failed access states.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.42%
按下载量换算5,733

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install stealth-proxy 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills