Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add djblack1209-coder/OpenClaw-Bot --skill free-ridegit clone --depth 1 https://github.com/djblack1209-coder/OpenClaw-BotWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/djblack1209-coder/openclaw-bot/free-ride)<a href="https://agentmods.dev/skills/djblack1209-coder/openclaw-bot/free-ride"><img src="https://agentmods.dev/badge/skills/djblack1209-coder/openclaw-bot/free-ride.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00065 | $0.00672 |
| Opus 5 | $0.00032 | $0.00336 |
| Sonnet 5 | $0.00013 | $0.00134 |
| Haiku 4.5 | $0.00006 | $0.00067 |
Grade A, and why
free-ride scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Free Ride — OpenRouter Free Model Fallback
Use OpenRouter's free model tier as a fallback when paid APIs are unavailable or for low-priority tasks.
Setup
- Get a free API key at https://openrouter.ai/keys
- Add to your environment (already configured in
~/.openclaw/.env):
Status: CONFIGUREDOPENROUTER_API_KEY=sk-or-v1-xxxxx
Free Models (ranked by capability, March 2026)
| Model | Context | Speed | Best For |
|---|---|---|---|
deepseek/deepseek-chat:free |
128k | Fast | General chat, Chinese |
google/gemma-3-27b-it:free |
96k | Fast | Reasoning, multilingual |
mistralai/mistral-small-3.1-24b-instruct:free |
96k | Fast | Code, instruction following |
qwen/qwen3-32b:free |
40k | Medium | Chinese, general |
meta-llama/llama-4-scout:free |
512k | Medium | Long context |
google/gemini-2.5-pro-exp-03-25:free |
1M | Slow | Complex reasoning |
OpenRouter Config for OpenClaw
Add as a provider in openclaw.json (manual edit recommended):
{
"models": {
"providers": {
"openrouter_free": {
"baseUrl": "https://openrouter.ai/api/v1",
"apiKey": "YOUR_OPENROUTER_KEY",
"api": "openai-completions",
"models": [
{
"id": "deepseek/deepseek-chat:free",
"name": "DeepSeek Chat (Free)",
"api": "openai-completions",
"reasoning": false,
"input": ["text"],
"cost": {"input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0},
"contextWindow": 131072,
"maxTokens": 8192
}
]
}
}
}
}
Usage Strategy
- Add
openrouter_free/deepseek-chat:freeas a fallback in agent model config - Use for: background cron tasks, routine scans, simple classification
- Don't use for: complex reasoning, code generation, production-critical tasks
- Rate limits apply per model — spread load across multiple free models
Warning
Do NOT let OpenClaw auto-install this skill's config changes. Edit openclaw.json manually or use a coding agent to avoid breaking your existing provider setup.
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 70 lines · 65 tokens per session scan A d1d502603069
free-ride is a skill published in the GitHub repository djblack1209-coder/OpenClaw-Bot (5 stars, last pushed 3d ago), licensed Apache-2.0. It adds 65 tokens to every session and 672 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
copilotkit-upgrade
Use when migrating a CopilotKit v1 application to v2 -- updating package imports, replacing deprecated hooks and components, switching from GraphQL runtime to AG-UI protocol runtime, and resolving breaking API changes.
trigger-realtime-and-frontend
Trigger.dev client/frontend surface: subscribe to runs in realtime (runs.subscribeToRun and the @trigger.dev/react-hooks hook useRealtimeRun), consume metadata and AI/text streams in React (useRealtimeStream), trigger tasks from the browser (useTaskTrigger, useRealtimeTaskTrigger), and mint scoped frontend credentials…
tanstack-start
Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 +…
litellm
Operate, configure, secure, and troubleshoot the LiteLLM AI gateway (proxy) and Python SDK: run the proxy (litellm --config), route to 100+ providers through one OpenAI-compatible API, configure model lists and routing/reliability, virtual keys, teams, budgets, rate limits, caching, guardrails, observability, and…
minimax
MiniMax M-series production wiring patterns for the OpenAI-compatible API at api.minimax.io. TRIGGERS - MiniMax, MiniMax-M2.7, Hailuo.
webiny-api-cms-content-models
Creating Headless CMS content models via code using the ModelFactory pattern. Use this skill when the developer wants to create, modify, or understand content model definitions, define fields and validators, set up reference fields between models, configure field layouts (including nested layouts inside object or…