refactor: rename to openclaw

This commit is contained in:
Peter Steinberger
2026-01-30 03:15:10 +01:00
parent 4583f88626
commit 9a7160786a
2357 changed files with 16688 additions and 16788 deletions
+3 -3
View File
@@ -1,5 +1,5 @@
import type { MoltbotPluginApi } from "clawdbot/plugin-sdk";
import { emptyPluginConfigSchema } from "clawdbot/plugin-sdk";
import type { OpenClawPluginApi } from "openclaw/plugin-sdk";
import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
import { signalPlugin } from "./src/channel.js";
import { setSignalRuntime } from "./src/runtime.js";
@@ -9,7 +9,7 @@ const plugin = {
name: "Signal",
description: "Signal channel plugin",
configSchema: emptyPluginConfigSchema(),
register(api: MoltbotPluginApi) {
register(api: OpenClawPluginApi) {
setSignalRuntime(api.runtime);
api.registerChannel({ plugin: signalPlugin });
},
+4 -4
View File
@@ -1,9 +1,9 @@
{
"name": "@moltbot/signal",
"version": "2026.1.29",
"name": "@openclaw/signal",
"version": "2026.1.27-beta.1",
"type": "module",
"description": "Moltbot Signal channel plugin",
"moltbot": {
"description": "OpenClaw Signal channel plugin",
"openclaw": {
"extensions": [
"./index.ts"
]
+1 -1
View File
@@ -21,7 +21,7 @@ import {
type ChannelMessageActionAdapter,
type ChannelPlugin,
type ResolvedSignalAccount,
} from "clawdbot/plugin-sdk";
} from "openclaw/plugin-sdk";
import { getSignalRuntime } from "./runtime.js";
+1 -1
View File
@@ -1,4 +1,4 @@
import type { PluginRuntime } from "clawdbot/plugin-sdk";
import type { PluginRuntime } from "openclaw/plugin-sdk";
let runtime: PluginRuntime | null = null;