Plugin SDK reference

Plugin रनटाइम सहायक

प्रत्येक plugin में registration के दौरान inject किए गए api.runtime object का संदर्भ। host internals को सीधे import करने के बजाय इन helpers का उपयोग करें।

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

Config लोडिंग और writes

उस config को प्राथमिकता दें जो पहले से active call path में पास किया गया था, उदाहरण के लिए registration के दौरान api.config या channel/provider callbacks पर cfg argument। यह hot paths पर config को फिर से parse करने के बजाय काम के दौरान एक process snapshot को प्रवाहित रखता है।

api.runtime.config.current() का उपयोग केवल तब करें जब किसी long-lived handler को current process snapshot की जरूरत हो और उस function को कोई config पास न किया गया हो। returned value readonly है; edit करने से पहले clone करें या mutation helper का उपयोग करें।

Tool factories को ctx.runtimeConfig और ctx.getRuntimeConfig() मिलते हैं। जब tool definition बनने के बाद config बदल सकता हो, तो long-lived tool के execute callback के अंदर getter का उपयोग करें।

बदलावों को api.runtime.config.mutateConfigFile(...) या api.runtime.config.replaceConfigFile(...) के साथ persist करें। हर write को explicit afterWrite policy चुननी होगी:

  • afterWrite: { mode: "auto" } gateway reload planner को निर्णय लेने देता है।
  • afterWrite: { mode: "restart", reason: "..." } तब clean restart बाध्य करता है जब writer जानता है कि hot reload unsafe है।
  • afterWrite: { mode: "none", reason: "..." } automatic reload/restart को केवल तब suppress करता है जब caller follow-up का owner हो।

mutation helpers afterWrite और typed followUp summary लौटाते हैं ताकि callers log कर सकें या test कर सकें कि उन्होंने restart request किया था या नहीं। वह restart वास्तव में कब होता है, इसका owner अब भी gateway है।

api.runtime.config.loadConfig() और api.runtime.config.writeConfigFile(...), runtime-config-load-write के अंतर्गत deprecated compatibility helpers हैं। वे runtime पर एक बार warn करते हैं, और migration window के दौरान पुराने external plugins के लिए उपलब्ध रहते हैं। Bundled plugins को उनका उपयोग नहीं करना चाहिए; यदि plugin code उन्हें call करता है या plugin SDK subpaths से उन helpers को import करता है, तो config boundary guards fail हो जाते हैं।

Direct SDK imports के लिए, broad openclaw/plugin-sdk/config-runtime compatibility barrel के बजाय focused config subpaths का उपयोग करें: types के लिए config-contracts, already-loaded config assertions और plugin entry lookup के लिए plugin-config-runtime, current process snapshots के लिए runtime-config-snapshot, और writes के लिए config-mutation। Bundled plugin tests को broad compatibility barrel को mock करने के बजाय इन focused subpaths को सीधे mock करना चाहिए।

Internal OpenClaw runtime code की दिशा भी यही है: CLI, gateway, या process boundary पर config को एक बार load करें, फिर उस value को आगे पास करें। सफल mutation writes process runtime snapshot को refresh करते हैं और उसके internal revision को आगे बढ़ाते हैं; long-lived caches को config को locally serialize करने के बजाय runtime-owned cache key पर आधारित होना चाहिए। Long-lived runtime modules में ambient loadConfig() calls के लिए zero-tolerance scanner है; पास किए गए cfg, request context.getRuntimeConfig(), या explicit process boundary पर getRuntimeConfig() का उपयोग करें।

Provider और channel execution paths को active runtime config snapshot का उपयोग करना चाहिए, config readback या editing के लिए returned file snapshot का नहीं। File snapshots UI और writes के लिए SecretRef markers जैसी source values सुरक्षित रखते हैं; provider callbacks को resolved runtime view चाहिए। जब कोई helper active source snapshot या active runtime snapshot में से किसी के साथ call किया जा सकता हो, तो credentials पढ़ने से पहले selectApplicableRuntimeConfig() से route करें।

Reusable runtime utilities

bot-authored inbound messages के लिए inbound botLoopProtection facts का उपयोग करें। Core session record और dispatch से पहले shared in-memory sliding-window guard लागू करता है, policy को किसी एक channel से बांधे बिना। Guard (scopeId, conversationId, participant pair) keys track करता है, pair की दोनों directions को साथ गिनता है, window budget exceed होने पर cooldown लागू करता है, और inactive entries को opportunistically prune करता है।

जो Channel plugins इस behavior को operators के सामने expose करते हैं, उन्हें baseline budgets के लिए shared channels.defaults.botLoopProtection shape को प्राथमिकता देनी चाहिए, फिर उसके ऊपर channel/provider-specific overrides layer करने चाहिए। Shared config seconds का उपयोग करता है क्योंकि यह user-facing है:

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

Resolved turn के साथ normalized bot-pair facts पास करें। Core defaults, unit conversion, और enabled semantics resolve करता है:

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",  },};

openclaw/plugin-sdk/pair-loop-guard-runtime का सीधे उपयोग केवल custom two-party event loops के लिए करें जो shared inbound reply runner से नहीं गुजरते।

Runtime namespaces

api.runtime.agent

Agent identity, directories, और session management।

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 code से सामान्य OpenClaw agent turn शुरू करने के लिए neutral helper है। यह channel-triggered replies जैसी ही provider/model resolution और agent-harness selection का उपयोग करता है।

runEmbeddedPiAgent(...) existing plugins के लिए deprecated compatibility alias के रूप में बना रहता है। New code को runEmbeddedAgent(...) का उपयोग करना चाहिए।

resolveThinkingPolicy(...) provider/model के supported thinking levels और optional default लौटाता है। Provider plugins अपने thinking hooks के माध्यम से model-specific profile के owner होते हैं, इसलिए tool plugins को provider lists import या duplicate करने के बजाय इस runtime helper को call करना चाहिए।

normalizeThinkingLevel(...) user text जैसे on, x-high, या extra high को resolved policy के विरुद्ध check करने से पहले canonical stored level में convert करता है।

Session store helpers 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.  },);

session workflows के लिए getSessionEntry(...), listSessionEntries(...), patchSessionEntry(...), या upsertSessionEntry(...) को प्राथमिकता दें। ये helpers sessions को agent/session identity से address करते हैं ताकि plugins legacy sessions.json storage shape पर निर्भर न हों। metadata-only patches के लिए preserveActivity: true का उपयोग करें जिन्हें session activity refresh नहीं करनी चाहिए, और replaceEntry: true केवल तब जब callback complete entry लौटाता हो और deleted fields को deleted ही रहना हो।

जब कोई plugin persisted session पर work शुरू करता है, तो runWithWorkAdmission(...) का उपयोग करें। Callback archived या concurrently replaced sessions को reject करता है, archive/reset/delete mutations को completion के माध्यम से coordinated रखता है, और एक AbortSignal प्राप्त करता है जिसे agent run तक forward करना जरूरी है।

transcript reads और writes के लिए, openclaw/plugin-sdk/session-transcript-runtime import करें और { agentId, sessionKey, sessionId } के साथ resolveSessionTranscriptIdentity(...), resolveSessionTranscriptTarget(...), readSessionTranscriptEvents(...), appendSessionTranscriptMessageByIdentity(...), publishSessionTranscriptUpdateByIdentity(...), या withSessionTranscriptWriteLock(...) का उपयोग करें। ये APIs plugins को transcript identify करने, उसके events पढ़ने, messages append करने, updates publish करने, और related operations को same transcript write lock के अंतर्गत चलाने देती हैं। sessionFile पास करना, resolveSessionTranscriptLegacyFileTarget(...) का उपयोग करना, या openclaw/plugin-sdk/agent-harness-runtime से low-level appendSessionTranscriptMessage(...) / emitSessionTranscriptUpdate(...) import करना deprecated है; वे paths केवल legacy code के लिए मौजूद हैं जिसे पहले से active transcript artifact मिलता है।

loadSessionStore(...), saveSessionStore(...), updateSessionStore(...), resolveSessionFilePath(...), और resolveAndPersistSessionFile(...) उन plugins के लिए deprecated compatibility helpers हैं जो अब भी जानबूझकर legacy whole-store या transcript-file shape पर निर्भर हैं। New plugin code को उन helpers का उपयोग नहीं करना चाहिए, और existing callers को entry helpers और transcript identity helpers पर migrate करना चाहिए।

api.runtime.agent.defaults

Default model और provider constants:

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 internals import किए बिना या OpenClaw model/auth/base URL preparation duplicate किए बिना host-owned text completion चलाएं।

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

Helper OpenClaw के built-in runtime जैसी same simple-completion preparation path और host-owned runtime config snapshot का उपयोग करता है। Context engines को session-bound llm.complete capability मिलती है, इसलिए model calls active session के agent का उपयोग करते हैं और चुपचाप default agent पर fall back नहीं करते। Result में provider/model/agent attribution और उपलब्ध होने पर normalized token, cache, और estimated cost usage शामिल होते हैं।

api.runtime.subagent

पृष्ठभूमि 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

कनेक्टेड nodes सूचीबद्ध करें और Gateway-लोडेड plugin कोड या plugin CLI कमांड से node-host कमांड invoke करें। इसका उपयोग तब करें जब कोई 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 के अंदर यह रनटाइम in-process है। plugin CLI कमांड में यह कॉन्फ़िगर किए गए Gateway को RPC पर कॉल करता है, इसलिए openclaw googlemeet recover-tab जैसे कमांड terminal से paired nodes का निरीक्षण कर सकते हैं। Node कमांड अब भी सामान्य Gateway node pairing, command allowlists, plugin node-invoke policies, और node-local command handling से होकर गुजरते हैं।

खतरनाक node-host कमांड उजागर करने वाले plugins को api.registerNodeInvokePolicy(...) के साथ node-invoke policy पंजीकृत करनी चाहिए। Policy, Gateway में command allowlist जाँचों के बाद और कमांड को node पर forward करने से पहले चलती है, इसलिए सीधे node.invoke कॉल और उच्च-स्तरीय plugin tools समान enforcement path साझा करते हैं।

api.runtime.tasks.managedFlows

कार्य प्रवाह runtime को किसी मौजूदा OpenClaw session key या विश्वसनीय tool context से bind करें, फिर हर call पर owner पास किए बिना कार्य प्रवाह बनाएं और प्रबंधित करें।

कार्य प्रवाह टिकाऊ multi-step workflow state ट्रैक करता है। यह scheduler नहीं है: भविष्य के wakeups के लिए Cron या api.session.workflow.scheduleSessionTurn(...) का उपयोग करें, फिर scheduled turn से managedFlows का उपयोग करें जब उस काम को flow state, child tasks, waits, या cancellation की आवश्यकता हो।

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

जब आपके पास अपनी binding layer से पहले से विश्वसनीय OpenClaw session key हो, तब bindSession({ sessionKey, requesterOrigin }) का उपयोग करें। कच्चे user input से bind न करें।

api.runtime.tts

Text-to-speech synthesis।

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

core messages.tts configuration और provider selection का उपयोग करता है। PCM audio buffer + sample rate लौटाता है।

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

जब कोई output produced नहीं होता, तो { text: undefined } लौटाता है (जैसे skipped input)।

api.runtime.imageGeneration

छवि generation।

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

वेब search।

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

Low-level media utilities।

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

वर्तमान runtime config snapshot और transactional config writes। सक्रिय call path में पहले से पास किए गए config को प्राथमिकता दें; current() का उपयोग केवल तब करें जब handler को सीधे process snapshot की आवश्यकता हो।

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

mutateConfigFile(...) और replaceConfigFile(...) एक followUp value लौटाते हैं, उदाहरण के लिए { mode: "restart", requiresRestart: true, reason }, जो gateway से restart control छिने बिना writer intent record करता है।

api.runtime.system

System-level utilities।

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(...) captured stdout और stderr, वैकल्पिक truncation counts, code, signal, killed, termination, और noOutputTimedOut लौटाता है। Timeout और no-output-timeout results code: 124 report करते हैं जब child process non-zero exit code उपलब्ध नहीं कराता। Non-timeout signal exits फिर भी code: null लौटा सकते हैं, इसलिए timeout reasons अलग करने के लिए termination और noOutputTimedOut का उपयोग करें।

api.runtime.events

Event subscriptions।

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

Logging।

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

Model और provider auth resolution।

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

State डायरेक्टरी रिज़ॉल्यूशन और SQLite-समर्थित keyed storage.

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();

Keyed stores restart के बाद भी बने रहते हैं और runtime-बाउंड plugin id के आधार पर अलग-थलग रहते हैं. atomic dedupe claims के लिए registerIfAbsent(...) का उपयोग करें: यह तब true लौटाता है जब key मौजूद नहीं थी या expire हो चुकी थी और register की गई, या तब false लौटाता है जब कोई live value पहले से मौजूद हो और उसकी value, creation time, या TTL overwrite न की जाए. सीमाएं: प्रति namespace maxEntries, प्रति plugin 6,000 live rows, 64KB से छोटे JSON values, और वैकल्पिक TTL expiry. जब कोई write plugin row cap से आगे निकल जाएगा, तो runtime लिखे जा रहे namespace से सबसे पुराने live rows evict कर सकता है; उस write के लिए sibling namespaces evict नहीं किए जाते, और अगर namespace पर्याप्त rows free नहीं कर सकता तो write फिर भी fail होता है.

api.runtime.tools

Memory tool factories और CLI.

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

Channel-specific runtime helpers (जब कोई channel plugin load किया गया हो तब उपलब्ध).

api.runtime.channel.media channel media downloads और storage के लिए preferred surface है:

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

जब remote URL को OpenClaw media बनना हो, तब saveRemoteMedia(...) का उपयोग करें. जब plugin ने plugin-owned auth, redirect, या allowlist handling के साथ पहले ही कोई Response fetch कर लिया हो, तब saveResponseMedia(...) का उपयोग करें. readRemoteMediaBuffer(...) का उपयोग केवल तब करें जब plugin को inspection, transforms, decryption, या reupload के लिए raw bytes चाहिए हों. fetchRemoteMedia(...), readRemoteMediaBuffer(...) के लिए deprecated compatibility alias बना रहता है.

api.runtime.channel.mentions runtime injection का उपयोग करने वाले bundled channel plugins के लिए shared inbound mention-policy surface है:

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

उपलब्ध mention helpers:

  • buildMentionRegexes
  • matchesMentionPatterns
  • matchesMentionWithExplicit
  • implicitMentionKindWhen
  • resolveInboundMentionDecision

api.runtime.channel.mentions जानबूझकर पुराने resolveMentionGating* compatibility helpers expose नहीं करता. normalized { facts, policy } path को प्राथमिकता दें.

Runtime references store करना

register callback के बाहर उपयोग के लिए runtime reference store करने हेतु createPluginRuntimeStore का उपयोग करें:

  • Create the store

    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",});
  • Wire into the entry point

    typescript
    export default defineChannelPluginEntry({  id: "my-plugin",  name: "My Plugin",  description: "Example",  plugin: myPlugin,  setRuntime: store.setRuntime,});
  • Access from other files

    typescript
    export function getRuntime() {  return store.getRuntime(); // throws if not initialized} export function tryGetRuntime() {  return store.tryGetRuntime(); // returns null if not initialized}
  • अन्य top-level api fields

    api.runtime के अलावा, API object यह भी प्रदान करता है:

    api.idstring

    Plugin id.

    api.namestring

    Plugin display name.

    api.configOpenClawConfig

    मौजूदा config snapshot (उपलब्ध होने पर active in-memory runtime snapshot).

    OPENCLAW_DOCS_MARKER:paramOpen:IHBhdGg9ImFwaS5wbHVnaW5Db25maWciIHR5cGU9IlJlY29yZDxzdHJpbmcsIHVua25vd24 "> plugins.entries.<id>.config से Plugin-specific config.

    api.loggerPluginLogger

    Scoped logger (debug, info, warn, error).

    api.registrationModePluginRegistrationMode

    मौजूदा load mode; "setup-runtime" lightweight pre-full-entry startup/setup window है.

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

    संबंधित

    Was this useful?
    On this page

    On this page