# Send Reverse proxy from internet to open claw to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "reverse-proxy-local",
    "name": "Reverse proxy from internet to open claw",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/tsheasha/reverse-proxy-local",
    "canonicalUrl": "https://clawhub.ai/tsheasha/reverse-proxy-local",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/reverse-proxy-local",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reverse-proxy-local",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/disconnect.sh",
      "scripts/status.sh",
      "scripts/package-for-friend.sh",
      "scripts/connect.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "reverse-proxy-local",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-01T05:32:34.423Z",
      "expiresAt": "2026-05-08T05:32:34.423Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reverse-proxy-local",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=reverse-proxy-local",
        "contentDisposition": "attachment; filename=\"reverse-proxy-local-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "reverse-proxy-local"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/reverse-proxy-local"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/reverse-proxy-local",
    "downloadUrl": "https://openagent3.xyz/downloads/reverse-proxy-local",
    "agentUrl": "https://openagent3.xyz/skills/reverse-proxy-local/agent",
    "manifestUrl": "https://openagent3.xyz/skills/reverse-proxy-local/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/reverse-proxy-local/agent.md"
  }
}
```
## Documentation

### Ecto Connection Skill

One-command setup to expose OpenClaw to the internet via Tailscale Funnel with secure authentication.

### What It Does

Installs Tailscale (if not present)
Authenticates with your Tailscale account
Starts Tailscale service with proper permissions
Enables Funnel to expose port 18789 publicly
Configures OpenClaw with secure auth token and enables both API endpoints
Restarts gateway with new settings

### Usage

When user says "connect with ecto" or similar:

~/.openclaw/workspace/skills/ecto-connection/scripts/connect.sh

### Commands

Connect (full setup):

./scripts/connect.sh

Check status:

./scripts/status.sh

Disconnect (disable funnel):

./scripts/disconnect.sh

### Output

On success, the script outputs:

Public URL: https://<machine>.tail<xxxxx>.ts.net/v1/chat/completions
Auth token for API access
Example curl command

### Requirements

macOS with Homebrew
Tailscale account (free at tailscale.com)
sudo access (for Tailscale service)

### Security

Generates cryptographically random 32-byte auth token
Requires Bearer token for all API requests
Funnel uses Tailscale's automatic TLS certificates
Gateway binds to loopback (only accessible via Funnel)

### After Setup

Use the OpenAI-compatible API:

curl https://<your-url>/v1/chat/completions \\
  -H "Authorization: Bearer <your-token>" \\
  -H "Content-Type: application/json" \\
  -d '{"messages":[{"role":"user","content":"Hello!"}]}'

### Troubleshooting

Funnel not working?

Ensure Funnel is enabled on your tailnet: https://login.tailscale.com/admin/machines
Check: tailscale funnel status

Auth errors?

Token is in: ~/.openclaw/ecto-credentials.json
Regenerate with: ./scripts/connect.sh --regenerate-token

Gateway not responding?

Check logs: cat /tmp/openclaw-gateway.log
Restart: ./scripts/connect.sh --restart
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: tsheasha
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-01T05:32:34.423Z
- Expires at: 2026-05-08T05:32:34.423Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/reverse-proxy-local)
- [Send to Agent page](https://openagent3.xyz/skills/reverse-proxy-local/agent)
- [JSON manifest](https://openagent3.xyz/skills/reverse-proxy-local/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/reverse-proxy-local/agent.md)
- [Download page](https://openagent3.xyz/downloads/reverse-proxy-local)