返回顶部
🇺🇸 English
🇨🇳 简体中文
🇨🇳 繁體中文
🇺🇸 English
🇯🇵 日本語
🇰🇷 한국어
🇫🇷 Français
🇩🇪 Deutsch
🇪🇸 Español
🇷🇺 Русский
a

agentbox-openrouter

Set up OpenRouter as your LLM provider. Guides through account creation, API key setup, config, and making it the default model. Use when a user wants to use OpenRouter models like Claude Sonnet 4.5.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.0
安全检测
已通过
431
下载量
0
收藏
概述
安装方式
版本历史

agentbox-openrouter

# OpenRouter Setup for AgentBox This skill guides users through configuring OpenRouter as their LLM provider on this AgentBox instance. OpenRouter gives access to models from Anthropic, OpenAI, Google, Meta, and others through a single API key. ## When to use this skill Invoke this when the user: - Wants to use a model through OpenRouter (e.g., "I want to use Claude Sonnet 4.5") - Asks about configuring a different LLM provider - Mentions OpenRouter - Wants access to models not available through the default blockrun provider ## Setup flow ### Step 1: Check for OpenRouter account Ask the user if they have an OpenRouter account. If not, guide them: > To use OpenRouter, you'll need an account and API key: > 1. Go to https://openrouter.ai and sign up (Google/GitHub login works) > 2. Go to https://openrouter.ai/keys > 3. Click "Create Key" > 4. Copy the key (starts with `sk-or-`) > > Let me know when you have your API key. ### Step 2: Get the API key Ask the user to provide their API key. It should start with `sk-or-`. ### Step 3: Ask which model they want If the user already specified a model, use that. Otherwise, recommend: > **Recommended: Claude Sonnet 4.5** (`openrouter/anthropic/claude-sonnet-4-5`) - best balance of capability and cost for most tasks. > > Other popular options: > - `openrouter/anthropic/claude-opus-4-6` - most capable, higher cost > - `openrouter/openai/gpt-4o` - OpenAI's flagship > - `openrouter/google/gemini-2.5-pro` - Google's best > > Which model would you like as your default? ### Step 4: Configure OpenClaw Read the current config, modify it, and write it back: ```bash # Read current config cat ~/.openclaw/openclaw.json ``` Use `jq` to update the config. The two fields to set: 1. **`env.OPENROUTER_API_KEY`** - the API key 2. **`agents.defaults.model.primary`** - the default model ```bash jq --arg key "sk-or-USER_KEY_HERE" \ --arg model "openrouter/anthropic/claude-sonnet-4-5" \ '.env.OPENROUTER_API_KEY = $key | .agents.defaults.model.primary = $model' \ ~/.openclaw/openclaw.json > /tmp/openclaw-update.json \ && mv /tmp/openclaw-update.json ~/.openclaw/openclaw.json ``` **IMPORTANT**: Always read the full config first, then modify. Never write a partial config file. ### Step 5: Restart the gateway ```bash openclaw gateway restart ``` Wait a few seconds, then verify: ```bash openclaw status ``` ### Step 6: Confirm Tell the user the setup is complete and their default model is now set to the chosen OpenRouter model. Suggest they send a test message to verify everything works. ## Model reference format OpenRouter models use the format `openrouter/<provider>/<model>`: - `openrouter/anthropic/claude-sonnet-4-5` - `openrouter/anthropic/claude-opus-4-6` - `openrouter/anthropic/claude-haiku-3-5` - `openrouter/openai/gpt-4o` - `openrouter/openai/o1` - `openrouter/google/gemini-2.5-pro` - `openrouter/meta-llama/llama-3.3-70b-instruct` Full model list at https://openrouter.ai/models ## Switching models later To change the default model without re-entering the API key: ```bash jq --arg model "openrouter/anthropic/claude-opus-4-6" \ '.agents.defaults.model.primary = $model' \ ~/.openclaw/openclaw.json > /tmp/openclaw-update.json \ && mv /tmp/openclaw-update.json ~/.openclaw/openclaw.json openclaw gateway restart ``` ## Troubleshooting - **"Invalid API key"**: Verify the key starts with `sk-or-` and has credit on https://openrouter.ai/credits - **Model not responding**: Check if the model is available on https://openrouter.ai/models - some models have downtime - **Config broken after edit**: The issue is usually malformed JSON. Read the file with `cat ~/.openclaw/openclaw.json | jq .` to check syntax - **Changes not taking effect**: Must run `openclaw gateway restart` after any config change

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 agentbox-openrouter-1776297560 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 agentbox-openrouter-1776297560 技能

通过命令行安装

skillhub install agentbox-openrouter-1776297560

下载 Zip 包

⬇ 下载 agentbox-openrouter v1.0.0

文件大小: 2.32 KB | 发布时间: 2026-4-16 18:19

v1.0.0 最新 2026-4-16 18:19
Initial release

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部