From a5cffc3745c6edd3cc642fc253d989bf2e4b1cfa Mon Sep 17 00:00:00 2001 From: Lucas Berger Date: Sun, 8 Feb 2026 09:54:26 -0500 Subject: [PATCH] feat(10.1-09): add /list command to Keyword Router - Added 'list' route with same output as 'status' - Both /list and /status now show paginated container list - Provides user-expected /list command while leveraging existing functionality --- n8n-workflow.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/n8n-workflow.json b/n8n-workflow.json index 675b37a..6499fb9 100644 --- a/n8n-workflow.json +++ b/n8n-workflow.json @@ -340,6 +340,29 @@ }, "renameOutput": true, "outputKey": "logs" + }, + { + "id": "keyword-list", + "conditions": { + "options": { + "caseSensitive": false, + "typeValidation": "loose" + }, + "conditions": [ + { + "id": "contains-list", + "leftValue": "={{ $json.message.text }}", + "rightValue": "list", + "operator": { + "type": "string", + "operation": "contains" + } + } + ], + "combinator": "and" + }, + "renameOutput": true, + "outputKey": "status" } ] },