← 返回 Skills 市场
pinke

Free Buddy Skills

作者 pinke · GitHub ↗ · v2.3.0 · MIT-0
cross-platform ✓ 安全检测通过
165
总下载
0
收藏
0
当前安装
14
版本数
在 OpenClaw 中安装
/install free-buddy-skills
功能描述
自动查询并配置 opencode.ai 免费 AI 模型到 WorkBuddy,无需 API Key,保持本地模型配置更新。
使用说明 (SKILL.md)

Free Buddy Skills

自动检测和配置 opencode.ai 的免费 AI 模型到 WorkBuddy。

触发词

当用户说以下内容时,使用此技能:

  • "帮我配置 opencode.ai 的免费模型"
  • "配置免费模型"
  • "添加 opencode 模型"
  • "免费 AI 模型"
  • "更新免费模型"
  • "free model"
  • "opencode.ai"

功能

  1. 查询免费模型: 从 opencode.ai 获取最新的免费模型列表
  2. 自动配置: 将免费模型添加到 ~/.workbuddy/models.json
  3. 定期更新: 保持模型配置的时效性

权限说明

  • 无需 API Key: 使用公开的 "public" 作为 API Key
  • 无需认证: opencode.ai 免费模型无需登录
  • 仅本地操作: 只读取和写入本地的 ~/.workbuddy/models.json

快速使用

用户只需发送一句话:

首次配置:

"帮我配置 opencode.ai 的免费模型"

WorkBuddy 会自动:

  1. 查询最新的免费模型列表
  2. 添加到 ~/.workbuddy/models.json
  3. 验证配置是否可用

更新模型:

"更新免费模型"

WorkBuddy 会自动:

  1. 查询最新的免费模型列表
  2. 对比现有配置
  3. 添加新模型,跳过已存在的

使用流程

方法 1: 使用 Python 脚本 (推荐)

# 所有平台通用 (macOS / Linux / Windows)
python3 update-free-models.py
# 或
python update-free-models.py

方法 2: 手动配置

步骤 1: 查询可用免费模型

curl -sS https://opencode.ai/zen/v1/models | jq '.data[].id' | grep -i free

步骤 2: 获取模型详细信息

curl -sS https://opencode.ai/zen/v1/models | jq '.data[] | select(.id | contains("free"))'

步骤 3: 读取现有配置

读取 ~/.workbuddy/models.json (macOS/Linux) 或 %USERPROFILE%\.workbuddy\models.json (Windows) 检查是否已存在相同模型。

步骤 4: 添加或更新模型配置

为每个免费模型添加以下配置:

{
  "id": "模型ID",
  "name": "模型显示名称",
  "vendor": "OpenCode AI",
  "url": "https://opencode.ai/zen/v1/chat/completions",
  "apiKey": "使用 public (无需真实密钥)",
  "maxInputTokens": 262144,
  "supportsToolCall": true,
  "supportsImages": false,
  "supportsReasoning": true
}

步骤 5: 验证配置

使用 read_file 工具读取 ~/.workbuddy/models.json 确认配置已正确添加。

当前免费模型列表

模型 ID 名称 工具调用 图像 推理
minimax-m2.5-free MiniMax M2.5 Free
trinity-large-preview-free Trinity Large Preview Free
nemotron-3-super-free Nemotron-3 Super Free

配置保存位置

  • macOS/Linux: ~/.workbuddy/models.json
  • Windows: %USERPROFILE%\.workbuddy\models.json (即 C:\Users\你的用户名\.workbuddy\models.json)
  • 跨平台: $HOME/.workbuddy/models.json (Git Bash/WSL 下通用)

注意事项

  1. opencode.ai 的免费模型使用 "public" 作为 API Key
  2. 所有免费模型共享同一个端点: https://opencode.ai/zen/v1/chat/completions
  3. 脚本需要用户确认后才会修改配置文件
  4. 非交互模式下运行将跳过自动添加,需手动确认
安全使用建议
This skill appears to do exactly what it says: query opencode.ai's public models endpoint and add free models to your WorkBuddy config (~/.workbuddy/models.json). Before installing or letting an agent run it autonomously: (1) back up your existing ~/.workbuddy/models.json, (2) review the included script (update-free-models.py) to confirm behavior, (3) confirm you trust opencode.ai as the endpoint, and (4) prefer running the script manually first to see what it would add. If you do allow autonomous invocation, be aware the agent may run the script and change your local WorkBuddy model list without additional prompts.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The name/description promise (detect and configure opencode.ai free models into WorkBuddy) aligns with the included code and SKILL.md: the script queries https://opencode.ai/zen/v1/models, filters free models, and writes entries into ~/.workbuddy/models.json. No unrelated capabilities (cloud creds, other services) are requested.
Instruction Scope
Instructions and the script explicitly read and write the user's WorkBuddy config (~/.workbuddy/models.json). This is in-scope for a configuration helper, but it is an operation that modifies local user config files. The script prompts for confirmation in interactive mode and defaults to not modifying in non-interactive mode, which reduces risk.
Install Mechanism
There is no install spec that downloads external code at install time. The repository supplies a Python script bundled with the skill; running it causes local I/O but no external code downloads or obscure installers.
Credentials
The skill requests no environment variables or secrets. It uses the literal string "public" as an API key for public endpoints, consistent with the SKILL.md. There are no unrelated credential requests.
Persistence & Privilege
The skill is not marked always:true and does not attempt to modify other skills or system-wide agent settings. It does modify a per-user WorkBuddy config file, which is expected for its purpose. Note that the platform default allows autonomous invocation; the agent could run this skill and update the config if permitted.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install free-buddy-skills
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /free-buddy-skills 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.3.0
- 新增技能:一键自动检测和配置 opencode.ai 免费 AI 模型到 WorkBuddy,无需 API Key 和登录 - 支持通过多种“免费模型”关键词触发,自动操作本地 models.json 文件 - 可查询最新免费模型、自动配置及定期更新 - 提供详细的命令行及手动操作说明,适配 macOS、Linux、Windows - 公开列出当前免费支持的模型和配置格式,便于用户核查与添加
v2.2.0
- 新增一键自动配置 opencode.ai 免费 AI 模型到 WorkBuddy,无需 API Key 或登录 - 支持通过自然语言触发自动查询、添加和更新最新免费模型 - 自动将模型写入本地 `~/.workbuddy/models.json` 并验证配置 - 提供 Python 脚本及手动配置详细操作说明 - 模型支持工具调用与推理,并列出当前可用免费模型清单
v2.1.1
Version 2.1.1 of Free Buddy Skills - No changes were detected in this version; documentation and features remain unchanged.
v2.1.0
Version 2.1.0 - 新增自动检测与配置 opencode.ai 免费 AI 模型到 WorkBuddy 的能力 - 支持一键获取、添加、更新免费模型配置,自动保持最新 - 增加通过简单触发词即可自动查询与配置模型的功能 - 补充了详细的手动与脚本配置指南 - 列出当前支持的免费模型及其能力对比 - 明确说明跨平台保存路径及注意事项
v2.0.0
Free Buddy Skills 2.0.0 - 新增支持一键自动配置 opencode.ai 免费 AI 模型到 WorkBuddy - 通过触发词识别,自动查询并添加/更新免费模型 - 支持定期检查和更新模型配置,防止重复添加 - 提供详细手动与脚本配置指引,兼容多平台 - 列出最新可用免费模型及其特性 - 优化模型保存路径说明和注意事项
v1.5.0
Version 1.5.0 - 新增详细 SKILL.md 文档,描述一键配置 opencode.ai 免费 AI 模型到 WorkBuddy 的完整流程 - 明确列出可用触发词、使用方法和配置流程,便于用户快速上手 - 提供多平台自动化脚本和手动操作指导,支持 macOS、Linux、Windows - 列出当前支持的免费模型及其功能详情 - 规范模型配置保存位置与格式 - 补充注意事项,指导用户正确管理免费模型配置
v1.4.0
- 新增详细文档,指导用户一键配置 opencode.ai 免费 AI 模型到 WorkBuddy。 - 支持自动检测、配置与定期更新免费模型。 - 提供多种使用方法,包括跨平台 Python 脚本和平台专用脚本。 - 列出当前可用的免费模型及其功能支持情况。 - 增加手动查询、配置和验证配置的分步说明。 - 明确配置保存位置和注意事项,提升用户操作便捷性。
v1.3.0
Version 1.3.0 - Added comprehensive SKILL.md documentation, including trigger phrases, feature list, and usage instructions. - Outlined multiple configuration methods (Python script, shell scripts, PowerShell, CMD, manual). - Provided step-by-step guides for querying, adding, and verifying free models from opencode.ai in WorkBuddy. - Listed current supported free models and detailed configuration example. - Clarified file locations and key points for using and updating the models.
v1.2.0
- 新增技能“Free Buddy Skills”,支持一键配置 opencode.ai 免费 AI 模型到 WorkBuddy。 - 自动检测和配置免费模型,支持首次和定期自动配置更新。 - 提供详细手动和自动配置说明,包括多平台脚本和命令行方法。 - 列出当前可用免费模型及其功能特性。 - 统一模型配置模板及保存路径说明,适配 macOS、Linux 和 Windows。 - 明确操作注意事项,包括 API Key、公用端点及避免重复配置。
v1.1.0
- 新增 SKILL.md,详细说明了如何自动检测和配置 opencode.ai 免费 AI 模型到 WorkBuddy。 - 提供多种配置方法:一键命令、跨平台脚本以及手动操作流程。 - 明确列出当前支持的免费模型及其功能支持情况。 - 增加了模型配置保存路径说明与更新建议。 - 触发词与典型用法举例,方便用户快速上手。
v1.0.3
- Added detailed documentation for configuring opencode.ai free AI models in WorkBuddy. - Outlined trigger phrases, main features (query, configure, update), and step-by-step usage instructions. - Provided platform-specific scripts and manual configuration guidance. - Listed currently available free models and their features. - Clarified configuration file locations and best practices for model management.
v1.0.2
No changes detected since the previous version. - No file modifications or updates were made in this release.
v1.0.1
- Added frontmatter with title, summary, and read_when fields to SKILL.md for improved metadata and discoverability. - No functional code changes; script files remain unchanged. - Documentation update only.
v1.0.0
首次发布:一键配置 opencode.ai 免费 AI 模型,支持自动查询、增量更新
元数据
Slug free-buddy-skills
版本 2.3.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 14
常见问题

Free Buddy Skills 是什么?

自动查询并配置 opencode.ai 免费 AI 模型到 WorkBuddy,无需 API Key,保持本地模型配置更新。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 165 次。

如何安装 Free Buddy Skills?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install free-buddy-skills」即可一键安装,无需额外配置。

Free Buddy Skills 是免费的吗?

是的,Free Buddy Skills 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Free Buddy Skills 支持哪些平台?

Free Buddy Skills 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Free Buddy Skills?

由 pinke(@pinke)开发并维护,当前版本 v2.3.0。

💬 留言讨论