mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-02 09:41:37 +00:00
* build(deps): update QA broker dependency * build(deps): refresh repository dependencies * build(deps): reconcile rebased shrinkwraps * test(plugins): remove stale loader test state * test(deps): stabilize updated dependency coverage * fix(swift): use caller-isolated TaskLocal overload * build(deps): regenerate rebased shrinkwraps * test(msteams): preserve DNS validation in fetch helper * fix(deps): avoid vulnerable optional image stack * test(deps): validate generated LRU override * refactor(ui): extract chat resizable divider * test(ui): update divider ownership path * fix(matrix): retain restart-compatible SDK * style(cron): format update test
112 lines
2.8 KiB
JSON
112 lines
2.8 KiB
JSON
{
|
|
"name": "@openclaw/signal",
|
|
"version": "2026.7.2",
|
|
"description": "OpenClaw Signal channel plugin",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"ws": "8.21.1",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*"
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"setupFeatures": {
|
|
"configPromotion": true
|
|
},
|
|
"channel": {
|
|
"id": "signal",
|
|
"approvalFlags": [
|
|
"native"
|
|
],
|
|
"label": "Signal",
|
|
"selectionLabel": "Signal (signal-cli)",
|
|
"detailLabel": "Signal REST",
|
|
"docsPath": "/channels/signal",
|
|
"docsLabel": "signal",
|
|
"blurb": "signal-cli linked device; more setup (David Reagans: \"Hop on Discord.\").",
|
|
"systemImage": "antenna.radiowaves.left.and.right",
|
|
"markdownCapable": true,
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "signalNumber",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--signal-number <e164>",
|
|
"description": "Signal account number (E.164)"
|
|
}
|
|
},
|
|
{
|
|
"key": "signalTransport",
|
|
"kind": "choice",
|
|
"choices": ["external-native", "container"],
|
|
"cli": {
|
|
"flags": "--signal-transport <kind>",
|
|
"description": "Signal HTTP transport (external-native or container)"
|
|
}
|
|
},
|
|
{
|
|
"key": "cliPath",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--cli-path <path>",
|
|
"description": "signal-cli executable path"
|
|
}
|
|
},
|
|
{
|
|
"key": "httpUrl",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--http-url <url>",
|
|
"description": "Signal HTTP service URL"
|
|
}
|
|
},
|
|
{
|
|
"key": "httpHost",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--http-host <host>",
|
|
"description": "Signal HTTP daemon host"
|
|
}
|
|
},
|
|
{
|
|
"key": "httpPort",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--http-port <port>",
|
|
"description": "Signal HTTP daemon port"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"install": {
|
|
"clawhubSpec": "clawhub:@openclaw/signal",
|
|
"npmSpec": "@openclaw/signal",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.6.9",
|
|
"allowInvalidConfigRecovery": true
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.7.2"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.7.2",
|
|
"bundledDist": false
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
}
|
|
}
|