🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

lightclawbot

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lightclawbot - npm Package Compare versions

Comparing version
1.2.0-beta.3
to
1.2.3
+77
-3
openclaw.plugin.json
{
"id": "lightclawbot",
"channels": ["lightclawbot"],
"skills": ["./skills"],
"name": "LightClawBot",
"description": "Connect OpenClaw to your LightClawBot via WebSocket long-connection",
"kind": "channel",
"channels": [
"lightclawbot"
],
"skills": [
"./skills"
],
"configSchema": {

@@ -9,3 +16,70 @@ "type": "object",

"properties": {}
},
"channelConfigs": {
"lightclawbot": {
"label": "LightClawBot",
"description": "Connect OpenClaw to your LightClawBot via WebSocket long-connection",
"schema": {
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"additionalProperties": true,
"properties": {
"enabled": {
"type": "boolean",
"description": "Whether this channel is enabled."
},
"name": {
"type": "string",
"description": "Human-readable account/channel name."
},
"dmPolicy": {
"type": "string",
"enum": ["open", "allowlist", "disabled"],
"description": "Policy that controls who can DM the bot."
},
"allowFrom": {
"type": "array",
"items": { "type": "string" },
"description": "Allowlist of user IDs ('*' means everyone)."
},
"systemPrompt": {
"type": "string",
"description": "Custom system prompt applied to this account."
},
"defaultAccount": {
"type": "string",
"description": "Default account id to use when none is specified."
},
"accounts": {
"type": "object",
"description": "Per-account configuration keyed by account id (typically the uin).",
"additionalProperties": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"name": { "type": "string" },
"apiKey": { "type": "string" },
"apiBaseUrl": { "type": "string" },
"dmPolicy": {
"type": "string",
"enum": ["open", "allowlist", "disabled"]
},
"allowFrom": {
"type": "array",
"items": { "type": "string" }
},
"systemPrompt": { "type": "string" }
}
}
}
}
}
}
},
"contracts": {
"tools": [
"lightclaw_upload_file"
]
}
}
}
+1
-1
{
"name": "lightclawbot",
"version": "1.2.0-beta.3",
"version": "1.2.3",
"description": "LightClawBot channel plugin with message support, cron jobs, and proactive messaging",

@@ -5,0 +5,0 @@ "type": "module",