# n8n-style external workflow links. # # These are NOT executed by the SIC backend. Each entry is a deep link into # an n8n (or similar) workflow runner that the user can open in a new tab. # The LLM can recommend them as "external" suggestions; the right panel # renders them with a distinct icon and the action only opens a new tab. # # Fields: # id stable identifier (kebab-case recommended) # label human-readable label # description what the workflow does # url absolute external URL (env vars supported) # required_roles user roles allowed to see this link (optional, [] = any) # tags free-form tags to help retrieval / filtering n8n_workflows: - id: n8n-vpn-restart label: Restart VPN tunnel (n8n) description: Opens the n8n workflow that restarts the VPN tunnel after credential rotation. url: ${N8N_BASE_URL:?set N8N_BASE_URL}/workflow/vpn-restart required_roles: - webhook-runner - sre tags: [vpn, network, automation] - id: n8n-incident-summary label: Generate incident summary (n8n) description: Opens the n8n workflow that drafts an incident summary from the current session. url: ${N8N_BASE_URL:?set N8N_BASE_URL}/workflow/incident-summary required_roles: [] tags: [incident, automation, reporting] - id: n8n-postmortem label: Open postmortem workflow (n8n) description: Opens the postmortem workflow in n8n with the current session context. url: ${N8N_BASE_URL:?set N8N_BASE_URL}/workflow/postmortem required_roles: [] tags: [postmortem, automation]