โ† All skills
Tencent SkillHub ยท Other

Relayplane

Save ~$47/mo on a typical $100/mo OpenClaw spend. Local proxy routes simple tasks to cheaper models automatically.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Save ~$47/mo on a typical $100/mo OpenClaw spend. Local proxy routes simple tasks to cheaper models automatically.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
CHANGELOG.md, README.md, SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
4.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

RelayPlane

OpenRouter routes. RelayPlane observes, governs, and learns. Agent ops for OpenClaw power users. Your agents make hundreds of API calls per session โ€” RelayPlane gives you visibility, cost control, and governance over all of them.

What It Does

RelayPlane is an optional optimization layer that sits in your agent's request pipeline. It routes simple tasks to cheaper models, enforces budgets, and logs everything โ€” with automatic fallback to direct provider calls if anything goes wrong. Key principle: RelayPlane is never a dependency. If the proxy dies, your agents keep working. Zero downtime, guaranteed.

Installation

npm install -g @relayplane/proxy@latest

Quick Start

# 1. Start the proxy (runs on localhost:4100 by default) relayplane-proxy # 2. Add to your openclaw.json: # { "relayplane": { "enabled": true } } # 3. That's it. OpenClaw routes through RelayPlane when healthy, # falls back to direct provider calls automatically.

โš ๏ธ Important: Do NOT Set BASE_URL

Never do this: # โŒ WRONG โ€” hijacks ALL traffic, breaks OpenClaw if proxy dies export ANTHROPIC_BASE_URL=http://localhost:4100 Instead, use the config approach: // โœ… RIGHT โ€” openclaw.json { "relayplane": { "enabled": true } } The config approach uses a circuit breaker โ€” if the proxy is down, traffic goes direct. The BASE_URL approach has no fallback and will take down your entire system.

Architecture

Agent โ†’ OpenClaw Gateway โ†’ Circuit Breaker โ†’ RelayPlane Proxy โ†’ Provider โ†“ (on failure) Direct to Provider Circuit breaker: 3 consecutive failures โ†’ proxy bypassed for 30s Auto-recovery: Health probes detect when proxy comes back Process management: Gateway can spawn/manage the proxy automatically

Configuration

Minimal (everything else has defaults): { "relayplane": { "enabled": true } } Full options: { "relayplane": { "enabled": true, "proxyUrl": "http://127.0.0.1:4100", "autoStart": true, "circuitBreaker": { "failureThreshold": 3, "resetTimeoutMs": 30000, "requestTimeoutMs": 3000 } } }

Commands

CommandDescriptionrelayplane-proxyStart the proxy serverrelayplane-proxy statsView usage and cost breakdownrelayplane-proxy --port 8080Custom portrelayplane-proxy --offlineNo telemetryrelayplane-proxy --helpShow all options

Programmatic Usage (v1.3.0+)

import { RelayPlaneMiddleware, resolveConfig } from '@relayplane/proxy'; const config = resolveConfig({ enabled: true }); const middleware = new RelayPlaneMiddleware(config); // Route a request โ€” tries proxy, falls back to direct const response = await middleware.route(request, directSend); // Check status const status = middleware.getStatus(); console.log(middleware.formatStatus());

Advanced: Full Agent Ops Proxy

import { createSandboxedProxyServer } from '@relayplane/proxy'; const { server, middleware } = createSandboxedProxyServer({ enableLearning: true, // Enable pattern detection enforcePolicies: true, // Enforce budget/model policies relayplane: { enabled: true }, // Circuit breaker wrapping }); await server.start(); // All three pillars active: Observes + Governs + Learns // Circuit breaker protects against proxy failures

What's New in v1.4.0

Three Pillars โ€” All Integrated: Observes (Learning Ledger) โ€” every run captured, full decision explainability Governs (Policy Engine) โ€” budget caps, model allowlists, approval gates Learns (Learning Engine) โ€” pattern detection, cost suggestions, rule management Sandbox Architecture (v1.3.0+): Circuit breaker โ€” automatic failover, no more system outages Process manager โ€” proxy runs as managed child process Health probes โ€” active recovery detection Stats & observability โ€” p50/p95/p99 latencies, request counts, circuit state Learning Engine Endpoints (v1.4.0): GET /v1/analytics/summary โ€” analytics with date range POST /v1/analytics/analyze โ€” detect patterns, anomalies, generate suggestions GET /v1/suggestions โ€” list pending suggestions POST /v1/suggestions/:id/approve / reject โ€” suggestion workflow GET /v1/rules โ€” active rules GET /v1/rules/:id/effectiveness โ€” is this rule helping?

Privacy

Your prompts stay local โ€” never sent to RelayPlane servers Anonymous telemetry โ€” only token counts, latency, model used Opt-out anytime โ€” relayplane-proxy telemetry off Fully offline mode โ€” relayplane-proxy --offline

Links

Docs: https://relayplane.com/docs GitHub: https://github.com/RelayPlane/proxy npm: https://www.npmjs.com/package/@relayplane/proxy

Category context

Long-tail utilities that do not fit the current primary taxonomy cleanly.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
3 Docs
  • SKILL.md Primary doc
  • CHANGELOG.md Docs
  • README.md Docs