refactor(nodes): share run parsing helpers

This commit is contained in:
Peter Steinberger
2026-01-08 00:24:11 +00:00
parent e35845dd49
commit 67213e0fc6
4 changed files with 55 additions and 54 deletions

View File

@@ -118,6 +118,20 @@ Notes:
- Images return image blocks + `MEDIA:<path>`.
- Videos return `FILE:<path>` (mp4).
- Location returns a JSON payload (lat/lon/accuracy/timestamp).
- `run` params: `command` argv array; optional `cwd`, `env` (`KEY=VAL`), `commandTimeoutMs`, `invokeTimeoutMs`, `needsScreenRecording`.
Example (`run`):
```json
{
"action": "run",
"node": "office-mac",
"command": ["echo", "Hello"],
"env": ["FOO=bar"],
"commandTimeoutMs": 12000,
"invokeTimeoutMs": 45000,
"needsScreenRecording": false
}
```
### `image`
Analyze an image with the configured image model.
@@ -260,11 +274,11 @@ Canvas render:
Node targeting:
1) `nodes``status`
2) `describe` on the chosen node
3) `notify` / `camera_snap` / `screen_record`
3) `notify` / `run` / `camera_snap` / `screen_record`
## Safety
- Avoid `system.run` (not exposed as a tool).
- Avoid direct `system.run`; use `nodes``run` only with explicit user consent.
- Respect user consent for camera/screen capture.
- Use `status/describe` to ensure permissions before invoking media commands.