This document provides detailed instructions for modifying and optimizing various aspects of Claude 3.7 in Cursor, including token limits, thinking level, and UI styling. These modifications are purely client-side and do not require changes to the Anthropic API.
Claude's token context window is controlled by the getEffectiveTokenLimit
function. By default, standard Claude models use a 30,000 token limit, while the Max variants use a 200,000 token limit.
In the workbench.desktop.main.js
file (usually at /resources/app/out/vs/workbench/workbench.desktop.main.js
), search for:
async getEffectiveTokenLimit(e) {
Replace the original function with this modified version to set a 200,000 token limit:
async getEffectiveTokenLimit(e) {
if(e.modelName && e.modelName.includes('claude-3.7')) return 200000;
// Original function code below
const n = e.modelName;
if (!n) return 3e4;
const r = `${n}_token_limit`;
// Rest of the original function...
}
For all models (not just Claude 3.7):
async getEffectiveTokenLimit(e) {
return 200000; // Always use 200K limit for all models
// Original function code will never run
const n = e.modelName;
// ...
}
Claude's thinking level controls how much reasoning it shows during generation. The "high" level provides the most detailed thinking process.
In the workbench.desktop.main.js
file, search for:
getModeThinkingLevel(e) {
return this.getAllModes().find((n) => n.id === e)?.thinkingLevel ?? "none";
}
Replace it with:
getModeThinkingLevel(e) {
return "high";
}
Make sure this function correctly maps "high" to the appropriate enum value. It should look like:
getThinkingLevel(e) {
switch (e) {
case "high":
return tH.HIGH;
case "medium":
return tH.MEDIUM;
default:
return tH.UNSPECIFIED;
}
}
The UI display of Claude models is controlled by style objects that define how models appear in dropdowns and the chat interface.
Find where the regular Claude 3.7 model is styled by searching for:
a = { ...e, title: "claude-3.7-sonnet", id: r, _serializableTitle: () => "claude-3.7-sonnet" },
Replace with this code to add custom styling:
a = { ...e, title: "claude-3.7-sonnet", id: r, subTitle: "HACKED", subTitleClass: "!opacity-100 gradient-text-high font-bold", _serializableTitle: () => "3.7 Hacked" },
This will:
- Add a "HACKED" subtitle
- Apply the same gradient styling as the "MAX" version
- Make the text bold
- Show "3.7 Hacked" in dropdowns and model selection UI elements
If you want to use red text instead of the gradient:
a = { ...e, title: "claude-3.7-sonnet", id: r, subTitle: "HACKED", subTitleClass: "!opacity-100 text-red-600 font-bold", _serializableTitle: () => "3.7 Hacked" },
For animation effects (may not work in all Cursor versions):
a = { ...e, title: "claude-3.7-sonnet", id: r, subTitle: "HACKED", subTitleClass: "!opacity-100 text-red-500 animate-pulse font-bold", _serializableTitle: () => "3.7 Hacked" },
For the ultimate setup that combines all modifications, follow these steps in order:
- First, create a backup of your
workbench.desktop.main.js
file - Apply the token limit modification to enable 200K context
- Apply the thinking level modification to always use high-level thinking
- Apply the UI customization to make Claude 3.7 stand out
// 1. Modify getEffectiveTokenLimit
async getEffectiveTokenLimit(e) {
return 200000; // 200K token limit for all models
// Original code below will be skipped
const n = e.modelName;
// ...
}
// 2. Modify getModeThinkingLevel
getModeThinkingLevel(e) {
return "high";
}
// 3. Modify UI component
a = { ...e, title: "claude-3.7-sonnet", id: r, subTitle: "HACKED", subTitleClass: "!opacity-100 gradient-text-high font-bold", _serializableTitle: () => "3.7 Hacked" },
If Cursor updates and file paths change, use these commands to locate the right files:
# Find the workbench.desktop.main.js file
find /path/to/cursor -name "workbench.desktop.main*.js"
# Search for getEffectiveTokenLimit function
grep -n "getEffectiveTokenLimit" [path-to-file]
# Search for getModeThinkingLevel function
grep -n "getModeThinkingLevel" [path-to-file]
# Search for claude-3.7-sonnet styling
grep -n "title: \"claude-3.7-sonnet\"" [path-to-file]
For an automated approach, you can use the included Python tool in the cursor_modifier
directory:
- Run
python cursor_claude_modifier.py
or use the batch files (run_modifier.bat
for Windows,run_modifier.sh
for Linux/Mac) - The tool will:
- Locate the Cursor installation
- Find the relevant JavaScript files
- Create backups of original files
- Apply the selected modifications
- Show you a diff of the changes before applying them
-
Updates Override Changes: Cursor updates will likely overwrite these modifications. You'll need to reapply them after updates.
-
No Server-Side Changes: These modifications only affect the client-side code. The actual token usage is still controlled by Anthropic's API, so you may encounter server-side limitations.
-
UI Limitations:
- Some UI modifications may not appear exactly as expected due to CSS interactions
- The gradient styling may render differently in different themes
- Animation effects may not work in all versions of Cursor
-
API Key Requirements: These modifications don't bypass any API key requirements. If you're using your own API key, costs are still determined by Anthropic's pricing.
-
Thinking Level Impact: Setting thinking level to "high" will make Claude show more of its reasoning process, which may increase token usage.
- The token limit is controlled by the
getEffectiveTokenLimit
function - This function first checks a cache, then calls an API, and falls back to default limits
- By modifying this function, we bypass the API call and directly set our preferred limit
- The thinking level is controlled by the
getModeThinkingLevel
function - Thinking levels include "none" (default), "medium", and "high"
- The
getThinkingLevel
function converts string values to enum constants used internally
- Model UI is controlled by style objects with properties like
title
,subTitle
,subTitleClass
- The
_serializableTitle
function controls how the model appears in dropdowns - CSS classes like
gradient-text-high
create the premium gradient effect seen in the MAX version
Remember to make backups before making changes. These modifications affect only the local client and don't change Claude's actual capabilities or underlying API interactions.