# Send clawhub-skill-remote-agent 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. 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. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawhub-skill-remote-agent",
    "name": "clawhub-skill-remote-agent",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/sqsge/clawhub-skill-remote-agent",
    "canonicalUrl": "https://clawhub.ai/sqsge/clawhub-skill-remote-agent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawhub-skill-remote-agent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-skill-remote-agent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/client.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "clawhub-skill-remote-agent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T19:23:46.359Z",
      "expiresAt": "2026-05-11T19:23:46.359Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-skill-remote-agent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawhub-skill-remote-agent",
        "contentDisposition": "attachment; filename=\"clawhub-skill-remote-agent-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "clawhub-skill-remote-agent"
      },
      "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/clawhub-skill-remote-agent"
    },
    "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/clawhub-skill-remote-agent",
    "downloadUrl": "https://openagent3.xyz/downloads/clawhub-skill-remote-agent",
    "agentUrl": "https://openagent3.xyz/skills/clawhub-skill-remote-agent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawhub-skill-remote-agent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawhub-skill-remote-agent/agent.md"
  }
}
```
## Documentation

### Remote Agent Bridge

This skill enables OpenClaw to delegate tasks to external, specialized AI agents via a standard HTTP interface. Use this when the user's request requires domain-specific knowledge (e.g., enterprise data, financial analysis, legal review) that is handled by a separate agent system.

### Configuration

Ensure the following environment variables are set in your OpenClaw environment (e.g., via .env or openclaw config):

REMOTE_AGENT_URL: The HTTP endpoint of the external agent (e.g., https://remote-agent.example.com/run or your Google ADK endpoint).
REMOTE_AGENT_KEY: (Optional) The Bearer token for authentication.

### Usage

When the user asks a question that falls into the domain of a specialized remote agent, use this skill to forward the request.

### Command

python3 skills/remote-agent/scripts/client.py --query "<USER_QUERY>" [--agent "<AGENT_ID>"]

### Examples

Scenario 1: Financial Analysis (VeADK)

User: "Analyze the Q3 earnings report for TechCorp."
Thought: The user is asking for financial analysis. I should delegate this to the 'financial-expert' agent.
Action:

python3 skills/remote-agent/scripts/client.py --agent "financial-expert" --query "Analyze the Q3 earnings report for TechCorp"

Scenario 2: Enterprise Knowledge (Google ADK)

User: "What is the company policy on remote work?"
Thought: This requires internal knowledge. I'll ask the 'hr-bot'.
Action:

python3 skills/remote-agent/scripts/client.py --agent "hr-bot" --query "company policy on remote work"

Scenario 3: Custom LangChain Backend

User: "Run the data processing pipeline."
Action:

python3 skills/remote-agent/scripts/client.py --query "Run the data processing pipeline"
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: sqsge
- 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-04T19:23:46.359Z
- Expires at: 2026-05-11T19:23:46.359Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawhub-skill-remote-agent)
- [Send to Agent page](https://openagent3.xyz/skills/clawhub-skill-remote-agent/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawhub-skill-remote-agent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawhub-skill-remote-agent/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawhub-skill-remote-agent)