Free Ride - Unlimited free AI
PassAudited by ClawScan on May 7, 2026.
Overview
This skill appears purpose-aligned for configuring OpenClaw to use free OpenRouter models, but it does require an API key, changes OpenClaw’s default model settings, and offers an optional background watcher.
Install this only if you want FreeRide to manage OpenClaw's default model and fallback configuration. Keep your OpenRouter key private, consider backing up ~/.openclaw/openclaw.json, and only run freeride-watcher if you are comfortable with a background process that can keep changing model settings automatically.
Findings (4)
Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.
Your OpenClaw agent may start using different default and fallback models after the command runs.
The skill tells the agent/user to run CLI commands that change OpenClaw's default model configuration and restart the gateway.
freeride auto # Step 2: Restart gateway so OpenClaw picks up the changes openclaw gateway restart
Use it only when you intend to change OpenClaw's model settings; consider backing up ~/.openclaw/openclaw.json first.
The skill needs your OpenRouter API key to fetch and test models through OpenRouter.
The code reads the OpenRouter API key from the environment or OpenClaw config, which is expected for this integration but is still sensitive credential handling.
raw = os.environ.get("OPENROUTER_API_KEY") ... raw = config.get("env", {}).get("OPENROUTER_API_KEY")Provide only an OpenRouter key you are comfortable using for this purpose, and rotate or revoke it if you stop using the skill.
If you start the watcher, it may continue running in the background and update your OpenClaw model configuration without asking each time.
The watcher is an optional long-running background process that can automatically change the model chain if health checks fail.
nohup freeride-watcher > ~/.openclaw/freeride-watcher.log 2>&1 & ... The daemon probes the current primary every 60s; if it fails, it rebuilds the chain
Run the watcher only if you want autonomous recovery; monitor its log/state and stop it with Ctrl-C or kill when no longer needed.
The visible artifacts look coherent, but this review has incomplete visibility into the main CLI file.
The supplied artifact does not include the full main.py content, so the review cannot fully inspect all CLI implementation details from the provided text.
"truncated": true
If you need high assurance, inspect the full installed main.py before running commands that modify your OpenClaw config.
