mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 10:16:44 +00:00
* refactor(channels): move channel-flavored setup flags into plugin manifests * refactor(channels): normalize manifest cliAddOptions formatting, drop changelog entry * fix(channels): dedupe channels add options by commander switch identity * fix(channels): let the selected channel's cliAddOptions win switch dedupe
93 lines
2.1 KiB
JSON
93 lines
2.1 KiB
JSON
{
|
|
"name": "@openclaw/slack",
|
|
"version": "2026.7.2",
|
|
"description": "OpenClaw Slack channel plugin for channels, DMs, commands, and app events.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@slack/bolt": "4.7.3",
|
|
"@slack/types": "2.21.1",
|
|
"@slack/web-api": "7.18.0",
|
|
"p-map": "7.0.5",
|
|
"typebox": "1.3.3",
|
|
"ws": "8.21.0",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*",
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.7.2"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "slack",
|
|
"configuredState": {
|
|
"env": {
|
|
"anyOf": [
|
|
"SLACK_BOT_TOKEN",
|
|
"SLACK_APP_TOKEN",
|
|
"SLACK_USER_TOKEN"
|
|
]
|
|
}
|
|
},
|
|
"approvalFlags": ["native"],
|
|
"label": "Slack",
|
|
"selectionLabel": "Slack (Socket Mode)",
|
|
"detailLabel": "Slack Bot",
|
|
"docsPath": "/channels/slack",
|
|
"docsLabel": "slack",
|
|
"blurb": "supported (Socket Mode).",
|
|
"systemImage": "number",
|
|
"markdownCapable": true,
|
|
"commands": {
|
|
"nativeCommandsAutoEnabled": false,
|
|
"nativeSkillsAutoEnabled": false
|
|
},
|
|
"cliAddOptions": [
|
|
{
|
|
"flags": "--bot-token <token>",
|
|
"description": "Bot token"
|
|
},
|
|
{
|
|
"flags": "--app-token <token>",
|
|
"description": "App token"
|
|
}
|
|
]
|
|
},
|
|
"install": {
|
|
"npmSpec": "@openclaw/slack",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.5.28",
|
|
"allowInvalidConfigRecovery": true
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.7.2"
|
|
},
|
|
"startup": {
|
|
"deferConfiguredChannelFullLoadUntilAfterListen": true
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.7.2",
|
|
"bundledDist": false
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|