Plugin SDK reference

Plugin ランタイムヘルパー

api.runtime オブジェクトのリファレンスです。このオブジェクトは登録時にすべての Plugin に注入されます。ホスト内部を直接インポートする代わりに、これらのヘルパーを使用してください。

typescript
register(api) {  const runtime = api.runtime;}

設定の読み込みと書き込み

アクティブな呼び出しパスにすでに渡されている設定を優先してください。たとえば、登録時の api.config や、channel/provider コールバックの cfg 引数です。これにより、ホットパスで設定を再解析する代わりに、1 つのプロセススナップショットが処理全体を流れます。

長期存続するハンドラーが現在のプロセススナップショットを必要とし、その関数に設定が渡されていない場合にのみ、api.runtime.config.current() を使用してください。返される値は読み取り専用です。編集する前にクローンするか、変更ヘルパーを使用してください。

ツールファクトリは ctx.runtimeConfigctx.getRuntimeConfig() を受け取ります。ツール定義の作成後に設定が変更される可能性がある場合は、長期存続するツールの execute コールバック内で getter を使用してください。

変更を永続化するには、api.runtime.config.mutateConfigFile(...) または api.runtime.config.replaceConfigFile(...) を使用します。各書き込みでは、明示的な afterWrite ポリシーを選択する必要があります。

  • afterWrite: { mode: "auto" } は、Gateway のリロードプランナーに判断を任せます。
  • afterWrite: { mode: "restart", reason: "..." } は、書き込み側がホットリロードは安全でないと分かっている場合に、クリーンな再起動を強制します。
  • afterWrite: { mode: "none", reason: "..." } は、呼び出し元が後続処理を所有している場合にのみ、自動リロード/再起動を抑制します。

変更ヘルパーは afterWrite と型付きの followUp サマリーを返すため、呼び出し元は再起動を要求したかどうかをログ記録またはテストできます。実際にその再起動がいつ発生するかは、引き続き Gateway が所有します。

api.runtime.config.loadConfig()api.runtime.config.writeConfigFile(...) は、runtime-config-load-write 配下の非推奨の互換性ヘルパーです。これらは実行時に一度警告し、移行期間中は古い外部 Plugin 向けに引き続き利用できます。バンドル済み Plugin はこれらを使用してはいけません。Plugin コードがこれらを呼び出したり、Plugin SDK のサブパスからこれらのヘルパーをインポートしたりすると、設定境界ガードが失敗します。

直接 SDK をインポートする場合は、広範な openclaw/plugin-sdk/config-runtime 互換性バレルではなく、焦点を絞った設定サブパスを使用してください。型には config-contracts、読み込み済み設定のアサーションと Plugin エントリ検索には plugin-config-runtime、現在のプロセススナップショットには runtime-config-snapshot、書き込みには config-mutation を使用します。バンドル済み Plugin のテストでは、広範な互換性バレルをモックするのではなく、これらの焦点を絞ったサブパスを直接モックしてください。

内部 OpenClaw ランタイムコードも同じ方向性です。CLI、Gateway、またはプロセス境界で設定を一度読み込み、その値を渡していきます。成功した変更書き込みはプロセスランタイムスナップショットを更新し、その内部リビジョンを進めます。長期存続するキャッシュは、設定をローカルでシリアライズするのではなく、ランタイム所有のキャッシュキーを基準にするべきです。長期存続するランタイムモジュールには、周囲の loadConfig() 呼び出しに対するゼロトレランスのスキャナーがあります。渡された cfg、リクエストの context.getRuntimeConfig()、または明示的なプロセス境界での getRuntimeConfig() を使用してください。

Provider と channel の実行パスは、設定の読み戻しや編集用に返されたファイルスナップショットではなく、アクティブなランタイム設定スナップショットを使用する必要があります。ファイルスナップショットは UI と書き込みのために SecretRef マーカーなどのソース値を保持します。Provider コールバックには、解決済みのランタイムビューが必要です。ヘルパーがアクティブなソーススナップショットまたはアクティブなランタイムスナップショットのどちらでも呼び出される可能性がある場合は、認証情報を読む前に selectApplicableRuntimeConfig() を経由してください。

再利用可能なランタイムユーティリティ

ボットが作成したインバウンドメッセージには、インバウンドの botLoopProtection ファクトを使用してください。Core は、ポリシーを 1 つの channel に結び付けずに、セッション記録とディスパッチの前に共有インメモリのスライディングウィンドウガードを適用します。このガードは (scopeId, conversationId, participant pair) キーを追跡し、ペアの両方向をまとめてカウントし、ウィンドウの予算を超えるとクールダウンを適用し、非アクティブなエントリを機会的に刈り込みます。

この動作をオペレーターに公開する Channel Plugin は、ベースライン予算として共有の channels.defaults.botLoopProtection 形状を優先し、その上に channel/provider 固有のオーバーライドを重ねてください。共有設定はユーザー向けであるため、秒を使用します。

typescript
type ChannelBotLoopProtectionConfig = {  enabled?: boolean;  maxEventsPerWindow?: number;  windowSeconds?: number;  cooldownSeconds?: number;};

解決済みターンとともに、正規化されたボットペアのファクトを渡してください。Core はデフォルト、単位変換、enabled セマンティクスを解決します。

typescript
return {  channel: "example",  routeSessionKey,  storePath,  ctxPayload,  recordInboundSession,  runDispatch,  botLoopProtection: {    scopeId: "account-1",    conversationId: "channel-1",    senderId: "bot-a",    receiverId: "bot-b",    config: channelConfig.botLoopProtection,    defaultsConfig: runtimeConfig.channels?.defaults?.botLoopProtection,    defaultEnabled: allowBotsMode !== "off",  },};

共有インバウンド返信ランナーを通らないカスタムの 2 者間イベントループの場合にのみ、openclaw/plugin-sdk/pair-loop-guard-runtime を直接使用してください。

ランタイム名前空間

api.runtime.agent

Agent のアイデンティティ、ディレクトリ、セッション管理。

typescript
// Resolve the agent's working directoryconst agentDir = api.runtime.agent.resolveAgentDir(cfg); // Resolve agent workspaceconst workspaceDir = api.runtime.agent.resolveAgentWorkspaceDir(cfg); // Get agent identityconst identity = api.runtime.agent.resolveAgentIdentity(cfg); // Get default thinking levelconst thinking = api.runtime.agent.resolveThinkingDefault({  cfg,  provider,  model,}); // Validate a user-provided thinking level against the active provider profileconst policy = api.runtime.agent.resolveThinkingPolicy({ provider, model });const level = api.runtime.agent.normalizeThinkingLevel("extra high");if (level && policy.levels.some((entry) => entry.id === level)) {  // pass level to an embedded run} // Get agent timeoutconst timeoutMs = api.runtime.agent.resolveAgentTimeoutMs(cfg); // Ensure workspace existsawait api.runtime.agent.ensureAgentWorkspace(cfg); // Run an embedded agent turnconst result = await api.runtime.agent.runEmbeddedAgent({  sessionId: "my-plugin:task-1",  runId: crypto.randomUUID(),  workspaceDir: api.runtime.agent.resolveAgentWorkspaceDir(cfg),  prompt: "Summarize the latest changes",  timeoutMs: api.runtime.agent.resolveAgentTimeoutMs(cfg),});

runEmbeddedAgent(...) は、Plugin コードから通常の OpenClaw agent ターンを開始するための中立的なヘルパーです。channel によってトリガーされる返信と同じ provider/model 解決および agent ハーネス選択を使用します。

runEmbeddedPiAgent(...) は、既存 Plugin 向けの非推奨の互換性エイリアスとして残っています。新しいコードでは runEmbeddedAgent(...) を使用してください。

resolveThinkingPolicy(...) は、provider/model がサポートする thinking レベルと任意のデフォルトを返します。Provider Plugin は thinking フックを通じてモデル固有のプロファイルを所有するため、ツール Plugin は provider リストをインポートまたは複製する代わりに、このランタイムヘルパーを呼び出すべきです。

normalizeThinkingLevel(...) は、onx-highextra high などのユーザーテキストを、解決済みポリシーと照合する前に、正規の保存レベルへ変換します。

セッションストアヘルパーapi.runtime.agent.session 配下にあります。

typescript
const entry = api.runtime.agent.session.getSessionEntry({ agentId, sessionKey });for (const { sessionKey, entry } of api.runtime.agent.session.listSessionEntries({ agentId })) {  // Iterate session rows without depending on the legacy sessions.json shape.}await api.runtime.agent.session.patchSessionEntry({  agentId,  sessionKey,  update: (entry) => ({ thinkingLevel: "high" }),}); const storePath = api.runtime.agent.session.resolveStorePath(cfg.session?.store, { agentId });await api.runtime.agent.session.runWithWorkAdmission(  { storePath, sessionKey },  async (signal) => {    // Create or update the session, then pass signal to the admitted agent run.  },);

セッションワークフローには、getSessionEntry(...)listSessionEntries(...)patchSessionEntry(...)、または upsertSessionEntry(...) を優先してください。これらのヘルパーは agent/session アイデンティティでセッションを扱うため、Plugin はレガシーな sessions.json ストレージ形状に依存しません。セッションアクティビティを更新すべきでないメタデータのみのパッチには preserveActivity: true を使用し、コールバックが完全なエントリを返し、削除されたフィールドを削除されたままにする必要がある場合にのみ replaceEntry: true を使用してください。

Plugin が永続化されたセッションで作業を開始する場合は、runWithWorkAdmission(...) を使用してください。コールバックは、アーカイブ済みまたは同時に置き換えられたセッションを拒否し、アーカイブ/リセット/削除の変更を完了まで協調させ、agent 実行へ転送する必要がある AbortSignal を受け取ります。

トランスクリプトの読み書きには、openclaw/plugin-sdk/session-transcript-runtime をインポートし、{ agentId, sessionKey, sessionId } とともに resolveSessionTranscriptIdentity(...)resolveSessionTranscriptTarget(...)readSessionTranscriptEvents(...)appendSessionTranscriptMessageByIdentity(...)publishSessionTranscriptUpdateByIdentity(...)、または withSessionTranscriptWriteLock(...) を使用してください。これらの API により、Plugin はトランスクリプトを識別し、そのイベントを読み取り、メッセージを追加し、更新を公開し、同じトランスクリプト書き込みロックの下で関連操作を実行できます。sessionFile を渡すこと、resolveSessionTranscriptLegacyFileTarget(...) を使用すること、または openclaw/plugin-sdk/agent-harness-runtime から低レベルの appendSessionTranscriptMessage(...) / emitSessionTranscriptUpdate(...) をインポートすることは非推奨です。これらのパスは、すでにアクティブなトランスクリプト成果物を受け取っているレガシーコード向けにのみ存在します。

loadSessionStore(...)saveSessionStore(...)updateSessionStore(...)resolveSessionFilePath(...)、および resolveAndPersistSessionFile(...) は、レガシーなストア全体またはトランスクリプトファイル形状にまだ意図的に依存している Plugin 向けの非推奨の互換性ヘルパーです。新しい Plugin コードはこれらのヘルパーを使用してはならず、既存の呼び出し元はエントリヘルパーとトランスクリプトアイデンティティヘルパーへ移行するべきです。

api.runtime.agent.defaults

デフォルトのモデルと provider 定数:

typescript
const model = api.runtime.agent.defaults.model; // e.g. "anthropic/claude-sonnet-4-6"const provider = api.runtime.agent.defaults.provider; // e.g. "anthropic"
api.runtime.llm

provider 内部をインポートしたり、OpenClaw のモデル/auth/base URL 準備を複製したりせずに、ホスト所有のテキスト補完を実行します。

typescript
const result = await api.runtime.llm.complete({  messages: [{ role: "user", content: "Summarize this transcript." }],  purpose: "my-plugin.summary",  maxTokens: 512,  temperature: 0.2,});

このヘルパーは、OpenClaw の組み込みランタイムと同じシンプル補完準備パス、およびホスト所有のランタイム設定スナップショットを使用します。コンテキストエンジンはセッションに紐づく llm.complete capability を受け取るため、モデル呼び出しはアクティブなセッションの agent を使用し、デフォルト agent へ暗黙にフォールバックしません。結果には、provider/model/agent の帰属に加えて、利用可能な場合は正規化されたトークン、キャッシュ、推定コストの使用量が含まれます。

api.runtime.subagent

バックグラウンドのサブエージェント実行を起動および管理します。

typescript
// Start a subagent runconst { runId } = await api.runtime.subagent.run({  sessionKey: "agent:main:subagent:search-helper",  message: "Expand this query into focused follow-up searches.",  provider: "openai", // optional override  model: "gpt-4.1-mini", // optional override  deliver: false,}); // Wait for completionconst result = await api.runtime.subagent.waitForRun({ runId, timeoutMs: 30000 }); // Read session messagesconst { messages } = await api.runtime.subagent.getSessionMessages({  sessionKey: "agent:main:subagent:search-helper",  limit: 10,}); // Delete a sessionawait api.runtime.subagent.deleteSession({  sessionKey: "agent:main:subagent:search-helper",});

deleteSession(...) は、同じ Plugin が api.runtime.subagent.run(...) を通じて作成したセッションを削除できます。任意のユーザーまたはオペレーターのセッションを削除するには、引き続き admin スコープの Gateway 要求が必要です。

api.runtime.nodes

接続済みノードを一覧表示し、Gateway に読み込まれた Plugin コードまたは Plugin CLI コマンドからノードホストコマンドを呼び出します。Plugin がペアリング済みデバイス上のローカル作業を所有する場合、たとえば別の Mac 上のブラウザーまたは音声ブリッジで使用します。

typescript
const { nodes } = await api.runtime.nodes.list({ connected: true }); const result = await api.runtime.nodes.invoke({  nodeId: "mac-studio",  command: "my-plugin.command",  params: { action: "start" },  timeoutMs: 30000,});

Gateway 内では、このランタイムはインプロセスです。Plugin CLI コマンドでは、設定済みの Gateway を RPC 経由で呼び出すため、openclaw googlemeet recover-tab のようなコマンドでターミナルからペアリング済みノードを検査できます。ノードコマンドは引き続き通常の Gateway ノードペアリング、コマンド許可リスト、Plugin のノード呼び出しポリシー、ノードローカルのコマンド処理を通ります。

危険なノードホストコマンドを公開する Plugin は、api.registerNodeInvokePolicy(...) でノード呼び出しポリシーを登録する必要があります。ポリシーは、コマンド許可リストのチェック後、コマンドがノードへ転送される前に Gateway で実行されるため、直接の node.invoke 呼び出しと高レベルの Plugin ツールは同じ強制経路を共有します。

api.runtime.tasks.managedFlows

Task Flow ランタイムを既存の OpenClaw セッションキーまたは信頼済みツールコンテキストにバインドし、各呼び出しで owner を渡さずに Task Flow を作成および管理します。

Task Flow は永続的な複数ステップのワークフロー状態を追跡します。これはスケジューラーではありません: 将来の wakeup には Cron または api.session.workflow.scheduleSessionTurn(...) を使用し、そのスケジュール済みターンでフロー状態、子タスク、待機、キャンセルが必要な場合に managedFlows を使用します。

typescript
const taskFlow = api.runtime.tasks.managedFlows.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" },});

独自のバインディング層から信頼済み OpenClaw セッションキーをすでに持っている場合は、bindSession({ sessionKey, requesterOrigin }) を使用します。生のユーザー入力からバインドしないでください。

api.runtime.tts

テキスト読み上げ合成です。

typescript
// Standard TTSconst clip = await api.runtime.tts.textToSpeech({  text: "Hello from OpenClaw",  cfg: api.config,}); // Telephony-optimized TTSconst telephonyClip = await api.runtime.tts.textToSpeechTelephony({  text: "Hello from OpenClaw",  cfg: api.config,}); // List available voicesconst voices = await api.runtime.tts.listVoices({  provider: "elevenlabs",  cfg: api.config,});

コアの messages.tts 設定とプロバイダー選択を使用します。PCM 音声バッファーとサンプルレートを返します。

api.runtime.mediaUnderstanding

画像、音声、動画の分析です。

typescript
// Describe an imageconst image = await api.runtime.mediaUnderstanding.describeImageFile({  filePath: "/tmp/inbound-photo.jpg",  cfg: api.config,  agentDir: "/tmp/agent",}); // Transcribe audioconst { text } = await api.runtime.mediaUnderstanding.transcribeAudioFile({  filePath: "/tmp/inbound-audio.ogg",  cfg: api.config,  mime: "audio/ogg", // optional, for when MIME cannot be inferred}); // Describe a videoconst video = await api.runtime.mediaUnderstanding.describeVideoFile({  filePath: "/tmp/inbound-video.mp4",  cfg: api.config,}); // Generic file analysisconst result = await api.runtime.mediaUnderstanding.runFile({  filePath: "/tmp/inbound-file.pdf",  cfg: api.config,}); // Structured image extraction through a specific provider/model.// Include at least one image; text inputs are supplemental context.const evidence = await api.runtime.mediaUnderstanding.extractStructuredWithModel({  provider: "codex",  model: "gpt-5.5",  input: [    {      type: "image",      buffer: receiptImageBuffer,      fileName: "receipt.png",      mime: "image/png",    },    { type: "text", text: "Prefer the printed total over handwritten notes." },  ],  instructions: "Extract vendor, total, and searchable tags.",  schemaName: "receipt.evidence",  jsonSchema: {    type: "object",    properties: {      vendor: { type: "string" },      total: { type: "number" },      tags: { type: "array", items: { type: "string" } },    },    required: ["vendor", "total"],  },  cfg: api.config,});

出力が生成されない場合(例: 入力がスキップされた場合)は { text: undefined } を返します。

api.runtime.imageGeneration

画像生成です。

typescript
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 検索です。

typescript
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 },});
api.runtime.media

低レベルのメディアユーティリティです。

typescript
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 });const terminalQr = await api.runtime.media.renderQrTerminal("https://openclaw.ai");const pngQr = await api.runtime.media.renderQrPngBase64("https://openclaw.ai", {  scale: 6, // 1-12  marginModules: 4, // 0-16});const pngQrDataUrl = await api.runtime.media.renderQrPngDataUrl("https://openclaw.ai");const tmpRoot = resolvePreferredOpenClawTmpDir();const pngQrFile = await api.runtime.media.writeQrPngTempFile("https://openclaw.ai", {  tmpRoot,  dirPrefix: "my-plugin-qr-",  fileName: "qr.png",});
api.runtime.config

現在のランタイム config スナップショットとトランザクション型の config 書き込みです。アクティブな呼び出し経路にすでに渡されている config を優先し、ハンドラーがプロセススナップショットを直接必要とする場合にのみ current() を使用します。

typescript
const cfg = api.runtime.config.current();await api.runtime.config.mutateConfigFile({  afterWrite: { mode: "auto" },  mutate(draft) {    draft.plugins ??= {};  },});

mutateConfigFile(...)replaceConfigFile(...)followUp 値を返します。たとえば { mode: "restart", requiresRestart: true, reason } で、Gateway から再起動制御を奪わずに書き込み側の意図を記録します。

api.runtime.system

システムレベルのユーティリティです。

typescript
await api.runtime.system.enqueueSystemEvent(event);api.runtime.system.requestHeartbeat({  source: "other",  intent: "event",  reason: "plugin-event",});api.runtime.system.requestHeartbeatNow({ reason: "plugin-event" }); // Deprecated compatibility alias.const output = await api.runtime.system.runCommandWithTimeout(cmd, args, opts);const hint = api.runtime.system.formatNativeDependencyHint(pkg);

runCommandWithTimeout(...) は、キャプチャされた stdoutstderr、任意の切り詰めカウント、codesignalkilledterminationnoOutputTimedOut を返します。子プロセスが非ゼロの終了コードを提供しない場合、タイムアウトおよび無出力タイムアウトの結果は code: 124 を報告します。タイムアウトではないシグナル終了でも code: null が返る場合があるため、タイムアウト理由を区別するには terminationnoOutputTimedOut を使用します。

api.runtime.events

イベント購読です。

typescript
api.runtime.events.onAgentEvent((event) => {  /* ... */});api.runtime.events.onSessionTranscriptUpdate((update) => {  /* ... */});
api.runtime.logging

ログ記録です。

typescript
const verbose = api.runtime.logging.shouldLogVerbose();const childLogger = api.runtime.logging.getChildLogger({ plugin: "my-plugin" }, { level: "debug" });
api.runtime.modelAuth

モデルとプロバイダーの認証解決です。

typescript
const auth = await api.runtime.modelAuth.getApiKeyForModel({ model, cfg });const providerAuth = await api.runtime.modelAuth.resolveApiKeyForProvider({  provider: "openai",  cfg,});
api.runtime.state

状態ディレクトリの解決と、SQLiteバックのキー付きストレージ。

typescript
const stateDir = api.runtime.state.resolveStateDir(process.env);const store = api.runtime.state.openKeyedStore<MyRecord>({  namespace: "my-feature",  maxEntries: 200,  defaultTtlMs: 15 * 60_000,}); await store.register("key-1", { value: "hello" });const claimed = await store.registerIfAbsent("dedupe-key", { value: "first" });const value = await store.lookup("key-1");await store.consume("key-1");await store.clear();

キー付きストアは再起動後も保持され、ランタイムに紐づく Plugin id によって分離されます。アトミックな重複排除の取得には registerIfAbsent(...) を使用します。キーが存在しない、または期限切れで登録された場合は true を返し、ライブ値がすでに存在する場合は、その値、作成時刻、TTL を上書きせずに false を返します。制限: 名前空間ごとの maxEntries、Plugin ごとのライブ行 6,000 件、64KB 未満の JSON 値、任意の TTL 期限切れ。書き込みによって Plugin の行上限を超える場合、ランタイムは書き込み対象の名前空間から最も古いライブ行を退避することがあります。兄弟名前空間はその書き込みでは退避されず、名前空間が十分な行を解放できない場合、書き込みは引き続き失敗します。

api.runtime.tools

メモリツールファクトリと CLI。

typescript
const getTool = api.runtime.tools.createMemoryGetTool(/* ... */);const searchTool = api.runtime.tools.createMemorySearchTool(/* ... */);api.runtime.tools.registerMemoryCli(/* ... */);
api.runtime.channel

チャンネル固有のランタイムヘルパー(チャンネルPluginがロードされている場合に利用可能)。

api.runtime.channel.media は、チャンネルメディアのダウンロードと保存に推奨されるサーフェスです。

typescript
const saved = await api.runtime.channel.media.saveRemoteMedia({  url,  subdir: "inbound",  maxBytes,  filePathHint: fileName,});

リモート URL を OpenClaw メディアにする必要がある場合は saveRemoteMedia(...) を使用します。Pluginが所有する認証、リダイレクト、許可リスト処理で、Pluginがすでに Response を取得済みの場合は saveResponseMedia(...) を使用します。Pluginが検査、変換、復号、または再アップロードのために生バイトを必要とする場合にのみ、readRemoteMediaBuffer(...) を使用します。fetchRemoteMedia(...) は、readRemoteMediaBuffer(...) の非推奨の互換エイリアスとして残っています。

api.runtime.channel.mentions は、ランタイム注入を使用するバンドル済みチャンネルPlugin向けの共有受信メンションポリシーサーフェスです。

typescript
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,  },});

利用可能なメンションヘルパー:

  • buildMentionRegexes
  • matchesMentionPatterns
  • matchesMentionWithExplicit
  • implicitMentionKindWhen
  • resolveInboundMentionDecision

api.runtime.channel.mentions は、古い resolveMentionGating* 互換ヘルパーを意図的に公開していません。正規化された { facts, policy } パスを推奨します。

ランタイム参照の保存

register コールバックの外で使用できるように、ランタイム参照の保存には createPluginRuntimeStore を使用します。

  • ストアを作成

    typescript
    import { createPluginRuntimeStore } from "openclaw/plugin-sdk/runtime-store";import type { PluginRuntime } from "openclaw/plugin-sdk/runtime-store"; const store = createPluginRuntimeStore<PluginRuntime>({  pluginId: "my-plugin",  errorMessage: "my-plugin runtime not initialized",});
  • エントリポイントに接続

    typescript
    export default defineChannelPluginEntry({  id: "my-plugin",  name: "My Plugin",  description: "Example",  plugin: myPlugin,  setRuntime: store.setRuntime,});
  • 他のファイルからアクセス

    typescript
    export function getRuntime() {  return store.getRuntime(); // throws if not initialized} export function tryGetRuntime() {  return store.tryGetRuntime(); // returns null if not initialized}
  • その他のトップレベル api フィールド

    api.runtime に加えて、API オブジェクトは次も提供します。

    api.idstring

    Plugin id。

    api.namestring

    Plugin表示名。

    api.configOpenClawConfig

    現在の設定スナップショット(利用可能な場合はアクティブなインメモリランタイムスナップショット)。

    OPENCLAW_DOCS_MARKER:paramOpen:IHBhdGg9ImFwaS5wbHVnaW5Db25maWciIHR5cGU9IlJlY29yZDxzdHJpbmcsIHVua25vd24 "> plugins.entries.<id>.config からのPlugin固有の設定。

    api.loggerPluginLogger

    スコープ付きロガー(debuginfowarnerror)。

    api.registrationModePluginRegistrationMode

    現在のロードモード。"setup-runtime" は、フルエントリ前の軽量な起動/セットアップ期間です。

    api.resolvePath(input)(string) =,������� O��

    関連

    Was this useful?
    On this page

    On this page