用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/kbarbel640-del/skills --skill remote-agent命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | remote-agent |
| description | Bridge to external vertical agents (Google ADK, VeADK, etc.) for specialized tasks. |
| metadata | {"openclaw":{"emoji":"🔗","requires":{"env":["REMOTE_AGENT_URL"]}}} |
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.
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.When the user asks a question that falls into the domain of a specialized remote agent, use this skill to forward the request.
python3 skills/remote-agent/scripts/client.py --query "<USER_QUERY>" [--agent "<AGENT_ID>"]
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"