-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
39 lines (39 loc) · 1.21 KB
/
plugin.json
File metadata and controls
39 lines (39 loc) · 1.21 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
{
"name": "screen-record",
"version": "1.0.0",
"description": "Screen recording via ffmpeg x11grab — start, stop, and list recordings on the agent VM",
"tools": [
{
"name": "start_recording",
"description": "Start an ffmpeg x11grab screen recording on DISPLAY :1. Returns the output file path.",
"inputSchema": {
"type": "object",
"properties": {
"filename": {
"type": "string",
"description": "Optional base name for the recording file (without extension). Defaults to a timestamp-based name."
}
}
},
"handler": "bash handlers/start_recording.sh"
},
{
"name": "stop_recording",
"description": "Stop the currently running screen recording and return the final file path.",
"inputSchema": {
"type": "object",
"properties": {}
},
"handler": "bash handlers/stop_recording.sh"
},
{
"name": "list_recordings",
"description": "List all screen recordings in the recordings directory with file sizes and timestamps.",
"inputSchema": {
"type": "object",
"properties": {}
},
"handler": "bash handlers/list_recordings.sh"
}
]
}