mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-26 04:15:48 -06:00
234df15a6d
* build(deps): refresh dependencies after cooldown Apply dependency, toolchain, action, image, and exact tool updates released by the inclusive 2026-08-16 seven-day cutoff. Adapt owner boundaries for the resulting CUA, logging, Teams, Markdown, native, and test-harness contract changes while retaining versions blocked by upstream compatibility constraints. * fix(ui): align markdown renderer env typing * fix(deps): align postcss and mistral peer contracts * fix(deps): repair refreshed dependency contracts * fix(deps): retain tslog startup budget * fix(ci): verify Android tools with SHA-256 * fix(ci): fence Android SDK cache version
107 lines
2.5 KiB
JSON
107 lines
2.5 KiB
JSON
{
|
|
"name": "@openclaw/mattermost",
|
|
"version": "2026.8.1",
|
|
"description": "OpenClaw Mattermost channel plugin",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/openclaw/openclaw"
|
|
},
|
|
"type": "module",
|
|
"dependencies": {
|
|
"ws": "8.21.3",
|
|
"zod": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openclaw/plugin-sdk": "workspace:*",
|
|
"openclaw": "workspace:*"
|
|
},
|
|
"peerDependencies": {
|
|
"openclaw": ">=2026.8.1"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"openclaw": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"openclaw": {
|
|
"extensions": [
|
|
"./index.ts"
|
|
],
|
|
"setupEntry": "./setup-entry.ts",
|
|
"channel": {
|
|
"id": "mattermost",
|
|
"configuredState": {
|
|
"env": {
|
|
"allOf": [
|
|
"MATTERMOST_BOT_TOKEN",
|
|
"MATTERMOST_URL"
|
|
]
|
|
}
|
|
},
|
|
"label": "Mattermost",
|
|
"selectionLabel": "Mattermost (plugin)",
|
|
"docsPath": "/channels/mattermost",
|
|
"docsLabel": "mattermost",
|
|
"blurb": "self-hosted Slack-style chat; install the plugin to enable.",
|
|
"order": 65,
|
|
"setup": {
|
|
"fields": [
|
|
{
|
|
"key": "token",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--token <token>",
|
|
"description": "Mattermost bot token"
|
|
}
|
|
},
|
|
{
|
|
"key": "botToken",
|
|
"kind": "string",
|
|
"sensitive": true,
|
|
"cli": {
|
|
"flags": "--bot-token <token>",
|
|
"description": "Mattermost bot token"
|
|
}
|
|
},
|
|
{
|
|
"key": "httpUrl",
|
|
"kind": "string",
|
|
"cli": {
|
|
"flags": "--http-url <url>",
|
|
"description": "Mattermost server URL"
|
|
}
|
|
},
|
|
{
|
|
"key": "useEnv",
|
|
"kind": "boolean",
|
|
"cli": {
|
|
"flags": "--use-env",
|
|
"description": "Use Mattermost environment credentials"
|
|
},
|
|
"envVars": ["MATTERMOST_BOT_TOKEN", "MATTERMOST_URL"]
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"install": {
|
|
"clawhubSpec": "clawhub:@openclaw/mattermost",
|
|
"npmSpec": "@openclaw/mattermost",
|
|
"defaultChoice": "npm",
|
|
"minHostVersion": ">=2026.6.9",
|
|
"allowInvalidConfigRecovery": true
|
|
},
|
|
"compat": {
|
|
"pluginApi": ">=2026.8.1"
|
|
},
|
|
"build": {
|
|
"openclawVersion": "2026.8.1",
|
|
"bundledDist": false
|
|
},
|
|
"release": {
|
|
"publishToClawHub": true,
|
|
"publishToNpm": true
|
|
}
|
|
}
|
|
}
|