-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
29 lines (29 loc) · 890 Bytes
/
Copy pathplugin.json
File metadata and controls
29 lines (29 loc) · 890 Bytes
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
{
"name": "telegram-bridge",
"version": "0.1.0",
"description": "Bridge Telegram chats to Kimi sessions (long-running daemon controlled via this tool).",
"config_file": "config.json",
"tools": [
{
"name": "bridge",
"description": "Control the kimi telegram bridge daemon (start/stop/status/logs/setup).",
"command": [".venv/bin/python", "-m", "src.control"],
"parameters": {
"type": "object",
"properties": {
"action": {
"type": "string",
"enum": ["start", "stop", "status", "logs", "setup"],
"description": "What to do with the daemon."
},
"lines": {
"type": "integer",
"default": 50,
"description": "Number of log lines to tail (only used for action=logs)."
}
},
"required": ["action"]
}
}
]
}