Plugin Runtime Helpers
各 plugin の登録時に注入される api.runtime オブジェクトのリファレンスです。
ホスト内部実装を直接 import する代わりに、これらの helper を使用してください。
register(api) {
const runtime = api.runtime;
}
ランタイム名前空間
api.runtime.agent
agent ID、ディレクトリ、セッション管理です。
// agent の作業ディレクトリを解決する
const agentDir = api.runtime.agent.resolveAgentDir(cfg);
// agent workspace を解決する
const workspaceDir = api.runtime.agent.resolveAgentWorkspaceDir(cfg);
// agent ID を取得する
const identity = api.runtime.agent.resolveAgentIdentity(cfg);
// デフォルトの thinking レベルを取得する
const thinking = api.runtime.agent.resolveThinkingDefault(cfg, provider, model);
// agent のタイムアウトを取得する
const timeoutMs = api.runtime.agent.resolveAgentTimeoutMs(cfg);
// workspace の存在を保証する
await api.runtime.agent.ensureAgentWorkspace(cfg);
// 組み込み Pi agent を実行する
const agentDir = api.runtime.agent.resolveAgentDir(cfg);
const result = await api.runtime.agent.runEmbeddedPiAgent({
sessionId: "my-plugin:task-1",
runId: crypto.randomUUID(),
sessionFile: path.join(agentDir, "sessions", "my-plugin-task-1.jsonl"),
workspaceDir: api.runtime.agent.resolveAgentWorkspaceDir(cfg),
prompt: "Summarize the latest changes",
timeoutMs: api.runtime.agent.resolveAgentTimeoutMs(cfg),
});
Session store helper は api.runtime.agent.session 配下にあります:
const storePath = api.runtime.agent.session.resolveStorePath(cfg);
const store = api.runtime.agent.session.loadSessionStore(cfg);
await api.runtime.agent.session.saveSessionStore(cfg, store);
const filePath = api.runtime.agent.session.resolveSessionFilePath(cfg, sessionId);
api.runtime.agent.defaults
デフォルトのモデル定数と provider 定数:
const model = api.runtime.agent.defaults.model; // 例: "anthropic/claude-sonnet-4-6"
const provider = api.runtime.agent.defaults.provider; // 例: "anthropic"
api.runtime.subagent
バックグラウンド subagent 実行を起動して管理します。
// subagent 実行を開始する
const { runId } = await api.runtime.subagent.run({
sessionKey: "agent:main:subagent:search-helper",
message: "Expand this query into focused follow-up searches.",
provider: "openai", // 任意の override
model: "gpt-4.1-mini", // 任意の override
deliver: false,
});
// 完了を待つ
const result = await api.runtime.subagent.waitForRun({ runId, timeoutMs: 30000 });
// セッションメッセージを読む
const { messages } = await api.runtime.subagent.getSessionMessages({
sessionKey: "agent:main:subagent:search-helper",
limit: 10,
});
// セッションを削除する
await api.runtime.subagent.deleteSession({
sessionKey: "agent:main:subagent:search-helper",
});
モデル override(provider/model)には、config の
plugins.entries.<id>.subagent.allowModelOverride: true によるオペレーターのオプトインが必要です。
信頼されていない plugin でも subagent は実行できますが、override 要求は拒否されます。
api.runtime.taskFlow
Task Flow ランタイムを既存の OpenClaw セッションキーまたは信頼済み tool
context にバインドし、毎回 owner を渡さずに Task Flow を作成・管理します。
const taskFlow = api.runtime.taskFlow.fromToolContext(ctx);
const created = taskFlow.createManaged({
controllerId: "my-plugin/review-batch",
goal: "Review new pull requests",
});
const child = taskFlow.runTask({
flowId: created.flowId,
runtime: "acp",
childSessionKey: "agent:main:subagent:reviewer",
task: "Review PR #123",
status: "running",
startedAt: Date.now(),
});
const waiting = taskFlow.setWaiting({
flowId: created.flowId,
expectedRevision: created.revision,
currentStep: "await-human-reply",
waitJson: { kind: "reply", channel: "telegram" },
});
自分の binding レイヤーからすでに信頼済みの OpenClaw セッションキーを持っている場合は、bindSession({ sessionKey, requesterOrigin }) を使用してください。生の
ユーザー入力から bind しないでください。
api.runtime.tts
テキスト読み上げ合成です。
// 標準 TTS
const clip = await api.runtime.tts.textToSpeech({
text: "Hello from OpenClaw",
cfg: api.config,
});
// 電話向け最適化 TTS
const telephonyClip = await api.runtime.tts.textToSpeechTelephony({
text: "Hello from OpenClaw",
cfg: api.config,
});
// 利用可能な音声を一覧表示する
const voices = await api.runtime.tts.listVoices({
provider: "elevenlabs",
cfg: api.config,
});
core の messages.tts 設定と provider 選択を使用します。PCM 音声
buffer と sample rate を返します。
画像、音声、動画の解析です。
// 画像を説明する
const image = await api.runtime.mediaUnderstanding.describeImageFile({
filePath: "/tmp/inbound-photo.jpg",
cfg: api.config,
agentDir: "/tmp/agent",
});
// 音声を文字起こしする
const { text } = await api.runtime.mediaUnderstanding.transcribeAudioFile({
filePath: "/tmp/inbound-audio.ogg",
cfg: api.config,
mime: "audio/ogg", // 任意。MIME を推定できない場合に使用
});
// 動画を説明する
const video = await api.runtime.mediaUnderstanding.describeVideoFile({
filePath: "/tmp/inbound-video.mp4",
cfg: api.config,
});
// 汎用ファイル解析
const result = await api.runtime.mediaUnderstanding.runFile({
filePath: "/tmp/inbound-file.pdf",
cfg: api.config,
});
出力が生成されなかった場合(例: 入力がスキップされた場合)は { text: undefined } を返します。
api.runtime.stt.transcribeAudioFile(...) は、互換性のための
api.runtime.mediaUnderstanding.transcribeAudioFile(...) の alias として引き続き利用できます。
api.runtime.imageGeneration
画像生成です。
const result = await api.runtime.imageGeneration.generate({
prompt: "A robot painting a sunset",
cfg: api.config,
});
const providers = api.runtime.imageGeneration.listProviders({ cfg: api.config });
api.runtime.webSearch
Web 検索です。
const providers = api.runtime.webSearch.listProviders({ config: api.config });
const result = await api.runtime.webSearch.search({
config: api.config,
args: { query: "OpenClaw plugin SDK", count: 5 },
});
低レベル media ユーティリティです。
const webMedia = await api.runtime.media.loadWebMedia(url);
const mime = await api.runtime.media.detectMime(buffer);
const kind = api.runtime.media.mediaKindFromMime("image/jpeg"); // "image"
const isVoice = api.runtime.media.isVoiceCompatibleAudio(filePath);
const metadata = await api.runtime.media.getImageMetadata(filePath);
const resized = await api.runtime.media.resizeToJpeg(buffer, { maxWidth: 800 });
api.runtime.config
config の読み込みと書き込みです。
const cfg = await api.runtime.config.loadConfig();
await api.runtime.config.writeConfigFile(cfg);
api.runtime.system
システムレベルのユーティリティです。
await api.runtime.system.enqueueSystemEvent(event);
api.runtime.system.requestHeartbeatNow();
const output = await api.runtime.system.runCommandWithTimeout(cmd, args, opts);
const hint = api.runtime.system.formatNativeDependencyHint(pkg);
api.runtime.events
イベント購読です。
api.runtime.events.onAgentEvent((event) => {
/* ... */
});
api.runtime.events.onSessionTranscriptUpdate((update) => {
/* ... */
});
api.runtime.logging
ロギングです。
const verbose = api.runtime.logging.shouldLogVerbose();
const childLogger = api.runtime.logging.getChildLogger({ plugin: "my-plugin" }, { level: "debug" });
api.runtime.modelAuth
モデルおよび provider の認証解決です。
const auth = await api.runtime.modelAuth.getApiKeyForModel({ model, cfg });
const providerAuth = await api.runtime.modelAuth.resolveApiKeyForProvider({
provider: "openai",
cfg,
});
api.runtime.state
状態ディレクトリの解決です。
const stateDir = api.runtime.state.resolveStateDir();
メモリ tool ファクトリーと CLI です。
const getTool = api.runtime.tools.createMemoryGetTool(/* ... */);
const searchTool = api.runtime.tools.createMemorySearchTool(/* ... */);
api.runtime.tools.registerMemoryCli(/* ... */);
api.runtime.channel
チャネル固有のランタイム helper です(channel plugin がロードされたときに利用できます)。
api.runtime.channel.mentions は、ランタイム注入を使用する
バンドルチャネル plugin 向けの共有受信 mention-policy surface です:
const mentionMatch = api.runtime.channel.mentions.matchesMentionWithExplicit(text, {
mentionRegexes,
mentionPatterns,
});
const decision = api.runtime.channel.mentions.resolveInboundMentionDecision({
facts: {
canDetectMention: true,
wasMentioned: mentionMatch.matched,
implicitMentionKinds: api.runtime.channel.mentions.implicitMentionKindWhen(
"reply_to_bot",
isReplyToBot,
),
},
policy: {
isGroup,
requireMention,
allowTextCommands,
hasControlCommand,
commandAuthorized,
},
});
利用可能な mention helper:
buildMentionRegexes
matchesMentionPatterns
matchesMentionWithExplicit
implicitMentionKindWhen
resolveInboundMentionDecision
api.runtime.channel.mentions は、意図的に古い
resolveMentionGating* 互換 helper を公開していません。正規化された
{ facts, policy } パスを優先してください。
ランタイム参照の保存
register コールバックの外で使うためにランタイム参照を保存するには、createPluginRuntimeStore を使用します:
import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";
import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store";
const store = createPluginRuntimeStore<PluginRuntime>("my-plugin runtime not initialized");
// エントリポイント内
export default defineChannelPluginEntry({
id: "my-plugin",
name: "My Plugin",
description: "Example",
plugin: myPlugin,
setRuntime: store.setRuntime,
});
// 他のファイル内
export function getRuntime() {
return store.getRuntime(); // 初期化されていなければ throw する
}
export function tryGetRuntime() {
return store.tryGetRuntime(); // 初期化されていなければ null を返す
}
その他のトップレベル api フィールド
api.runtime に加えて、API オブジェクトは次も提供します:
| Field | Type | Description |
|---|
api.id | string | plugin ID |
api.name | string | plugin 表示名 |
api.config | OpenClawConfig | 現在の config snapshot(利用可能な場合はアクティブなインメモリ runtime snapshot) |
api.pluginConfig | Record<string, unknown> | plugins.entries.<id>.config からの plugin 固有 config |
api.logger | PluginLogger | スコープ付き logger(debug、info、warn、error) |
api.registrationMode | PluginRegistrationMode | 現在のロードモード。"setup-runtime" は完全エントリ前の軽量な起動/セットアップ用ウィンドウです |
api.resolvePath(input) | (string) => string | plugin ルートからの相対パスを解決する |