Rank
70
AI Agents & MCPs & AI Workflow Automation β’ (~400 MCP servers for AI agents) β’ AI Automation / AI Agent with MCPs β’ AI Workflows & AI Agents β’ MCPs for AI Agents
Traction
No public download signal
Freshness
Updated 2d ago
Xpersona Agent
Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs. Skill: Free Ride Unlimited free AI Owner: Shaivpidadi Summary: Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-05T17:46:17.820Z | user - Initia
clawhub skill install kn7eepf540q01kxs5gzwnvsp5s80hhje:freeride-aiOverall rank
#62
Adoption
1.1K downloads
Trust
Unknown
Freshness
Mar 1, 2026
Freshness
Last checked Mar 1, 2026
Best For
Free Ride Unlimited free AI is best for general automation workflows where OpenClaw compatibility matters.
Not Ideal For
Contract metadata is missing or unavailable for deterministic execution.
Evidence Sources Checked
editorial-content, CLAWHUB, runtime-metrics, public facts pack
Key links, install path, reliability highlights, and the shortest practical read before diving into the crawl record.
Overview
Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs. Skill: Free Ride Unlimited free AI Owner: Shaivpidadi Summary: Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-05T17:46:17.820Z | user - Initia Capability contract not published. No trust telemetry is available yet. 1.1K downloads reported by the source. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Mar 1, 2026
Vendor
Clawhub
Artifacts
0
Benchmarks
0
Last release
1.0.0
Install & run
clawhub skill install kn7eepf540q01kxs5gzwnvsp5s80hhje:freeride-aiPython environment detected. Create a strict virtual environment (`python -m venv .venv`) before installing dependencies to prevent system-level package conflicts.
Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.
Public facts grouped by evidence type, plus release and crawl events with provenance and freshness.
Public facts
Vendor
Clawhub
Protocol compatibility
OpenClaw
Latest release
1.0.0
Adoption signal
1.1K downloads
Handshake status
UNKNOWN
Parameters, dependencies, examples, extracted files, editorial overview, and the complete README when available.
Captured outputs
Extracted files
5
Examples
6
Snippets
0
Languages
Unknown
bash
# Set API key (free at openrouter.ai/keys) export OPENROUTER_API_KEY="sk-or-v1-..." # Auto-configure best model + fallbacks freeride auto
bash
freeride list # Top 15 models freeride list -n 30 # More models freeride list --refresh # Force API refresh
bash
freeride auto # Best model + 5 fallbacks freeride auto -f # Fallbacks only (keep current primary) freeride auto -c 10 # 10 fallbacks freeride auto --setup-auth # Also configure auth profile
bash
freeride switch qwen3-coder # Set as primary freeride switch deepseek -f # Add to fallbacks only freeride switch nvidia/nemotron --no-fallbacks
bash
freeride status
bash
freeride fallbacks # 5 fallbacks freeride fallbacks -c 10 # 10 fallbacks
SKILL.md
---
name: freeride
description: Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs.
---
# FreeRide - Free AI for OpenClaw
Configures OpenClaw to use free AI models from OpenRouter with automatic fallback switching.
## Quick Start
```bash
# Set API key (free at openrouter.ai/keys)
export OPENROUTER_API_KEY="sk-or-v1-..."
# Auto-configure best model + fallbacks
freeride auto
```
## Commands
### `list` - View available models
```bash
freeride list # Top 15 models
freeride list -n 30 # More models
freeride list --refresh # Force API refresh
```
### `auto` - Auto-configure
```bash
freeride auto # Best model + 5 fallbacks
freeride auto -f # Fallbacks only (keep current primary)
freeride auto -c 10 # 10 fallbacks
freeride auto --setup-auth # Also configure auth profile
```
### `switch` - Set specific model
```bash
freeride switch qwen3-coder # Set as primary
freeride switch deepseek -f # Add to fallbacks only
freeride switch nvidia/nemotron --no-fallbacks
```
### `status` - Check configuration
```bash
freeride status
```
### `fallbacks` - Update fallbacks only
```bash
freeride fallbacks # 5 fallbacks
freeride fallbacks -c 10 # 10 fallbacks
```
### `refresh` - Update model cache
```bash
freeride refresh
```
## Behavior
**Primary model**: Best specific model (not router) for consistent responses.
**First fallback**: Always `openrouter/free` - OpenRouter's smart router that auto-selects based on request features (vision, tools, etc.).
**Additional fallbacks**: Ranked by quality score.
**Config preservation**: Only updates model-related sections; preserves gateway, channels, plugins, etc.
## Model Ranking
Score (0-1) based on:
- Context length (40%)
- Capabilities (30%)
- Recency (20%)
- Provider trust (10%)
## Flags
| Flag | Commands | Description |
|------|----------|-------------|
| `-f` | switch, auto | Fallback only, keep primary |
| `-c N` | auto, fallbacks | Number of fallbacks |
| `--no-fallbacks` | switch | Skip fallback configuration |
| `--setup-auth` | switch, auto | Add OpenRouter auth profile |
| `-n N` | list | Models to display |
| `-r` | list | Force refresh |
## Config Output
Updates `~/.openclaw/openclaw.json`:
```json
{
"agents": {
"defaults": {
"model": {
"primary": "openrouter/qwen/qwen3-coder:free",
"fallbacks": [
"openrouter/free:free",
"nvidia/nemotron-3-nano-30b-a3b:free"
]
}
}
}
}
```
## Troubleshooting
**"OPENROUTER_API_KEY not set"**: Export the key or add to shell profile.
**Config not updating**: Check file permissions on `~/.openclaw/openclaw.json`.
**Changes not taking effect**: Restart OpenClaw.README.md
# π’ FreeRide ### Stop paying for AI. Start riding free. [](https://opensource.org/licenses/MIT) [](https://github.com/openclaw/openclaw) [](https://openrouter.ai) --- **FreeRide** gives you unlimited free AI in [OpenClaw](https://github.com/openclaw/openclaw) by automatically managing OpenRouter's free models. ``` You: *hits rate limit* FreeRide: "I got you." *switches to next best model* You: *keeps coding* ``` ## The Problem You're using OpenClaw. You love it. But: - πΈ API costs add up fast - π« Free models have rate limits - π€ Manually switching models is annoying - π€· You don't know which free model is actually good ## The Solution One command. Free AI. Forever. ```bash freeride auto ``` That's it. FreeRide: 1. **Finds** the 30+ free models on OpenRouter 2. **Ranks** them by quality (context length, capabilities, speed) 3. **Sets** the best one as your primary 4. **Configures** smart fallbacks for when you hit rate limits 5. **Preserves** your existing OpenClaw config ## Quick Start ### 1. Get a Free OpenRouter Key Go to [openrouter.ai/keys](https://openrouter.ai/keys) β Create account β Generate key No credit card. No trial. Actually free. ### 2. Set Your Key ```bash export OPENROUTER_API_KEY="sk-or-v1-..." ``` ### 3. Run FreeRide ```bash freeride auto ``` ### 4. Restart OpenClaw Done. You're now running on free AI with automatic fallbacks. ## What You Get ``` Primary Model: nvidia/nemotron-3-nano-30b-a3b:free (256K context) Fallbacks: 1. openrouter/free β Smart router (auto-picks best available) 2. qwen/qwen3-coder:free β Great for coding 3. stepfun/step-3.5:free β Fast responses 4. deepseek/deepseek:free β Strong reasoning 5. mistral/mistral:free β Reliable fallback ``` When you hit a rate limit, OpenClaw automatically tries the next model. You keep working. No interruptions. ## Commands | Command | What it does | |---------|--------------| | `freeride auto` | Auto-configure best model + fallbacks | | `freeride list` | See all 30+ free models ranked | | `freeride switch <model>` | Use a specific model | | `freeride status` | Check your current setup | ### Pro Tips ```bash # Already have a model you like? Just add fallbacks: freeride auto -f # Want more fallbacks for maximum uptime? freeride auto -c 10 # Coding? Switch to the best coding model: freeride switch qwen3-coder # See what's available: freeride list -n 30 ``` ## How It Ranks Models FreeRide scores each model (0-1) based on: | Factor | Weight | Why | |--------|--------|-----| | Context Length | 40% | Longer = handle bigger codebases | | Capabilities | 30% | Vision, tools, structured output | | Recency | 20% | Newer models = better performance | | Provider Trust | 10% | Google, Meta, NVI
_meta.json
{
"ownerId": "kn7eepf540q01kxs5gzwnvsp5s80hhje",
"slug": "freeride-ai",
"version": "1.0.0",
"publishedAt": 1770313577820
}skill.json
{
"name": "freeride",
"displayName": "FreeRide - Free AI for OpenClaw",
"version": "1.0.0",
"description": "Unlimited free AI access for OpenClaw via OpenRouter's free models with automatic fallback switching",
"author": "OpenClaw Community",
"license": "MIT",
"commands": [
"list",
"switch",
"auto",
"status",
"refresh",
"fallbacks"
],
"dependencies": {
"requests": ">=2.31.0"
},
"config": {
"OPENROUTER_API_KEY": {
"description": "Your OpenRouter API key (get free at openrouter.ai)",
"required": true,
"env": true
}
},
"openclaw": {
"compatible": true,
"minVersion": "1.0.0",
"configPath": "~/.openclaw/openclaw.json"
}
}requirements.txt
requests>=2.31.0
Editorial read
Docs source
CLAWHUB
Editorial quality
ready
Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs. Skill: Free Ride Unlimited free AI Owner: Shaivpidadi Summary: Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs. Tags: latest:1.0.0 Version history: v1.0.0 | 2026-02-05T17:46:17.820Z | user - Initia
Skill: Free Ride Unlimited free AI
Owner: Shaivpidadi
Summary: Manages free AI models from OpenRouter for OpenClaw. Automatically ranks models by quality, configures fallbacks for rate-limit handling, and updates openclaw.json. Use when the user mentions free AI, OpenRouter, model switching, rate limits, or wants to reduce AI costs.
Tags: latest:1.0.0
Version history:
v1.0.0 | 2026-02-05T17:46:17.820Z | user
Archive index:
Archive v1.0.0: 7 files, 15006 bytes
Files: main.py (26229b), README.md (6607b), requirements.txt (17b), skill.json (719b), SKILL.md (2965b), watcher.py (10519b), _meta.json (130b)
File v1.0.0:SKILL.md
Configures OpenClaw to use free AI models from OpenRouter with automatic fallback switching.
# Set API key (free at openrouter.ai/keys)
export OPENROUTER_API_KEY="sk-or-v1-..."
# Auto-configure best model + fallbacks
freeride auto
list - View available modelsfreeride list # Top 15 models
freeride list -n 30 # More models
freeride list --refresh # Force API refresh
auto - Auto-configurefreeride auto # Best model + 5 fallbacks
freeride auto -f # Fallbacks only (keep current primary)
freeride auto -c 10 # 10 fallbacks
freeride auto --setup-auth # Also configure auth profile
switch - Set specific modelfreeride switch qwen3-coder # Set as primary
freeride switch deepseek -f # Add to fallbacks only
freeride switch nvidia/nemotron --no-fallbacks
status - Check configurationfreeride status
fallbacks - Update fallbacks onlyfreeride fallbacks # 5 fallbacks
freeride fallbacks -c 10 # 10 fallbacks
refresh - Update model cachefreeride refresh
Primary model: Best specific model (not router) for consistent responses.
First fallback: Always openrouter/free - OpenRouter's smart router that auto-selects based on request features (vision, tools, etc.).
Additional fallbacks: Ranked by quality score.
Config preservation: Only updates model-related sections; preserves gateway, channels, plugins, etc.
Score (0-1) based on:
| Flag | Commands | Description |
|------|----------|-------------|
| -f | switch, auto | Fallback only, keep primary |
| -c N | auto, fallbacks | Number of fallbacks |
| --no-fallbacks | switch | Skip fallback configuration |
| --setup-auth | switch, auto | Add OpenRouter auth profile |
| -n N | list | Models to display |
| -r | list | Force refresh |
Updates ~/.openclaw/openclaw.json:
{
"agents": {
"defaults": {
"model": {
"primary": "openrouter/qwen/qwen3-coder:free",
"fallbacks": [
"openrouter/free:free",
"nvidia/nemotron-3-nano-30b-a3b:free"
]
}
}
}
}
"OPENROUTER_API_KEY not set": Export the key or add to shell profile.
Config not updating: Check file permissions on ~/.openclaw/openclaw.json.
Changes not taking effect: Restart OpenClaw.
File v1.0.0:README.md
FreeRide gives you unlimited free AI in OpenClaw by automatically managing OpenRouter's free models.
You: *hits rate limit*
FreeRide: "I got you." *switches to next best model*
You: *keeps coding*
You're using OpenClaw. You love it. But:
One command. Free AI. Forever.
freeride auto
That's it. FreeRide:
Go to openrouter.ai/keys β Create account β Generate key
No credit card. No trial. Actually free.
export OPENROUTER_API_KEY="sk-or-v1-..."
freeride auto
Done. You're now running on free AI with automatic fallbacks.
Primary Model: nvidia/nemotron-3-nano-30b-a3b:free (256K context)
Fallbacks:
1. openrouter/free β Smart router (auto-picks best available)
2. qwen/qwen3-coder:free β Great for coding
3. stepfun/step-3.5:free β Fast responses
4. deepseek/deepseek:free β Strong reasoning
5. mistral/mistral:free β Reliable fallback
When you hit a rate limit, OpenClaw automatically tries the next model. You keep working. No interruptions.
| Command | What it does |
|---------|--------------|
| freeride auto | Auto-configure best model + fallbacks |
| freeride list | See all 30+ free models ranked |
| freeride switch <model> | Use a specific model |
| freeride status | Check your current setup |
# Already have a model you like? Just add fallbacks:
freeride auto -f
# Want more fallbacks for maximum uptime?
freeride auto -c 10
# Coding? Switch to the best coding model:
freeride switch qwen3-coder
# See what's available:
freeride list -n 30
FreeRide scores each model (0-1) based on:
| Factor | Weight | Why | |--------|--------|-----| | Context Length | 40% | Longer = handle bigger codebases | | Capabilities | 30% | Vision, tools, structured output | | Recency | 20% | Newer models = better performance | | Provider Trust | 10% | Google, Meta, NVIDIA, etc. |
The smart fallback openrouter/free is always first - it auto-selects based on what your request needs.
Is this actually free?
Yes. OpenRouter provides free tiers for many models. You just need an account (no credit card).
What about rate limits?
That's the whole point. FreeRide configures multiple fallbacks. When one model rate-limits you, OpenClaw automatically switches to the next.
Will it mess up my OpenClaw config?
No. FreeRide only touches the model settings. Your gateway, channels, plugins, workspace - all preserved.
Which models are free?
Run freeride list to see current availability. It changes, which is why FreeRide exists.
| Scenario | Monthly Cost | |----------|--------------| | GPT-4 API | $50-200+ | | Claude API | $50-200+ | | OpenClaw + FreeRide | $0 |
You're welcome.
requests library (pip install requests)# Download and extract
curl -L https://github.com/Shaivpidadi/agent-security-bonds-arc/releases/download/v1.0/freeride.zip -o freeride.zip
unzip freeride.zip
cd freeride
pip install -r requirements.txt
git clone https://github.com/Shaivpidadi/agent-security-bonds-arc.git
cd agent-security-bonds-arc/server/skills/freeride
pip install -r requirements.txt
clahub install freeride
ββββββββββββββββ ββββββββββββββββ ββββββββββββββββββββ
β You β βββ β FreeRide β βββ β OpenRouter API β
β "freeride β β β β (30+ free β
β auto" β β β’ Fetch β β models) β
ββββββββββββββββ β β’ Rank β ββββββββββββββββββββ
β β’ Configure β
ββββββββ¬ββββββββ
β
βΌ
ββββββββββββββββ
β ~/.openclaw/ β
β openclaw.jsonβ
ββββββββ¬ββββββββ
β
βΌ
ββββββββββββββββ
β OpenClaw β
β (free AI!) β
ββββββββββββββββ
Found a bug? Want a feature? PRs welcome.
# Run tests
python main.py list
python main.py status
python main.py auto --help
MIT - Do whatever you want.
File v1.0.0:_meta.json
{ "ownerId": "kn7eepf540q01kxs5gzwnvsp5s80hhje", "slug": "freeride-ai", "version": "1.0.0", "publishedAt": 1770313577820 }
File v1.0.0:skill.json
{ "name": "freeride", "displayName": "FreeRide - Free AI for OpenClaw", "version": "1.0.0", "description": "Unlimited free AI access for OpenClaw via OpenRouter's free models with automatic fallback switching", "author": "OpenClaw Community", "license": "MIT", "commands": [ "list", "switch", "auto", "status", "refresh", "fallbacks" ], "dependencies": { "requests": ">=2.31.0" }, "config": { "OPENROUTER_API_KEY": { "description": "Your OpenRouter API key (get free at openrouter.ai)", "required": true, "env": true } }, "openclaw": { "compatible": true, "minVersion": "1.0.0", "configPath": "~/.openclaw/openclaw.json" } }
File v1.0.0:requirements.txt
requests>=2.31.0
Machine endpoints, contract coverage, trust signals, runtime metrics, benchmarks, and guardrails for agent-to-agent use.
Machine interfaces
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
curl -s "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/snapshot"
curl -s "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/contract"
curl -s "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/trust"
Operational fit
Trust signals
Handshake
UNKNOWN
Confidence
unknown
Attempts 30d
unknown
Fallback rate
unknown
Runtime metrics
Observed P50
unknown
Observed P95
unknown
Rate limit
unknown
Estimated cost
unknown
Do not use if
Raw contract, invocation, trust, capability, facts, and change-event payloads for machine-side inspection.
Contract JSON
{
"contractStatus": "missing",
"authModes": [],
"requires": [],
"forbidden": [],
"supportsMcp": false,
"supportsA2a": false,
"supportsStreaming": false,
"inputSchemaRef": null,
"outputSchemaRef": null,
"dataRegion": null,
"contractUpdatedAt": null,
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Invocation Guide
{
"preferredApi": {
"snapshotUrl": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/snapshot",
"contractUrl": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/contract",
"trustUrl": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/trust"
},
"curlExamples": [
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/snapshot\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/contract\"",
"curl -s \"https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/trust\""
],
"jsonRequestTemplate": {
"query": "summarize this repo",
"constraints": {
"maxLatencyMs": 2000,
"protocolPreference": [
"OPENCLEW"
]
}
},
"jsonResponseTemplate": {
"ok": true,
"result": {
"summary": "...",
"confidence": 0.9
},
"meta": {
"source": "CLAWHUB",
"generatedAt": "2026-04-17T04:51:36.088Z"
}
},
"retryPolicy": {
"maxAttempts": 3,
"backoffMs": [
500,
1500,
3500
],
"retryableConditions": [
"HTTP_429",
"HTTP_503",
"NETWORK_TIMEOUT"
]
}
}Trust JSON
{
"status": "unavailable",
"handshakeStatus": "UNKNOWN",
"verificationFreshnessHours": null,
"reputationScore": null,
"p95LatencyMs": null,
"successRate30d": null,
"fallbackRate": null,
"attempts30d": null,
"trustUpdatedAt": null,
"trustConfidence": "unknown",
"sourceUpdatedAt": null,
"freshnessSeconds": null
}Capability Matrix
{
"rows": [
{
"key": "OPENCLEW",
"type": "protocol",
"support": "unknown",
"confidenceSource": "profile",
"notes": "Listed on profile"
}
],
"flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}Facts JSON
[
{
"factKey": "vendor",
"category": "vendor",
"label": "Vendor",
"value": "Clawhub",
"href": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceUrl": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "protocols",
"category": "compatibility",
"label": "Protocol compatibility",
"value": "OpenClaw",
"href": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/contract",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/contract",
"sourceType": "contract",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "traction",
"category": "adoption",
"label": "Adoption signal",
"value": "1.1K downloads",
"href": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceUrl": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceType": "profile",
"confidence": "medium",
"observedAt": "2026-04-15T00:45:39.800Z",
"isPublic": true
},
{
"factKey": "latest_release",
"category": "release",
"label": "Latest release",
"value": "1.0.0",
"href": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceUrl": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-05T17:46:17.820Z",
"isPublic": true
},
{
"factKey": "handshake_status",
"category": "security",
"label": "Handshake status",
"value": "UNKNOWN",
"href": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/trust",
"sourceUrl": "https://xpersona.co/api/v1/agents/clawhub-shaivpidadi-freeride-ai/trust",
"sourceType": "trust",
"confidence": "medium",
"observedAt": null,
"isPublic": true
}
]Change Events JSON
[
{
"eventType": "release",
"title": "Release 1.0.0",
"description": "- Initial release of the FreeRide skill for OpenClaw. - Enables automatic configuration of free AI models from OpenRouter, including quality-based ranking and fallback setup. - Updates openclaw.json with best primary model and fallbacks for handling rate limits. - Provides commands to list, switch, and manage models and fallbacks efficiently. - Designed to help users reduce AI costs and handle OpenRouter usage limits automatically.",
"href": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceUrl": "https://clawhub.ai/Shaivpidadi/freeride-ai",
"sourceType": "release",
"confidence": "medium",
"observedAt": "2026-02-05T17:46:17.820Z",
"isPublic": true
}
]Sponsored
Ads related to Free Ride Unlimited free AI and adjacent AI workflows.