/install free-models-for-openclaw
name: free-models alias:
- free-models-for-openclaw
- free-models-of-openclaw
- free-models-for-agents description: Discover free/cheap models from OpenRouter for AI agents (e.g. OpenClaw). Includes model discovery, filtering, and easy model selection for openclaw and other agent workflows. metadata: version: 0.2.0 homepage: https://openrouter.ai
free-models-for-agent
Discover free, cheap, and high-value models from OpenRouter for your OpenClaw and other AI agents.
Usage
Find free models
import { discoverFreeModels } from './scripts/free-models.js';
const models = await discoverFreeModels();
// Returns models with $0.00 or very low pricing
Filter by criteria
import { filterModels } from './scripts/free-models.js';
// High context + low price (best for tool calling)
const models = await filterModels({
minContext: 200000, // 200k+ tokens
maxPromptPrice: 0.00001 // Under $0.00001/1M tokens
});
// Specific provider only
const openaiModels = await filterModels({
author: 'openai',
minContext: 100000
});
// Name contains filter
const flashModels = await filterModels({
author: 'google',
nameContains: 'flash'
});
// All filters combined
const cheapGoogle = await filterModels({
author: 'google',
minContext: 500000,
maxPromptPrice: 0.000001
});
Get best free model for agent
import { getBestFreeModel } from './scripts/free-models.js';
// Best overall (highest context)
const bestModel = await getBestFreeModel();
// Best for reasoning tasks
const reasoningModel = await getBestFreeModel({
needReasoning: true,
});
// Best for tool calling (high context is key)
const toolModel = await getBestFreeModel({
preferReasoning: true,
maxPrice: 0.00001
});
// Best for vision tasks
const visionModel = await getBestFreeModel({
needVision: true,
});
CLI Usage
User should register and get a access key from https://openrouter.ai/settings/keys
Openclaw should export the key (or string with a prefix "sk-or-") as the value of Environment Variable OPENROUTER_API_KEY before calling the cli.
export OPENROUTER_API_KEY="sk-or-v1-..."
node scripts/free-models.js
Common Free Models
| Model | Context | Price | Best For |
|---|---|---|---|
| x-ai/grok-4.1-fast | 2M | $0.0000002/1M | Tool calling, agents |
| openai/gpt-5.4 | 1M | $0.0000025/1M | General purpose |
| google/gemini-3.1-flash-lite | 1M | $0.00000025/1M | Fast/cheap tasks |
| google/gemini-2.5-flash | 1M | $0.0000003/1M | Tool calling |
| qwen/qwen3.5-flash-02-23 | 1M | $0.0000001/1M | Budget option |
API Reference
fetchAllModels()
Returns all available models from OpenRouter.
discoverFreeModels()
Filters and returns only models with $0 or very low pricing (\x3C $0.0001/1M).
filterModels(options)
Filters models by:
maxPromptPrice: Maximum prompt price per 1M tokensminContext: Minimum context window (tokens)authororprovider: Model provider (e.g., 'anthropic', 'openai', 'google', 'deepseek', 'minimax', 'kimi', 'z.ai')maxCompletionPrice: Maximum completion price per 1M tokensnameContains: Filter by name substring
getBestFreeModel(options)
Returns the best free model based on:
needReasoning: Requires strong reasoning capabilitypreferReasoning: Prefers models with reasoningneedVision: Requires vision capabilitiesmaxPrice: Maximum price threshold
getModelsByAuthor(author)
Returns all models from a specific provider.
getCheapestModels(limit)
Returns the cheapest models (default: 10).
Resources
- OpenRouter Models: https://openrouter.ai/models
- Models API: https://openrouter.ai/api/v1/models
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install free-models-for-openclaw - 安装完成后,直接呼叫该 Skill 的名称或使用
/free-models-for-openclaw触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Free Models for OpenClaw and other Agents 是什么?
Discover, filter, and select free or low-cost AI models from OpenRouter for OpenClaw and other agent workflows based on context, price, and capabilities. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 540 次。
如何安装 Free Models for OpenClaw and other Agents?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install free-models-for-openclaw」即可一键安装,无需额外配置。
Free Models for OpenClaw and other Agents 是免费的吗?
是的,Free Models for OpenClaw and other Agents 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Free Models for OpenClaw and other Agents 支持哪些平台?
Free Models for OpenClaw and other Agents 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Free Models for OpenClaw and other Agents?
由 christo(@qidu)开发并维护,当前版本 v0.3.0。