Initial commit: OpenClaw Mattermost Extension

This commit is contained in:
2026-04-10 21:57:29 -07:00
commit 2072259fb6
126 changed files with 26403 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
{
"id": "mattermost",
"type": "channel",
"channels": ["mattermost"],
"configSchema": {
"type": "object",
"additionalProperties": true,
"properties": {
"baseUrl": {
"type": "string",
"format": "uri",
"description": "Mattermost server URL"
},
"url": {
"type": "string",
"format": "uri",
"description": "Mattermost server URL (alternative to baseUrl)"
},
"botToken": {
"type": "string",
"description": "Bot account token"
},
"token": {
"type": "string",
"description": "API access token (alternative to botToken)"
},
"pat": {
"type": "string",
"description": "Personal Access Token for write operations"
},
"team": {
"type": "string",
"description": "Default team name"
},
"enabled": {
"type": "boolean",
"description": "Enable/disable this channel"
},
"defaultAccount": {
"type": "string",
"description": "Default account ID"
},
"accounts": {
"type": "object",
"description": "Account configurations"
}
}
}
}