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.

What this means

Your OpenClaw agent may start using different default and fallback models after the command runs.

Why it was flagged

The skill tells the agent/user to run CLI commands that change OpenClaw's default model configuration and restart the gateway.

Skill content
freeride auto

# Step 2: Restart gateway so OpenClaw picks up the changes
openclaw gateway restart
Recommendation

Use it only when you intend to change OpenClaw's model settings; consider backing up ~/.openclaw/openclaw.json first.

What this means

The skill needs your OpenRouter API key to fetch and test models through OpenRouter.

Why it was flagged

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.

Skill content
raw = os.environ.get("OPENROUTER_API_KEY") ... raw = config.get("env", {}).get("OPENROUTER_API_KEY")
Recommendation

Provide only an OpenRouter key you are comfortable using for this purpose, and rotate or revoke it if you stop using the skill.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

If you start the watcher, it may continue running in the background and update your OpenClaw model configuration without asking each time.

Why it was flagged

The watcher is an optional long-running background process that can automatically change the model chain if health checks fail.

Skill content
nohup freeride-watcher > ~/.openclaw/freeride-watcher.log 2>&1 & ... The daemon probes the current primary every 60s; if it fails, it rebuilds the chain
Recommendation

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.

What this means

The visible artifacts look coherent, but this review has incomplete visibility into the main CLI file.

Why it was flagged

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.

Skill content
"truncated": true
Recommendation

If you need high assurance, inspect the full installed main.py before running commands that modify your OpenClaw config.