From 97261711b9d87a19bac5cbb67ef9b029256d287b Mon Sep 17 00:00:00 2001 From: Rafael Garcia Date: Tue, 9 Jun 2026 21:44:25 -0400 Subject: [PATCH] ci: enable Cursor Max Mode for cursor-agent workflow --- .github/workflows/update-cli-coverage.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/update-cli-coverage.yml b/.github/workflows/update-cli-coverage.yml index 78382cf..2185f45 100644 --- a/.github/workflows/update-cli-coverage.yml +++ b/.github/workflows/update-cli-coverage.yml @@ -77,6 +77,13 @@ jobs: curl https://cursor.com/install -fsS | bash echo "$HOME/.cursor/bin" >> $GITHUB_PATH + - name: Enable Cursor Max Mode + run: | + CFG_DIR="$HOME/.cursor" + mkdir -p "$CFG_DIR" + echo '{"maxMode": true}' > "$CFG_DIR/cli-config.json" + echo "CURSOR_CONFIG_DIR=$CFG_DIR" >> "$GITHUB_ENV" + - name: Configure git identity run: | git config --global user.name "kernel-internal[bot]"