From 7ee4273acc65c7b0d09e065a8919333d9955473d Mon Sep 17 00:00:00 2001 From: Jerop Kipruto Date: Mon, 9 Feb 2026 11:05:29 -0500 Subject: [PATCH] feat: enable plan mode experiment in settings This change enables the experimental 'Plan Mode' feature by adding 'plan: true' to the .gemini/settings.json file. This is intended to facilitate teamfooding and gather feedback on the new planning capabilities directly within the repository workflow. --- .gemini/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gemini/settings.json b/.gemini/settings.json index f84c17e60a1..25a4a3b272d 100644 --- a/.gemini/settings.json +++ b/.gemini/settings.json @@ -2,6 +2,7 @@ "experimental": { "toolOutputMasking": { "enabled": true - } + }, + "plan": true } }