admin / Synapse-Cortex
publicSelf Hosted ITSM Tool with RBAC/Tenanting and MFA
Synapse-Cortex / Synapse-Cortexv2 / playbooks / run-an-ai-suggested-command-review-required.json
764 B · main
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": "Run an AI-Suggested Command (review required)", "enabled": true, "allowed_target_os": [], "required_approval_level": "human_in_the_loop", "forbidden_commands": [], "graph_json": { "nodes": [ { "id": "start", "type": "start", "data": {}, "position": { "x": 250, "y": 0 } }, { "id": "cmd_run", "type": "command", "data": { "label": "Run the AI-suggested command", "command": "{{command}}" }, "position": { "x": 250, "y": 130 } } ], "edges": [ { "id": "e_start_cmd_run", "source": "start", "target": "cmd_run" } ] } } |