Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

发现、对比和配置多平台免费/低价 AI 模型

v1.0.0

发现、对比并自动配置多平台免费或低价 AI 模型,支持自动轮换以应对限流和优化成本。

0· 370·2 current·2 all-time
byCriss_Su@sucriss

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for sucriss/free-model-finder.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "发现、对比和配置多平台免费/低价 AI 模型" (sucriss/free-model-finder) from ClawHub.
Skill page: https://clawhub.ai/sucriss/free-model-finder
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install free-model-finder

ClawHub CLI

Package manager switcher

npx clawhub@latest install free-model-finder
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Suspicious
medium confidence
Purpose & Capability
Name/description promise: discover, compare and auto-configure multi-platform free/low-cost models. Actual code: provides a CLI that shows a static list of models (PLATFORM_MODELS), writes model selections into ~/.openclaw/openclaw.json, and checks for presence of a few API env vars. It does not actually query provider APIs or dynamically discover models. Modifying OpenClaw config is coherent with the stated purpose.
!
Instruction Scope
SKILL.md describes active scanning, rate-limit monitoring, automatic rotation (watch/daemon), and 'auto' behavior across platforms. The runtime code does not implement network queries, monitoring, or automatic watch/rotation — it only reads/writes the OpenClaw config and prints suggested commands. The skill instructs users to set API keys but the code only reports whether those env vars exist and does not use them to call provider APIs. It also writes to ~/.openclaw/openclaw.json (expected) — users should be aware that the skill will modify that config file.
Install Mechanism
No external download URLs or extract/install from unknown hosts. Package is a local Python package with an entry point (setup.py) and standard pip install -e usage. skill.json includes an 'install' helper that runs pip in a specific workspace path — unusual but not dangerous by itself.
Credentials
The skill declares no required env vars at registry metadata level, but SKILL.md and skill.json reference optional API keys (OPENROUTER_API_KEY, GROQ_API_KEY, GOOGLE_API_KEY, HF_TOKEN). The code only checks for their presence (no exfiltration or use). Requesting/reading those env vars is proportionate to a model-management tool, but they are optional and not required for the CLI to run.
Persistence & Privilege
The skill writes to the user's OpenClaw config (~/.openclaw/openclaw.json), adding/changing agents.defaults.model and agents.defaults.models. This is within the scope of a model-switching tool but is a privileged action (it alters agent behavior). The skill is not always-enabled and does not autonomously restart services; it only prints a restart command for the user.
What to consider before installing
This skill claims to discover and auto-rotate across live provider APIs, but the implementation is mostly static: it shows hard-coded model lists and only edits ~/.openclaw/openclaw.json. Before installing or running: (1) back up ~/.openclaw/openclaw.json, (2) inspect scripts/main.py yourself to confirm it only changes the fields you expect, (3) be aware the 'watch' / rate-limit monitoring features are not implemented and the skill will not actually call provider APIs even if you set API keys, (4) if you want true dynamic discovery/rotation, demand implementation of API calls and safe retry/monitoring logic, and (5) install with care (pip install -e .) and run commands in a test environment first.

Like a lobster shell, security has layers — review code before you run it.

cost-optimizationvk975g5mvfbsym9ny9ar3zt2fd582mzvqfree-modelsvk975g5mvfbsym9ny9ar3zt2fd582mzvqgroqvk975g5mvfbsym9ny9ar3zt2fd582mzvqlatestvk975g5mvfbsym9ny9ar3zt2fd582mzvqmulti-platformvk975g5mvfbsym9ny9ar3zt2fd582mzvqopenroutervk975g5mvfbsym9ny9ar3zt2fd582mzvq
370downloads
0stars
1versions
Updated 14h ago
v1.0.0
MIT-0

Free Model Finder - 多平台免费模型发现与配置

核心功能

1️⃣ 模型发现

扫描多个平台的免费/低价模型:

  • OpenRouter:免费模型聚合(:free 后缀)
  • HuggingFace:免费 Inference API 额度
  • Groq:免费高速推理(Llama、Mixtral 等)
  • Google AI Studio:Gemini 免费额度
  • Ollama:本地运行(完全免费)
  • 其他平台:可扩展

2️⃣ 模型对比

按以下维度排序:

  • 价格(免费/每百万 token 成本)
  • 速度(平均响应时间)
  • 质量(上下文长度、能力评级)
  • 稳定性(rate limit 策略)

3️⃣ 自动配置

  • 直接修改 OpenClaw 配置文件
  • 设置主模型 + 备用模型列表
  • 自动重启 Gateway 生效

4️⃣ 监控轮换

  • 检测 rate limit 错误
  • 自动切换到备用模型
  • 记录切换历史

快速开始

# 查看所有平台免费模型清单
free-model-finder list

# 只看 OpenRouter 免费模型
free-model-finder list --platform openrouter

# 自动配置最优免费模型(推荐)
free-model-finder auto

# 切换到指定模型
free-model-finder switch groq/llama-3.1-70b-versatile

# 查看当前配置
free-model-finder status

# 监控 rate limit 并自动轮换
free-model-finder watch --daemon

命令参考

命令说明
list [--platform] [--limit]列出可用模型
compare [--top N]对比前 N 个模型的性价比
auto [--platforms]自动配置最优模型
switch <model>切换到指定模型
status查看当前配置
watch [--daemon]监控并自动轮换
refresh刷新模型缓存

平台配置

OpenRouter

需要 API Key:https://openrouter.ai/keys

export OPENROUTER_API_KEY="sk-or-v1-..."

Groq

需要 API Key:https://console.groq.com/keys

export GROQ_API_KEY="gsk_..."

Google AI Studio

需要 API Key:https://aistudio.google.com/app/apikey

export GOOGLE_API_KEY="..."

HuggingFace

需要 API Key:https://huggingface.co/settings/tokens

export HF_TOKEN="..."

Ollama

本地运行,无需 API Key:

# 安装后直接可用
ollama pull llama3.1

配置文件位置

OpenClaw 配置:~/.openclaw/openclaw.json

  • agents.defaults.model.primary:主模型
  • agents.defaults.model.fallbacks:备用模型列表

扩展新平台

references/platforms.md 中添加新平台支持。

故障排查

问题解决方案
命令找不到pip install -e . 在技能目录运行
API Key 错误检查对应平台的环境变量
配置不生效运行 openclaw gateway restart
模型列表为空运行 free-model-finder refresh 刷新缓存

相关资源

Comments

Loading comments...