-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
51 lines (51 loc) · 1.93 KB
/
plugin.json
File metadata and controls
51 lines (51 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"id": "co.appsome.claudecode",
"name": "Claude Code",
"description": "Integrate Claude Code AI assistant directly in Mattermost",
"homepage_url": "https://github.com/appsome/claude-code-mattermost-plugin",
"support_url": "https://github.com/appsome/claude-code-mattermost-plugin/issues",
"release_notes_url": "https://github.com/appsome/claude-code-mattermost-plugin/releases",
"icon_path": "assets/icon.png",
"version": "0.1.0",
"min_server_version": "9.0.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
},
"executable": ""
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Configure Claude Code plugin to connect to your bridge server and Claude Code CLI.",
"footer": "For more information, visit [the documentation](https://github.com/appsome/claude-code-mattermost-plugin).",
"settings": [
{
"key": "BridgeServerURL",
"display_name": "Bridge Server URL",
"type": "text",
"help_text": "URL of the Claude Code bridge server. Leave empty to use embedded mode (spawns CLI locally). For Kubernetes deployments, set this to your bridge server URL.",
"placeholder": "http://bridge-server:3002",
"default": ""
},
{
"key": "ClaudeCodePath",
"display_name": "Claude Code CLI Path",
"type": "text",
"help_text": "Path to the Claude Code CLI executable (only used in embedded mode when Bridge Server URL is empty)",
"placeholder": "claude",
"default": "claude"
},
{
"key": "EnableFileOperations",
"display_name": "Enable File Operations",
"type": "bool",
"help_text": "Allow users to browse and edit files via Mattermost dialogs",
"default": true
}
]
}
}