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

openrouter-agent-migrationopenrouterAgent 迁移

Agent Skill

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

总安装

879

周安装

37

GitHub Stars

110

下载量

308
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:openrouter-agent-migration(openrouterAgent 迁移)
来源仓库:https://github.com/openrouterteam/skills
仓库路径:skills/openrouter-agent-migration
安装命令:
npx skills add https://github.com/openrouterteam/skills --skill openrouter-agent-migration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/openrouterteam/skills --skill openrouter-agent-migration

简介

用于查找与 OpenRouter Agent 迁移相关的信息。

  • 适合在跨平台或跨环境部署时获取适配线索。openrouter-agent-migration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 GitHub 安装,建议核实兼容性矩阵和依赖项。
  • 使用前应确认是否修改系统配置或引入新依赖。
  • 需结合原始 README 了解迁移步骤和回滚方案。

SKILL.md

Migrating from @openrouter/sdk to @openrouter/agent

Agent functionality (callModel, tool(), stop conditions, format converters, streaming helpers) has moved from @openrouter/sdk to the standalone @openrouter/agent package. The @openrouter/agent package includes its own OpenRouter client class, so you do not need @openrouter/sdk for agent use cases.


When This Applies

Migrate if your code imports any of these from @openrouter/sdk:

  • callModel or uses client.callModel()
  • tool() factory function
  • Stop conditions: stepCountIs, hasToolCall, maxCost, maxTokensUsed, finishReasonIs
  • Format converters: fromClaudeMessages, toClaudeMessage, fromChatMessages, toChatMessage
  • Types: Tool, ToolWithExecute, ToolWithGenerator, ManualTool, CallModelInput, ModelResult

Quick Migration

Step 1: Install

npm install @openrouter/agent

If you only use agent features, you can remove @openrouter/sdk:

npm uninstall @openrouter/sdk
npm install @openrouter/agent

If you also use non-agent SDK features (models list, chat completions, credits, OAuth, API keys), keep both packages installed.

Step 2: Update Imports

The OpenRouter client class and client.callModel() pattern work identically. Only the import source changes:

- import OpenRouter from '@openrouter/sdk';
+ import { OpenRouter } from '@openrouter/agent';

The rest of your code stays the same:

const client = new OpenRouter({ apiKey: process.env.OPENROUTER_API_KEY });

const result = client.callModel({
  model: 'openai/gpt-5-nano',
  input: 'Hello!',
});

const text = await result.getText();

Complete Import Mapping

Client & callModel

OldNew
import OpenRouter from '@openrouter/sdk'import {OpenRouter} from '@openrouter/agent'
import OpenRouter, {tool, stepCountIs} from '@openrouter/sdk'import {OpenRouter} from '@openrouter/agent'import {tool} from '@openrouter/agent/tool'import {stepCountIs} from '@openrouter/agent/stop-conditions'

A standalone callModel function is also available for advanced use cases where a pre-existing OpenRouterCore instance is available:

import { callModel } from '@openrouter/agent/call-model';

// Requires an OpenRouterCore instance (from @openrouter/sdk/core)
const result = callModel(coreInstance, { model: 'openai/gpt-5-nano', input: 'Hello' });

For most use cases, prefer the client.callModel() method shown above.

Tool Creation

OldNew
import {tool} from '@openrouter/sdk'import {tool} from '@openrouter/agent/tool'

Stop Conditions

OldNew
import {stepCountIs, hasToolCall, maxCost} from '@openrouter/sdk'import {stepCountIs, hasToolCall, maxCost} from '@openrouter/agent/stop-conditions'
import {maxTokensUsed, finishReasonIs} from '@openrouter/sdk'import {maxTokensUsed, finishReasonIs} from '@openrouter/agent/stop-conditions'

Types

OldNew
import type {Tool, ToolWithExecute, ToolWithGenerator, ManualTool} from '@openrouter/sdk/lib/tool-types'import type {Tool, ToolWithExecute, ToolWithGenerator, ManualTool} from '@openrouter/agent/tool-types'
import type {CallModelInput} from '@openrouter/sdk/lib/async-params'import type {CallModelInput} from '@openrouter/agent/async-params'
import {ModelResult} from '@openrouter/sdk/lib/model-result'import {ModelResult} from '@openrouter/agent/model-result'

Format Converters

OldNew
import {fromClaudeMessages, toClaudeMessage} from '@openrouter/sdk'import {fromClaudeMessages, toClaudeMessage} from '@openrouter/agent'
import {fromChatMessages, toChatMessage} from '@openrouter/sdk'import {fromChatMessages, toChatMessage} from '@openrouter/agent'

Type Guards

OldNew
import {hasExecuteFunction, isGeneratorTool, isRegularExecuteTool} from '@openrouter/sdk'import {hasExecuteFunction, isGeneratorTool, isRegularExecuteTool} from '@openrouter/agent/tool-types'

Before & After Example

Before (using @openrouter/sdk)

import OpenRouter, { tool, stepCountIs, hasToolCall } from '@openrouter/sdk';
import { z } from 'zod';

const client = new OpenRouter({
  apiKey: process.env.OPENROUTER_API_KEY,
});

const searchTool = tool({
  name: 'web_search',
  description: 'Search the web',
  inputSchema: z.object({ query: z.string() }),
  outputSchema: z.object({ results: z.array(z.string()) }),
  execute: async ({ query }) => {
    return { results: ['Result 1', 'Result 2'] };
  },
});

const finishTool = tool({
  name: 'finish',
  description: 'Complete the task',
  inputSchema: z.object({ answer: z.string() }),
  execute: async ({ answer }) => ({ answer }),
});

const result = client.callModel({
  model: 'openai/gpt-5-nano',
  instructions: 'You are a research assistant.',
  input: 'What are the latest AI developments?',
  tools: [searchTool, finishTool],
  stopWhen: [stepCountIs(10), hasToolCall('finish')],
});

const text = await result.getText();

After (using @openrouter/agent)

import { OpenRouter } from '@openrouter/agent';
import { tool } from '@openrouter/agent/tool';
import { stepCountIs, hasToolCall } from '@openrouter/agent/stop-conditions';
import { z } from 'zod';

const client = new OpenRouter({
  apiKey: process.env.OPENROUTER_API_KEY,
});

const searchTool = tool({
  name: 'web_search',
  description: 'Search the web',
  inputSchema: z.object({ query: z.string() }),
  outputSchema: z.object({ results: z.array(z.string()) }),
  execute: async ({ query }) => {
    return { results: ['Result 1', 'Result 2'] };
  },
});

const finishTool = tool({
  name: 'finish',
  description: 'Complete the task',
  inputSchema: z.object({ answer: z.string() }),
  execute: async ({ answer }) => ({ answer }),
});

const result = client.callModel({
  model: 'openai/gpt-5-nano',
  instructions: 'You are a research assistant.',
  input: 'What are the latest AI developments?',
  tools: [searchTool, finishTool],
  stopWhen: [stepCountIs(10), hasToolCall('finish')],
});

const text = await result.getText();

The only changes are the three import lines at the top.


When to Keep @openrouter/sdk

Keep @openrouter/sdk installed if you use any of these non-agent features:

FeatureAccess
Model listingclient.models.list()
Chat completionsclient.chat.send()
Legacy completionsclient.completions.generate()
Usage analyticsclient.analytics.getUserActivity()
Credit balanceclient.credits.getCredits()
API key managementclient.apiKeys.list(), .create(), etc.
OAuth PKCE flowclient.oAuth.createAuthCode(), .exchangeAuthCodeForAPIKey()

For mixed projects, use @openrouter/sdk for these features and @openrouter/agent for agent features:

import OpenRouter from '@openrouter/sdk';               // SDK client for models, credits, etc.
import { OpenRouter as Agent } from '@openrouter/agent'; // Agent client for callModel
import { tool } from '@openrouter/agent/tool';
import { stepCountIs } from '@openrouter/agent/stop-conditions';

// Use SDK client for non-agent features
const sdkClient = new OpenRouter({ apiKey: process.env.OPENROUTER_API_KEY });
const models = await sdkClient.models.list();
const credits = await sdkClient.credits.getCredits();

// Use Agent client for callModel
const agent = new Agent({ apiKey: process.env.OPENROUTER_API_KEY });
const result = agent.callModel({
  model: 'openai/gpt-5-nano',
  input: 'Hello!',
  tools: [myTool],
  stopWhen: stepCountIs(5),
});

New Features in @openrouter/agent

These features are only available in @openrouter/agent, not in @openrouter/sdk:

Shared Context Schema

Type-safe shared state across all tools in a conversation:

import { OpenRouter } from '@openrouter/agent';
import { z } from 'zod';

const client = new OpenRouter({ apiKey: '...' });

const result = client.callModel({
  model: 'openai/gpt-5-nano',
  input: 'Process this data',
  sharedContextSchema: z.object({
    userId: z.string(),
    sessionData: z.record(z.unknown()),
  }),
  context: {
    shared: { userId: '123', sessionData: {} },
  },
  tools: [myTool],
});

Tool Context

Tools can declare their own typed context and access shared context:

import { tool } from '@openrouter/agent/tool';
import { z } from 'zod';

const myTool = tool({
  name: 'my_tool',
  description: 'A tool with context',
  inputSchema: z.object({ query: z.string() }),
  contextSchema: z.object({ apiKey: z.string() }),
  execute: async (params, context) => {
    // context.local — this tool's own context
    // context.shared — shared context across all tools
    // context.setContext({ ... }) — update this tool's context
    // context.setSharedContext({ ... }) — update shared context
    return { result: 'done' };
  },
});

Tool Approval Flow

Require user approval before tool execution:

const dangerousTool = tool({
  name: 'delete_file',
  description: 'Delete a file',
  inputSchema: z.object({ path: z.string() }),
  requireApproval: true, // or a function: (toolCall, context) => boolean
  execute: async ({ path }) => { /* ... */ },
});

Turn Lifecycle Callbacks

const result = client.callModel({
  model: 'openai/gpt-5-nano',
  input: 'Complex task',
  tools: [myTool],
  onTurnStart: async (context) => {
    console.log(`Starting turn ${context.numberOfTurns}`);
  },
  onTurnEnd: async (context, response) => {
    console.log(`Turn ${context.numberOfTurns} complete`);
  },
});

All Subpath Exports

@openrouter/agent provides granular subpath imports:

SubpathExports
@openrouter/agentBarrel: all exports below
@openrouter/agent/clientOpenRouter class
@openrouter/agent/call-modelcallModel standalone function
@openrouter/agent/tooltool() factory function
@openrouter/agent/tool-typesTool, ToolWithExecute, ToolWithGenerator, ManualTool, type guards
@openrouter/agent/stop-conditionsstepCountIs, hasToolCall, maxCost, maxTokensUsed, finishReasonIs
@openrouter/agent/model-resultModelResult response wrapper
@openrouter/agent/async-paramsCallModelInput, hasAsyncFunctions, resolveAsyncFunctions
@openrouter/agent/anthropic-compatfromClaudeMessages, toClaudeMessage
@openrouter/agent/chat-compatfromChatMessages, toChatMessage
@openrouter/agent/conversation-statecreateInitialState, updateState, appendToMessages
@openrouter/agent/next-turn-paramsnextTurnParams utilities
@openrouter/agent/stream-transformersextractUnsupportedContent, getUnsupportedContentSummary
@openrouter/agent/tool-contextbuildToolExecuteContext, ToolContextStore
@openrouter/agent/tool-event-broadcasterToolEventBroadcaster
@openrouter/agent/turn-contextbuildTurnContext

适合场景

01

调用多模型

02

代码和文本生成

03

Agent 推理流程

04

OpenRouter 模型接入

能力概览

能力 1

统一调用多种 LLM

能力 2

支持 Claude、Gemini、Kimi 等模型

能力 3

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

能力 4

可作为 Agent 模型调用入口

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

平台分布

Codex

36.52%
按下载量换算112

Claude

29.22%
按下载量换算90

Cursor

20.14%
按下载量换算62

Gemini CLI

9.29%
按下载量换算29

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills