π¦ ClawHub
clawhub-skill-remote-agent
by @sqsge
Bridge to external vertical agents (Google ADK, VeADK, etc.) for specialized tasks.
π‘ 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"
βοΈ 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.TERMINAL
clawhub install clawhub-skill-remote-agent