Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

claude-to-freeClaude TO free 搜索

Agent Skill

claude-to-free 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,442

周安装

142

GitHub Stars

公开资料未说明

下载量

1,125
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:claude-to-free(Claude TO free 搜索)
来源仓库:https://github.com/bluebirdback/claude-to-free
安装命令:
openclaw skills install claude-to-free
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install claude-to-free

简介

将 OpenClaw 从 Claude 订阅迁移至免费或低成本模型提供商。

  • 当 Claude 服务不可用时快速切换备用源。
  • 支持 OpenRouter、Gemini、Ollama 等替代平台接入。
  • 迁移前请验证新模型兼容性,并更新相关密钥配置。
  • claude-to-free 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
claude-to-free
description
Migrate OpenClaw from Claude subscription OAuth to a free or cheap model provider (OpenRouter, Gemini, Ollama). Use when the user says Claude stopped working, gets an auth error, mentions the Anthropic April 2026 subscription ban, or asks to switch models without paying Anthropic more.

Model Migration Skill

Help the user migrate OpenClaw from Claude subscription OAuth to a free or cheap provider.

When to use this skill

  • User says Claude is blocked, not working, or requires "extra usage"
  • User mentions the April 2026 Anthropic harness policy change
  • User wants to switch to Gemini, OpenRouter, Ollama, or any non-Claude provider
  • User asks "how do I use OpenClaw without Claude?"

Step 1 — Diagnose

Read the current config and identify what's broken:

cat ~/.openclaw/openclaw.json | python3 -c "
import json,sys
d=json.load(sys.stdin)
auth = d.get('auth',{})
profiles = auth.get('profiles',{})
model = d.get('agents',{}).get('defaults',{}).get('model',{}).get('primary','not set')
print('Current model:', model)
for name, p in profiles.items():
    print(f'Auth profile: {name} provider={p.get(\"provider\")} mode={p.get(\"mode\")}')
"

If you see provider=anthropic mode=oauth — that's the blocked profile. Proceed.


Step 2 — Recommend a path

Ask the user one question: "Do you want free (no cost) or are you okay with a small per-token charge for better quality?"

Free path (recommended for most users)

→ OpenRouter free tier — no credit card, no cost

Best free models right now:

  • openrouter/free — auto-picks the best free model (zero config)
  • openrouter/meta-llama/llama-3.3-70b-instruct:free — strong general model
  • openrouter/qwen/qwen3-coder:free — best free coding model (262k context)
  • openrouter/qwen/qwen3.6-plus:free — 1M context, free

Cheap paid path ($0.10/MTok — roughly $1–5/month for typical use)

  • openrouter/google/gemini-2.5-flash-lite — Google's fast model, 1M context
  • openrouter/google/gemini-2.0-flash-001 — excellent quality/price
  • openrouter/meta-llama/llama-3.3-70b-instruct — same as free but reliable

Free + local path (privacy-first)

→ Ollama — runs on the user's machine, zero cost, fully private

Free direct (Gemini API)

→ Google AI Studio free tier — check current limits at aistudio.google.com (varies by account/region)


Step 3 — Migrate using OpenClaw CLI (preferred)

Use native OpenClaw commands — openclaw onboard creates the auth profile and config in one shot:

# 1. Add your provider (example: OpenRouter free)
openclaw onboard --non-interactive --accept-risk --auth-choice openrouter-api-key --openrouter-api-key YOUR_OPENROUTER_KEY --skip-channels --skip-skills --skip-search --skip-daemon --skip-health --skip-ui

# 2. Set a free model
openclaw models set openrouter/qwen/qwen3.6-plus:free

# 3. Restart
openclaw gateway restart

Or use the interactive auth helper:

openclaw models auth login --provider openrouter
# (follow prompts to paste your key)
openclaw models set openrouter/qwen/qwen3.6-plus:free
openclaw gateway restart

Get a free OpenRouter key at https://openrouter.ai/keys (no credit card required).


Step 4 — Manual config (if wizard doesn't work)

Option A: OpenRouter free (zero cost)

  1. Get a free API key at https://openrouter.ai/keys (no credit card)
  2. Run: openclaw onboard --non-interactive --accept-risk --auth-choice openrouter-api-key --openrouter-api-key YOUR_KEY --skip-channels --skip-skills --skip-search --skip-daemon --skip-health --skip-ui
  3. Set model: openclaw models set openrouter/meta-llama/llama-3.3-70b-instruct:free
  4. Restart: openclaw gateway restart

Option B: Gemini direct (free tier)

  1. Get key at https://aistudio.google.com → Get API key
  2. Run: openclaw onboard --non-interactive --accept-risk --auth-choice gemini-api-key --gemini-api-key YOUR_KEY --skip-channels --skip-skills --skip-search --skip-daemon --skip-health --skip-ui
  3. Set model: openclaw models set google/gemini-2.5-flash-lite
  4. Restart: openclaw gateway restart

Option C: Ollama (local or cloud free tier)

  1. Install: curl -fsSL https://ollama.com/install.sh | sh (or use cloud: ollama.com)
  2. Pull a model: ollama pull llama3.2
  3. Run: openclaw onboard --non-interactive --auth-choice ollama --accept-risk
  4. Set model: openclaw models set ollama/llama3.2
  5. Restart: openclaw gateway restart

Step 5 — Verify

First, confirm the auth profile exists for the new provider:

openclaw models status

Check that the output lists the expected auth profile (e.g. openrouter, google, ollama). If it's missing, the gateway will silently fall back to the first working provider (usually Anthropic) — the model set in config doesn't matter without a matching auth profile.

If the auth profile is missing → go back to Step 3/4 and run openclaw onboard for that provider first. Then re-run openclaw models set and restart.

Only once the auth profile is confirmed, verify the active model:

openclaw models status --plain | grep -i "primary\|model"

openclaw models status verifies the configured model/auth state, not necessarily the live runtime model already attached to an existing Telegram chat session.

To verify the live runtime model, start a new chat/session (or reset the current one) and then check /status.

If the config still looks stale after confirming the auth profile exists, restart the gateway with the portable CLI command:

openclaw gateway restart

Common errors

ErrorCauseFix
401 UnauthorizedInvalid API keyRe-enter key, check for typos
model not foundWrong model IDCheck exact ID in guide
connection refusedOllama not runningRun ollama serve
RESOURCE_EXHAUSTEDFree tier rate limitWait or switch to paid tier
Config not appliedGateway cached old configFull restart via systemd

Resources

  • Full guides: <https://github.com/BlueBirdBack/openclaw-without-claude>
  • Free model list: <https://github.com/BlueBirdBack/openclaw-without-claude/blob/main/guides/model-comparison.md>
  • Model-migration skill (ClawHub source): <https://github.com/BlueBirdBack/openclaw-without-claude/tree/main/skills/model-migration>
  • Need hands-on help: <https://bluebirdback.com> (OpenClaw rescue, $99 fixed)

Changelog

  • v1.0.2 (2026-04-04): Add required --accept-risk to non-interactive onboarding examples. Add --skip-health alongside --skip-daemon so the examples work on broken/stopped local gateways. Clarify that openclaw models status verifies configured state, not necessarily the live runtime model in an existing Telegram session. Switch fallback restart guidance back to portable openclaw gateway restart.
  • v1.0.1 (2026-04-04): Fix broken CLI commands — --auth-choice apiKey --token-provider openrouter was never valid. Updated to --auth-choice openrouter-api-key --openrouter-api-key KEY with --skip-* flags for non-interactive flow. Fixed Gemini auth from google-api-key to gemini-api-key. Added openclaw models auth login as alternative flow. Updated verification to use --plain flag.

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

适合聊天、代码和推理任务

能力 4

可作为 Agent 模型调用入口

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

80.23%
按下载量换算903

安全审计

VirusTotal

未展示

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills