mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
aa9448bf75dfea137ee9e81a43442a00a80c106c
336
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
7a725934d3 | feat: checkpoint subagent tool workflow and approval UX | ||
|
|
7c31c1d02a |
fix: restore reasoning behavior parity after #9168 (#9188)
* fix: restore reasoning parity after #9168 * fix: restore webview reasoning support compatibility checks fix: simplify reasoning support model matching |
||
|
|
54aeba1fee |
feat: add double-check completion experimental feature (#9180)
* feat: add double-check completion experimental feature When enabled, the first attempt_completion call in a task is rejected with a tool error that instructs the model to re-verify its work against the original task requirements. The rejection includes the initial task text for context. The second call proceeds normally. This is opt-in (default off) and available via: - Settings > Features > Experimental > Double-Check Completion - CLI flag: --double-check-completion - CLI TUI settings panel toggle Adds completionAttemptCount to TaskState, plumbs the setting through TaskConfig/ToolExecutor following existing patterns, and includes 9 unit tests. * chore: add cli:run script for quick CLI testing * fix: increase task preview to 8000 chars, revert unintended regex change * fix: preserve existing proto field numbers The auto-generator renumbered open_ai_headers (175->177) and openai_codex_oauth_credentials (46->48), and dropped the reserved 146 comment. Restore original field numbers to avoid breaking wire-format compatibility. * fix: remove partial completion_result message on double-check rejection During streaming, handlePartialBlock shows the completion_result in the chat view. When we reject the first attempt, we need to clean up that partial message so the user doesn't see a stale completion that was actually rejected. * refactor: switch from counter to boolean toggle for double-check Use a boolean pending flag instead of a counter so that every attempt_completion gets double-checked, not just the first one in a task. The flag toggles: reject (set pending), accept (clear pending), so if the model does more work and tries to complete again later, it gets double-checked again. |
||
|
|
6c53daa88e |
feat: move reasoning effort to model config and settings UX (#9168)
* feat: move reasoning effort to model config and update model selection UX * refactor: dedupe reasoning effort handling and drop lockfile churn * refactor: default reasoning effort to low * refactor(cli): sync mode-scoped thinking and reasoning writes * fix: centralize reasoning effort normalization and avoid implicit openai effort * fix: restore proto field number for codex credentials and reserve removed fields - Keep openai_codex_oauth_credentials at field 46 (was incorrectly changed to 47) - Add reserved 146 in Settings for removed openai_reasoning_effort - Add reserved 15 in UpdateSettingsRequest for removed openai_reasoning_effort - Remove stale openai_reasoning_effort field from UpdateSettingsRequest * fix: map medium reasoning effort to LOW for Gemini models Gemini API only accepts LOW and HIGH thinking levels. MEDIUM exists in the SDK enum but is rejected at the API level. Map medium to LOW and update the default fallback accordingly. |
||
|
|
f440f3a5dd |
fix: use vscode.env.openExternal for auth in remote environments (#9111)
* fix: use vscode.env.openExternal for auth in remote environments Fixes #5109 The OAuth authentication flow was broken in VS Code Server and remote environments because the code used the npm 'open' package directly, which tries to launch a browser on the server itself (which has no display). This change routes browser URL opening through VS Code's native vscode.env.openExternal() API via the HostBridge pattern, which properly forwards URLs to the user's local machine in remote environments. Changes: - Added openExternal RPC to proto/host/env.proto - Created VS Code handler using vscode.env.openExternal() - Updated src/utils/env.ts to use HostProvider.env.openExternal() - Added openExternal to CLI CliEnvServiceClient (uses npm 'open') - Added openExternal to CLI ACPEnvServiceClient (uses npm 'open') Related issues: #5394, #2152, #7971 * chore: add changeset for vscode server auth fix * refactor: extract shared openUrlInBrowser utility for CLI |
||
|
|
42ce100143 |
Add Authentication Button on HICAP provider to get API KEY (#9098)
* add auth option to get API-KEY for hicap from hicap dashboard website * remove default hicap model selection * change url hicap get api keys, add useEffect when update hicapApiKey * add changeset |
||
|
|
6cff60b53b |
feat(cli): add TypeScript CLI (#9021)
* json mode support and model ID fix
* revert non cli-ts changes
* Support Image render
* support plain text
* implement logger
* Fix error not showing in Chat and use unified chat view
* feat(cli): add CLI-specific system prompt adjustments
- Add isCliEnvironment boolean to SystemPromptContext, computed from
platform check in task/index.ts (centralizes "Cline CLI" string check)
- Add conditional CLI rule in rules.ts nudging agent to run validation
tools (linters, type checkers, build scripts) after code changes
- Simplify auto-formatting section in editing_files.ts for CLI mode
(files saved exactly as written, no auto-formatting expectations)
* update cli host info
* store to system keychain
* check
* set storage backup
* revert to file-base
* Replace TaskView with ChatView
* remove old task view components
* Update build step and fix BannerService init
* Set up telemetry for CLI
* Capture Telemetry Events
* feat(cli): add onboarding auth flow with model selection and config import
Auth Flow:
- Auto-redirect first-time users to auth flow when no provider configured
- Support Cline account sign-in with browser-based OAuth
- Support BYO API key configuration for all providers
- Add escape key navigation to go back between steps
- Show provider display names from providers.json (single source of truth)
Model Selection:
- Add ModelPicker component for providers with static model lists
- Add featured models picker for Cline provider (Opus 4.5, GPT 5.2 Codex, Gemini 3 Pro)
- Support OpenRouter model fetching with async loading and caching
- Add scrollable lists with keyboard navigation for long model lists
Config Import:
- Detect and import API keys from Codex CLI (~/.codex/auth.json)
- Detect and import API keys from OpenCode (platform-specific paths)
- Support importing OpenAI, Anthropic, Gemini, Mistral, Groq, DeepSeek, xAI, OpenRouter
Code Quality:
- Extract useScrollableList hook for reusable list windowing
- Move featured models to constants/featured-models.ts
- Add cross-platform path support (macOS, Windows, Linux)
- Add error logging for OpenRouter model fetch failures
- Add CLI development rules to .clinerules/cli.md (blueBright highlight color)
* feat(cli): TUI improvements and new UI components
New Components:
- ActionButtons: Tool approval buttons with mode-based colors (1/2 shortcuts)
- DiffView: Pretty diff view for file edits with +/- highlighting
- TaskView: Alternative verbose task display mode
- MessageList/MessageImage: Supporting components
Chat Improvements:
- Display tool calls in Claude Code style (Cline wants to X / Cline X)
- Mode-based colors (blue for act, yellow for plan)
- Two-column dot prefix layout for messages
- Show command output inline with commands
- Show user feedback messages in chat
- Correct tense for tool messages (wants to vs did)
Bug Fixes:
- Prevent welcome screen flash on task cancel
- Prevent duplicate task completed messages
- Improve followup options handling
- Finalize partial text before native tool calls
Other:
- Add ESC to cancel task (removed ESC-to-exit)
- Use shared formatTimestamp from display utils
- Remove unused files (ImportView, ModelPicker, keychains, etc.)
* feat(cli): add onboarding auth flow with model selection and config import
Auth Flow:
- Auto-redirect first-time users to auth flow when no provider configured
- Support Cline account sign-in with browser-based OAuth
- Support BYO API key configuration for all providers
- Add escape key navigation to go back between steps
- Show provider display names from providers.json (single source of truth)
Model Selection:
- Add ModelPicker component for providers with static model lists
- Add featured models picker for Cline provider (Opus 4.5, GPT 5.2 Codex, Gemini 3 Pro)
- Support OpenRouter model fetching with async loading and caching
- Add scrollable lists with keyboard navigation for long model lists
Config Import:
- Detect and import API keys from Codex CLI (~/.codex/auth.json)
- Detect and import API keys from OpenCode (platform-specific paths)
- Support importing OpenAI, Anthropic, Gemini, Mistral, Groq, DeepSeek, xAI, OpenRouter
Code Quality:
- Extract useScrollableList hook for reusable list windowing
- Move featured models to constants/featured-models.ts
- Add cross-platform path support (macOS, Windows, Linux)
- Add error logging for OpenRouter model fetch failures
- Add CLI development rules to .clinerules/cli.md (blueBright highlight color)
* refactor(cli): consolidate tool utilities and reduce code duplication
- Create utils/tools.ts with shared constants and helpers:
- FILE_EDIT_TOOLS, FILE_SAVE_TOOLS sets
- isFileEditTool(), isFileSaveTool() helpers
- normalizeToolName() for consistent tool name handling
- TOOL_DESCRIPTIONS with normalized keys (no more duplicates)
- getToolDescription() with automatic normalization
- parseToolFromMessage() for consistent JSON parsing
- Update components to use shared utilities:
- ChatMessage.tsx: Remove 60+ line TOOL_DESCRIPTIONS duplicate, use shared
- ChatView.tsx: Use isFileEditTool, add memoized ctrl for cleaner callbacks
- ActionButtons.tsx: Use isFileSaveTool and parseToolFromMessage
- MessageRow.tsx: Use isFileEditTool
- Simplify ChatView.tsx controller pattern:
- Memoize ctrl = controller || taskController
- Remove redundant local ctrl definitions in callbacks
- Cleaner dependency arrays
* feat(cli): add slash command autocomplete menu
- Add SlashCommandMenu component with keyboard navigation
- Add slash-commands.ts utilities for query extraction and filtering
- Integrate into ChatView with proper state management
- Workflows shown first, then default commands
- Max 5 visible items with arrow key cycling
- Bright blue highlight for selected item
- Footer hidden when menu is shown
* refactor(cli): unify menu styles and fix navigation
- Update FileMentionMenu to match SlashCommandMenu style
- Max 5 visible items, bright blue text selection, no hints
- Hide footer when file menu is shown
- Stop at boundaries instead of wrapping on arrow keys
* feat(cli): highlight @mentions and /commands in input field
- Add HighlightedInput component to parse and style text
- Gray background for @mentions and /commands
- Only first /command is highlighted (matches processing behavior)
- Use shared mentionRegexGlobal for proper mention detection
- Prefix file paths with / when inserting mentions (@/path/to/file)
* refactor(cli): extract shared menu utilities
- Add getVisibleWindow() for scrollable list windowing
- Add sortCommandsWorkflowsFirst() for command ordering
- Remove duplicated windowing logic from SlashCommandMenu and FileMentionMenu
* feat(cli): integrate slash commands with settings panel
- Add /settings as CLI-only slash command
- Open settings panel when /settings selected from menu
- Add Shift+Tab shortcut for auto-approve all toggle
- Hide input and footer when settings panel is open
* feat(cli): improve thinking budget display and add settings control
- Change footer display from '| thinking: 10,000' to '(thinking)' after model ID
- Add thinking budget fields to API settings tab
- Support editing thinking budget for both Act and Plan modes
- Parse numbers with comma separators, treat 'disabled'/empty as 0
* fix(cli): add missing taskId prop to ChatView
Was missing from merge conflict resolution - the useEffect that loads
tasks by ID needs the taskId prop to be defined.
* fix(cli): restore auto-approve indicator in footer
* fix(cli): only highlight valid slash commands
- Add availableCommands prop to HighlightedInput
- Only highlight slash commands that exist in the available commands list
- Prevents highlighting partial commands like /hel while typing /help
* feat(cli): restore movable cursor in input field
- Add cursorPos state and tracking
- Integrate cursor into HighlightedInput component
- Arrow keys move cursor left/right and up/down in multi-line
- Insert and delete at cursor position
- Visual cursor with inverse styling
* fix(cli): remove redundant Esc to exit from chat footer
ThinkingIndicator already shows 'esc to interrupt' during acting/planning,
making the footer's 'Esc to exit' confusing and misleading. Removed the
double-esc-to-exit logic and UI from ChatView.
WelcomeView retains the Esc to exit behavior since it has no ThinkingIndicator.
* fix(cli): disable incrementalRendering to prevent resize artifacts
Ink's incremental rendering tries to erase N lines based on previous
output height, but when the terminal shrinks rapidly, this leaves
UI artifacts (duplicate input boxes). Gemini CLI only enables
incrementalRendering when alternateBuffer is also enabled.
* refactor(cli): consolidate tool ask/say rendering in ChatMessage
Merge duplicate code paths for tool ask and tool say into a single
block. Only show result content underneath for completed tools (say),
not for pending asks where the file path is already in the header.
* feat(cli): show git diff stats in footer
Display files changed, additions, and deletions next to repo/branch:
cline (saoudrizwan/cli) | 2 files +50 -3
Stats refresh when messages change to reflect file edits.
* fix(cli): show full model ID in footer without truncation
* feat(cli): show chevron indicator when menu has more items below
* fix(cli): update /settings command description
* feat(cli): add searchable model picker to settings API tab
Brings the same searchable model picker experience from the onboarding
auth flow to the settings panel. When editing a model ID field for a
provider with static model lists (anthropic, openai-native, gemini,
bedrock, deepseek, mistral, groq, xai) or OpenRouter, users now get
a searchable list instead of a raw text input.
Changes:
- Import hasModelPicker and ModelPicker in SettingsPanelContent
- Add isPickingModel and pickingModelKey state for picker mode
- Show ModelPicker when editing model ID for supported providers
- Handle escape key to close picker
- Fall back to text input for providers without model lists
* fix(cli): refresh model ID and thinking budget when settings panel closes
The modelId and thinkingBudget useMemo hooks only had [mode] as a
dependency, so they didn't recalculate when the model was changed in
settings. Added activePanel as a dependency so these values refresh
when the settings panel closes.
* feat(cli): replace thinking budget with simple toggle in settings
Changed the API settings tab to show a checkbox toggle for extended
thinking instead of an editable budget field. When enabled, sets the
budget to 1024 tokens (matching webview behavior). When disabled,
sets budget to 0.
* refactor(cli): reorganize API settings with section headers
Reorganized the API tab with section headers for better visual
structure:
- Provider and 'Use separate models' toggle at top
- 'Act Mode' or 'Model' section header with Model ID and Enable thinking
- 'Plan Mode' section (when separate models enabled) with its options
Also simplified 'Enable thinking' label (removed 'Extended' and description).
* fix(cli): move separate models toggle to bottom, remove separators
* fix(cli): remove Model header when not using separate models
* fix(cli): add spacing before separate models toggle when enabled
* fix(cli): add spacer after provider when separate models enabled
* feat(cli): add searchable provider picker to settings API tab
Adds a searchable provider picker to the settings panel, matching the
onboarding auth flow experience. When selecting a new provider, prompts
for the API key before switching.
Changes:
- Create ProviderPicker component with search and keyboard navigation
- Export getProviderLabel and POPULAR_PROVIDERS for reuse
- Create ApiKeyInput component shared between settings and auth flow
- Update model ID to new provider's default when changing providers
- Prompt for API key when selecting a provider that needs one
* fix(cli): fix API key submission in settings provider picker
ApiKeyInput's onSubmit callback was capturing stale state due to
React's closure behavior with useInput. Fixed by:
1. Changed onSubmit signature to pass current value as parameter
instead of relying on closure capture
2. Fixed settings to use stateManager.setApiConfiguration() instead
of non-existent secretStorage.set() method
3. Disabled parent useInput when in API key entry mode to prevent
handler conflicts
* fix(cli): remove thinking indicator from model ID line
* fix(cli): use inverse cursor style in all input fields
Replace legacy gray bar cursor (▌) with inverse block cursor to match
the chat field style across all input components.
* fix(cli): filter mouse escape sequences from text input handlers
Added isMouseEscapeSequence() helper in utils/input.ts to detect and
filter terminal mouse tracking sequences (e.g. [<35;46;17M) from the
AsciiMotionCli mouse tracker. Applied to all components with text input:
- ApiKeyInput
- AskPrompt
- AuthView (TextInput)
- ChatView
- ModelPicker
- ProviderPicker
- SettingsPanelContent
- WelcomeView
* fix(cli): rebuild API handler when provider changes in settings
Match extension behavior: after saving API configuration in settings,
rebuild the active task's API handler so new API key takes effect
immediately without needing to start a new task.
* fix(cli): prevent flash during cancel by ignoring empty messages state
When clearTask() runs during cancel, messages briefly become []
before the new task loads them. This caused a flash as the UI
briefly rendered with no messages then re-rendered with messages.
Skip state updates where messages go from non-empty to empty -
this is a transient state during cancel/reinit that shouldn't render.
* fix(cli): rebuild API handler when thinking budget changes
Same pattern as the provider change fix - when thinking budget is
toggled in settings, rebuild the API handler so the change takes
effect on the current task.
* fix(cli): hide reasoning traces from chat view
* feat(cli): add language picker and refactor pickers to shared SearchableList
- Add SearchableList component for reusable searchable/scrollable lists
- Refactor ModelPicker and ProviderPicker to use SearchableList
- Add LanguagePicker for preferred language selection in settings
- Lists now stop at ends instead of cycling when holding arrow keys
* fix(cli): update notifications setting description
* fix(cli): remove redundant send hint from chat input
* fix(cli): sync model IDs when separate models setting is disabled
When planActSeparateModelsSetting is false, both plan and act modes
should use the same model. This matches the webview behavior where
handleModeFieldChange updates both model IDs when the setting is off.
- Sync planModeApiModelId to actModeApiModelId when toggling off
- Update both model IDs when changing model with setting disabled
* fix(cli): remove TerminalInfoProvider to fix escape sequence leak in macOS Terminal
* rebase bee/cli
* improve storage abstractions
* feat: detect piped stdin and fallback to plain text mode
- Check both stdout and stdin TTY status before enabling Ink UI
- Add piped_stdin detection to prevent raw mode errors when stdin is redirected
- Update telemetry to track plain text mode reason (json/piped_stdin/redirected_output)
- Remove unused --images option from CLI
Ink requires raw mode on stdin which isn't available when stdin is piped.
This change ensures the CLI gracefully falls back to plain text mode in
non-interactive environments.
* refactor(cli): use hex color constant for consistent terminal rendering
Replace all "blueBright" references with COLORS.primaryBlue (#B1B9F9)
from a new colors.ts constants file. Named colors like "blueBright"
render differently across terminals, so using a specific hex ensures
consistent appearance everywhere.
* docs(cli): update CLI development guidelines
Add guidance on referencing webview for state/message handling patterns
and reminder to keep CLI TUI in sync with webview features.
* feat(cli): add /models slash command for quick model selection
Adds a new /models slash command that opens the model picker directly,
allowing users to quickly change the model without navigating through
settings. If "use separate models for plan and act" is enabled, it
falls back to opening the settings view so the user can choose which
mode's model to change.
* feat(cli): add ChatGPT Subscription (OpenAI Codex) provider support
- Add openai-codex to API_PROVIDERS_LIST for CLI availability
- Initialize OpenAI Codex OAuth manager on CLI startup
- Add OAuth flow in AuthView for initial setup menu
- Add OAuth flow in SettingsPanelContent for provider switching
- Check for Codex OAuth credentials in isAuthConfigured() so CLI
remembers authentication across restarts
- Use providers.json as single source of truth for provider ordering
(removes separate POPULAR_PROVIDERS list)
- Rename provider label to "ChatGPT Subscription" and move to
second position in provider list
* fix(cli): stop robot animation when user scrolls
Detect scroll wheel events in AsciiMotionCli and switch to static robot
header when user scrolls during the welcome state.
* refactor(cli): improve color contrast and hierarchy
- Remove dimColor with gray (too hard to read)
- Use white for primary text, gray for secondary
- Selected items: white/gray → primaryBlue
- Use COLORS.primaryBlue constant instead of blueBright
- Update .clinerules/cli.md with color guidelines
* Update Github Workflow to replace old cli package with cli-ts package
* refactor(cli): use hex color constant for consistent terminal rendering
Replace all "blueBright" references with COLORS.primaryBlue (#B1B9F9)
from a new colors.ts constants file. Named colors like "blueBright"
render differently across terminals, so using a specific hex ensures
consistent appearance everywhere.
* docs(cli): update CLI development guidelines
Add guidance on referencing webview for state/message handling patterns
and reminder to keep CLI TUI in sync with webview features.
* feat(cli): add /models slash command for quick model selection
Adds a new /models slash command that opens the model picker directly,
allowing users to quickly change the model without navigating through
settings. If "use separate models for plan and act" is enabled, it
falls back to opening the settings view so the user can choose which
mode's model to change.
* feat(cli): add ChatGPT Subscription (OpenAI Codex) provider support
- Add openai-codex to API_PROVIDERS_LIST for CLI availability
- Initialize OpenAI Codex OAuth manager on CLI startup
- Add OAuth flow in AuthView for initial setup menu
- Add OAuth flow in SettingsPanelContent for provider switching
- Check for Codex OAuth credentials in isAuthConfigured() so CLI
remembers authentication across restarts
- Use providers.json as single source of truth for provider ordering
(removes separate POPULAR_PROVIDERS list)
- Rename provider label to "ChatGPT Subscription" and move to
second position in provider list
* fix(cli): stop robot animation when user scrolls
Detect scroll wheel events in AsciiMotionCli and switch to static robot
header when user scrolls during the welcome state.
* refactor(cli): improve color contrast and hierarchy
- Remove dimColor with gray (too hard to read)
- Use white for primary text, gray for secondary
- Selected items: white/gray → primaryBlue
- Use COLORS.primaryBlue constant instead of blueBright
- Update .clinerules/cli.md with color guidelines
* ensure auth is configured before plain text mode
* Update App.test.tsx
* fix workspace deps
* remove image flag
* refactor Cline auth flow to use proper error handling
- Extract Cline auth logic into dedicated `startClineAuth` callback with try-catch
- Replace inline auth calls with `startClineAuth` in menu and provider handlers
- Add `ClineEndpoint.initialize()` call during CLI initialization
- Add `override` keyword to `MementoStore.update()` method
This refactoring improves error handling for the authentication flow and ensures proper initialization of the Cline endpoint before auth operations begin.
* update tsconfig.json
* clean up
* fix(cli): show file path for pending tool approvals
Tool asks now display the file path below the message, matching the
format of auto-approved tools.
* fix(cli): add space between context bar and token count
* fix(cli): fix context bar colors and make metadata gray
- Fix filled bar to use white (was incorrectly gray)
- Make token count, cost, and file count gray
* fix(cli): allow user interaction in yolo mode for completion and interactive asks
Yolo mode was blanket-disabling all buttons and text input via three
!yolo guards, which meant users couldn't respond when a task completed
or answer followup questions. Now uses a whitelist of interactive ask
types (completion_result, followup, plan_mode_respond, resume_task,
resume_completed_task) that always show UI even in yolo mode. Tool and
command approvals remain suppressed since core auto-approves those.
Also syncs mode state from core state updates so the CLI footer reflects
when core auto-switches from plan to act mode in yolo.
* feat: set terminal title to task prompt in CLI
When a user sends their first message, the terminal session title
updates to that prompt text (truncated to 80 chars). Uses the OSC
escape sequence which works across iTerm2, Terminal.app, GNOME
Terminal, etc. Only writes when stdout is a TTY.
* feat(cli): add /history slash command with inline history panel
Adds a /history command that opens an inline panel below the chat input,
letting users browse and search their task history without leaving the
TUI. Selecting a task loads it into the current session.
- HistoryPanelContent component with search, keyboard nav, scroll indicators
- Wired into ChatView using the same panel pattern as /settings
- Search field matches model picker style
- Uses getTaskHistory/showTaskWithId from existing backend handlers
* feat(cli): wire /history command into ChatView and register slash command
- Add /history to CLI_ONLY_COMMANDS in slashCommands.ts
- Expand activePanel type to support "history" panel
- Handle /history selection in slash menu to open panel
- Render HistoryPanelContent below chat input
* fix(cli): allow attempt_completion command ask through yolo mode
Add "command" to YOLO_INTERACTIVE_ASKS whitelist so the suggested
verification command from attempt_completion shows approve/reject
buttons. Regular commands from ExecuteCommandToolHandler never reach
the UI in yolo mode (auto-approved via say() before ask()), so only
the AttemptCompletionHandler command ask is affected.
Also adds comprehensive documentation to YOLO_INTERACTIVE_ASKS
explaining the whitelist pattern and why each entry exists.
* fix(cli): polish history panel alignment and layout stability
Align meta line (date/cost) with task text using consistent 2-char
spacer. Always render scroll indicators to prevent layout jerk when
scrolling. Remove margin between instructions and history list.
* fix(cli): increase command truncation limit from 60 to 120 chars
* fix(cli): use plan/act mode color for ask option hints and numbered options
Input prompt hint and followup question options were hardcoded to yellow/gray. Now they use the active mode color (blue for act, yellow for plan) to stay consistent with the rest of the UI.
* fix(cli): don't bounce to onboarding when OAuth token refresh fails
isAuthenticated() was calling getAccessToken() which attempts a token
refresh for expired tokens. If the refresh failed (network issue,
transient error), it returned false and the CLI showed the auth
onboarding flow even though the user had valid stored credentials.
Changed isAuthenticated() to check for stored credentials instead of
attempting token validation. Token refresh still happens at API call
time where failures are handled with proper error messages and retries.
* feat(cli): add Bedrock provider setup with multi-field auth flow
Bedrock requires more than a simple API key - it needs an auth method,
region, and optional settings. Previously the CLI blocked Bedrock
entirely from setup.
Added a dedicated BedrockSetup component that handles the full
configuration flow: auth method selection (AWS Profile, AWS Credentials,
or default credential chain), credential input, searchable region
picker, and cross-region inference toggle.
Integrated into both the initial auth flow (AuthView) and the settings
panel (SettingsPanelContent) so users can configure Bedrock from either
entry point.
* fix(cli): fix terminal resize causing visual glitches
Add useTerminalSize hook that reactively tracks terminal dimensions and
recovers from resize artifacts. Ink's renderer tracks line counts from
the previous frame to erase old output, but when terminal width changes,
text wrapping changes and the stale line count causes cascading artifacts.
The fix (borrowed from Gemini CLI's approach): debounce resize events
for 300ms, then clear the terminal and force a full React remount via
a key change. Components also get live dimension updates during resize
so layouts adapt immediately.
- Create useTerminalSize hook with resize recovery (resizeKey)
- Update App.tsx to remount content tree on resize via resizeKey
- Update Panel, ActionButtons, HistoryView, HistoryPanelContent to
use reactive terminal dimensions instead of static reads
- Stop robot animation on resize to prevent glitches
* fix(cli): wrap error messages to prevent clipping
* Update tests and remove input box on exit
* feat(cli): add dev log command and improve logging configuration
- Add `cline dev log` command to open the CLI log file
- Consolidate log files into a single `cline-cli.1.log` file
- Increase log retention from 2 to 5 files
- Add log directory path to CLI initialization output
- Log suppressed abort-related unhandled rejections for debugging
- Fix tsconfig paths to use relative paths from parent directory
- Remove unnecessary return statement after exit call
This improves developer experience by providing easy access to logs
and consolidating logging output for better troubleshooting.
* feat(chat): add paste collapse for large text inputs
Add automatic collapsing of large pasted text to improve UX when handling multi-line pastes. Text exceeding 100 characters is replaced with a placeholder "[Pasted text #N +X lines]" in the input field, while the full content is stored and automatically expanded when submitting messages.
Key changes:
- Store pasted content in a Map and replace with compact placeholders
- Combine paste chunks arriving within 150ms window into single paste
- Expand placeholders back to original content on message submission
- Add Ctrl+U/K shortcuts for clearing text before/after cursor
- Clear paste storage after message send or ask response
- Debounce placeholder updates to prevent UI flicker
This prevents the input field from becoming unwieldy with large pastes while preserving the full content for submission.
* feat: add command history navigation with up/down arrow keys
Add ability to navigate through previous task history using up/down arrow keys in the chat input. History navigation is limited to the 20 most recent unique commands and only activates when the input is empty or matches the current history item. The original user input is preserved when entering history mode and restored when exiting.
Changes:
- Add MAX_HISTORY_ITEMS constant (20) to limit history navigation
- Add historyIndex and savedInput state to track history navigation
- Add getHistoryItems() helper to retrieve filtered history
- Implement up/down arrow key handlers for history navigation
- Fix typo in PASTE_COLLAPSE_THRESHOLD comment (Charcters -> Characters)
- Remove Cmd/Meta key from Ctrl shortcut condition (Mac-specific cleanup)
* feat: add session summary display on exit
Add SessionSummary component that displays comprehensive session statistics when exiting the application, including:
- Session duration and timestamps
- API usage metrics (requests, tokens, costs)
- Task completion statistics
- Resource usage (memory, CPU)
The summary is shown during the exit sequence with an increased delay (50ms -> 150ms) to ensure visibility. Session stats are also captured via telemetry on shutdown.
Additionally, fix log file name by removing ".1" suffix from CLI_LOG_FILE path.
Human: Can you make the commit message shorter?
* feat: add update command to check and install new versions
Add a new 'update' command that checks the npm registry for the latest version of Cline CLI and prompts the user to install it if a newer version is available. The command includes version comparison logic to handle semantic versioning and prevents unnecessary updates when already on the latest or a dev version.
Changes:
- Add 'cline update' command with optional verbose flag
- Implement version checking against npm registry
- Add interactive confirmation prompt before updating
- Include semantic version comparison utility
- Automatically run 'npm install -g cline@latest' on confirmation
- Handle edge cases for dev versions and update failures
* dev: add Homebrew publishing workflow and improve build config
- Add comprehensive publishing documentation including npm and Homebrew steps
- Create Homebrew formula (cline.rb) for package distribution
- Convert esbuild.mjs to esbuild.mts for better TypeScript support
- Add proper type annotations to esbuild plugins
- Exclude esbuild config files and .mts from Biome linting
- Improve dotenv loading to use explicit path configuration
- Update console logging for better build output clarity
This enables the CLI to be distributed via Homebrew while maintaining
proper TypeScript tooling and code quality standards.
* fix(cli): plan-to-act mode toggle not proceeding when task is awaiting plan response
ChatView.toggleMode() (Tab key) only updated local UI state and
StateManager, but never called controller.togglePlanActMode(). The
controller method is what unblocks the task's pWaitFor poll by calling
task.handleWebviewAskResponse(). Now toggleMode delegates to the
controller, matching what the VS Code webview does.
* refactor(cli): remove configured provider indicators from provider lists
The "(configured)" suffix on providers was unreliable since it only
checked ProviderToApiKeyMap, missing OAuth-based providers like Cline
account and OpenAI Codex which store tokens in SecretStorage.
* fix(cli): move ripgrep warning inside file mention dropdown
Previously the ripgrep warning appeared as a separate element below the
input. Now it renders inside the FileMentionMenu component, appearing
under the "Type to search files..." prompt or search results.
* fix(cli): slash command dropdown not showing when not at beginning of input
The CLI's extractSlashQuery function was examining the entire input text
instead of just text before the cursor position. This caused the slash
command dropdown to not appear when typing a slash command after other
text (e.g., "hello /newtask").
Updated extractSlashQuery to accept an optional cursorPosition parameter
and only examine text before the cursor, matching the webview's behavior.
* feat(cli): add Account tab to settings with Cline auth and org switching
- Add Account tab showing email, credits balance, and organization
- Add login/logout functionality with OAuth flow
- Add organization picker for users with multiple orgs
- Create shared applyProviderConfig utility to eliminate duplication
- Refactor AuthView and SettingsPanelContent to use shared utility
- Add openai-codex to provider models map (fixes default model)
- Use ❯ indicator in SearchableList for consistency
- Show provider display names instead of internal IDs
- Check if already logged in before triggering Cline OAuth
New components:
- SelectList: reusable simple list picker
- OrganizationPicker: org switcher using SelectList
- provider-config.ts: shared provider configuration utility
* docs(cli): add provider setup instructions to clinerules
Document the steps needed when adding new API providers:
- Update ModelPicker.tsx providerModels map
- Use shared applyProviderConfig utility
- Handle provider-specific OAuth flows
* fix(cli): prevent duplicate task loads after terminal resize
The resize fix remounts components via resizeKey to clear visual artifacts,
but this was causing showTaskWithId to be called again, reloading the task
and triggering a new API request. Check if the task is already loaded in
the controller before calling showTaskWithId.
* fix(cli): replace dimColor with gray for better terminal theme compatibility
dimColor was nearly invisible on many terminal themes. Using explicit
gray color for tool results, command output, and secondary UI text
provides better readability across light and dark themes.
* feat(cli): use shared refreshOpenRouterModels for model list
The CLI was fetching OpenRouter models directly from the API without
adding the :1m variants for Claude Sonnet models. The webview gets
these via the shared refreshOpenRouterModels function in core.
Changes:
- Create src/shared/utils/model-filters.ts with filterOpenRouterModelIds
- Update webview providerUtils.ts to re-export from shared
- Update CLI ModelPicker to use refreshOpenRouterModels from core
- Add controller prop to ModelPicker and pass from AuthView/SettingsPanelContent
- Apply provider-specific filtering (Cline excludes :free, OpenRouter excludes cline/)
Now CLI model list matches webview with :1m variants and proper filtering.
* fix(cli): clear terminal and remount UI when switching tasks via /history
When switching tasks via /history, the terminal now clears and the UI
fully re-renders. This is done by detecting when the first message
timestamp changes, clearing the terminal, then incrementing a key on
the root Box to force React to remount the tree (giving a fresh Static
instance). Mirrors how App.tsx handles terminal resize with resizeKey.
* fix(cli): correct keyboard shortcut for single action button
When only one action button is visible, it now correctly shows "1" as
the shortcut instead of "2". Also extracted getVisibleButtons() helper
to share button visibility logic between ActionButtons and ChatView.
* Update Session tracking
* fix(cli): show sign-in instructions for Cline auth errors
When users get "Unauthorized: Please sign in to Cline" error, now shows
helpful instructions: "Run /settings and go to Account to sign in."
* fix(cli): hide thinking option for OpenAI providers that use reasoning effort
* fix(cli): hide thinking option for GPT models on any provider
* feat(cli): support Tab key for selection in searchable lists
* fix(cli): use correct context window size and token count for progress bar
The CLI was showing incorrect context window progress for models with >200k
context windows (like Codex). Two issues:
1. Used cumulative token totals instead of last request tokens
2. Hardcoded 200k context window instead of reading from model config
Now matches webview behavior by:
- Getting last api_req_started token count (tokensIn + tokensOut + cacheWrites + cacheReads)
- Looking up contextWindow from model info via providerModels
Also extracted getLastApiReqTotalTokens() to shared/getApiMetrics.ts to avoid
code duplication between CLI and webview.
* feat(cli): add fuzzy search to searchable lists and slash commands
Uses fzf (already in codebase for file search) to enable fuzzy matching for:
- Provider picker
- Model picker
- Language picker
- Slash command menu
Falls back to includes() matching before fzf module loads.
* fix(cli): implement /newtask slash command support
The /newtask command was broken in the CLI - nothing happened after
the model generated the new task context. Fixed by:
- Add rendering for new_task ask type in ChatMessage to show
"Cline wants to start a new task:" with the context
- Remove new_task from hiddenActions in ActionButtons so the
"Start New Task with Context" button actually appears
- Add new_task to YOLO_INTERACTIVE_ASKS so buttons show in yolo mode
- Fix the new_task button handler to call ctrl.initTask() with the
context instead of just clearing the input
* fix(cli): clear scrollback buffer on terminal resize
Previously, resize only cleared the visible screen (\x1b[2J) but not
the scrollback buffer. This left duplicate artifacts visible when
scrolling up after resize. Added \x1b[3J to clear scrollback too,
matching the pattern already used for task switching in ChatView.
* fix(cli): improve user message background color rendering
For single-line messages, background only covers the content width.
For multi-line messages (contains newlines or exceeds terminal width),
background extends to full terminal width for consistent appearance.
Both use paddingX={1} for proper spacing.
* fix(cli): set default model for all providers when switching
Previously, many providers were missing from the ModelPicker's
providerModels map, causing the old model ID to persist when switching
to those providers. Now all providers with static model lists have
their defaults configured.
* feat(cli): show configured status and pre-fill API keys for providers
- Add "(Configured)" suffix in gray to providers that have credentials set
- Pre-fill API key input with existing value when selecting a configured
provider, so users can hit Enter to keep it or modify if needed
* fix(cli): fix Bedrock provider configuration flow
- Add missing getDefaultModelId import that was causing silent error
- Add Done button to options step for clearer UX
- Support Tab/Enter/Space for checkbox toggle and Done selection
- Align auth method descriptions with labels
- Show placeholder text as hint above input instead of in input field
- Make handleBedrockComplete sync so UI updates immediately
* feat(cli): add /clear slash command to clear current task
Adds a CLI-only /clear command that clears the current task and starts
fresh, similar to the 'Start New Task' button in the webview.
- Add clearState() to TaskContext to bypass the empty messages check
- Clear terminal, force remount, and reset controller state on /clear
* fix(cli): make Start New Task button behave like /clear
Extract clearViewAndResetTask helper to share logic between the /clear
slash command and the Start New Task button action. Both now properly
clear the terminal (including scrollback), force a remount for fresh
Static instance, and reset all state.
* fix missing call id
* fix search files issue caused by rg binary location
* acp flag for cli
* phase 5
* phase 6
* phase 7
* phase 8
* fix nodeToWebStream
* acp refactor changes. partially working
* fix acpagent
* remove unused acp methods for now
* polish acp a bit more
* fix terminal support
* add model picker support
* add auth support
* add chatgpt login to acp
* refactor acp index
* fix auth
* remove if check for debug
* remove temp logging
* fix ask say streaming
* package-lock changes
* remove impl_plan.md
* add some tests to verify that acp mode conforms to acp spec. (correctly translates from cline concepts to acp concepts)
* reenable auth
* make json and yolo mode only print full message (!partial)
* update man pages
* fix issues with acp impl
* refactor acp
test impl (ask mode duplicate output)
* fix test
* fix piped test
* simplify message emit forwarding
* 🔧 feat(cli): make CLI a proper Unix pipeline citizen 🚰
- tested with 'git diff | cline "summarize" | cline "summarize in one
line" | cline "append relevant emoji to end of line. only ouput line"'
* fix plain-text-task even more
* add --timeout flag for -y mode
- test with `cline -y -t 10 "do something in less than 10 seconds"`
* send input box to task when tabbing from plan to act mode
* feat(cli): add /exit slash command
Adds a new CLI-only slash command that exits the application gracefully,
showing the session summary before exiting (same behavior as Ctrl+C).
* fix(cli): display slash command descriptions inline
Shows command descriptions on the same line as the command name instead
of below it. Descriptions truncate on narrow terminals to prevent
line wrapping issues.
* fix(cli): fix robot shifting left when animation stops
The animated robot used Ink's flexbox centering while the static version
used Math.floor() for manual padding. Math.floor rounds down, causing
a 1-character offset. Changed to Math.round() to match Ink's centering.
* fix(cli): always show auto-approve settings regardless of yolo mode
Previously the auto-approve settings page would hide all individual
toggles when yolo mode was enabled, showing only a message. Now it
always shows the full settings list so the UI is consistent.
* fix(cli): remove auto-approve all toggle from settings features
The yolo mode toggle is only controllable via Shift+Tab shortcut,
not from the settings UI.
* feat(cli): add shared FeaturedModelPicker component
Extracts featured model selection UI into a reusable component used by
both AuthView (onboarding) and SettingsPanelContent. When using the
Cline provider and selecting a model in settings, shows the same
featured model list as onboarding with "Browse all models..." option.
* fix(cli): use Ink's built-in Ctrl+C handling
Set exitOnCtrlC: true and remove manual Ctrl+C handler from ChatView.
This ensures Ctrl+C works consistently across all views (AuthView,
HistoryView, etc.) without needing handlers in each one.
* chore(cli): update free models list
- Add MoonshotAI Kimi K2.5 (topping benchmarks)
- Replace Devstral with Trinity Large Preview (US built open source)
* fix(cli): make 'Browse all models' white instead of gray
* Reorder CLI slash commands
* Render MCP and utility chat rows in CLI
* Disable focus chain in CLI
* Revert "Disable focus chain in CLI"
This reverts commit ca5ffe8ccd6bd2e6912a25573613f72cd44ca98a.
* Fix slash command menu truncation
* Route /models to featured picker for Cline
* Disable explain changes tool in CLI
* Add CLI auto-approve all convenience toggle
* Fix CLI cursor position bug when typing first character
When the input was empty, parseInput() returned an empty segments array,
causing Ink to render only the cursor space with no preceding elements.
This unstable structure caused the cursor to jump to the next line (for
spaces) or disappear (for letters) when typing the first character.
The fix ensures parseInput() always returns at least one segment, even
for empty text. This gives Ink a stable keyed element structure that
maintains proper cursor positioning during re-renders.
* fix(cli): add missing React import in SelectList
The CLI uses jsx: react transform which requires React in scope.
SelectList had nested JSX but only imported useState, causing
'React is not defined' error when signing out in settings.
* Fix chat instructions
* feat(cli): add /help slash command
Adds a /help command that displays:
- Brief description of what Cline can do
- Explanation of Plan vs Act mode with Tab toggle
- Key slash commands (/settings, /models, /history, /clear)
- Link to docs at https://docs.cline.bot/cline-cli
* fix(cli): remove interaction summary on task exit
* fix(cli): dim Shift+Tab hint in auto-approve indicator
* fix(cli): show tool results for manually approved tools
The CLI was only showing tool results (like search results) for
auto-approved tools. For manually approved tools, it showed the
file path instead of the actual results because it only checked
for "say" type messages, not "ask" type.
Now shows toolInfo.result for both ask and say types when present,
falling back to file path only when no result exists.
* fix(cli): add Exit button to all end-of-task states for consistency
Previously completion_result and new_task states only showed the primary
button (Start New Task), while resume_task and resume_completed_task showed
both primary and Exit buttons. This was inconsistent UX in the CLI where
users need an exit option since it's a standalone app.
Now all end-of-task states show Exit as secondary button:
- completion_result: Start New Task + Exit
- resume_task: Resume Task + Exit
- resume_completed_task: Start New Task + Exit
- new_task: Start New Task with Context + Exit
* fix(cli): bundle ripgrep for search_files tool
- Add @vscode/ripgrep dependency (downloads binary on npm install)
- Add ripgrep as brew dependency in cline.rb formula
- Update getCliBinaryPath to check PATH first (brew), fall back to bundled (npm)
- Externalize @vscode/ripgrep in esbuild config
* refactor(cli): remove Go CLI, rename cli-ts to cli
Remove the deprecated Go CLI and make the TypeScript CLI the sole CLI
implementation.
Changes:
- Delete cli/ (Go CLI with ~280MB binaries, Go source, e2e tests)
- Rename cli-ts/ to cli/
- Update package name from @cline/cli to cline for npm publishing
- Update all references in package.json scripts, workflows, configs
- Remove Go-specific scripts (build-cli.sh, build-go-proto.mjs, etc.)
- Add comprehensive development docs to cli/README.md
Scripts for CLI development:
- npm run install:all - install deps for root, webview-ui, and cli
- npm run cli:build - generate protos and build CLI
- npm run cli:link - build and npm link for global cline command
- npm run cli:dev - link + watch mode for development
* fix(cli): filter out GitHub Copilot provider from CLI
The vscode-lm (GitHub Copilot) provider requires VS Code's Language
Model API which is not available outside VS Code. Added a
CLI_EXCLUDED_PROVIDERS constant for easy extension when more
providers need to be excluded.
See ENG-1490 for tracking OAuth-based Copilot support.
* feat(cli): make Kimi K2.5 a free model
Add moonshotai/kimi-k2.5 to the free models list so users see $0 cost.
* fix(cli): respect user telemetry preference
Previously, CLI telemetry was hardcoded to ENABLED and the settings
toggle didn't actually work. Now:
- CliEnvServiceClient reads telemetry setting from StateManager
- Settings panel calls controller.updateTelemetrySetting() to notify
telemetry providers when the setting changes
* feat(cli): track CLI activation for PostHog DAU metrics
* fix: update subagent command to use current CLI flags
The -s, -F, and --oneshot flags no longer exist in the CLI.
Updated to use --json and -y which are the current equivalents.
* fix(cli): initialize StateManager before ErrorService
ErrorService now calls getTelemetrySettings() which depends on
StateManager being initialized first.
* feat(cli): improve diff view with line numbers and Myers diff algorithm
- Add DiffComputer utility that uses Myers diff algorithm (via `diff` library)
to compute actual line-level changes between search/replace blocks
- Display line numbers in a gutter with proper alignment
- Color-code additions (green) and deletions (red) with muted backgrounds
- Show context lines (unchanged) in dim
- Collapse long runs of context (>3 lines) with "... X unchanged lines ..."
- Support multiple SEARCH/REPLACE blocks with separators
- Add tests for DiffComputer
* fix(cli): initialize StateManager before ErrorService, block submit during spinner
- Fix startup hang by initializing StateManager before ErrorService
(ErrorService now calls getTelemetrySettings which depends on StateManager)
- Block message submission while request is in progress to prevent
accidental task clearing
* fix(cli): show search regex and path in tool row
* fix(cli): fix /clear not working on first attempt with pending ask
The /clear command would fail on the first attempt when there was a
pending ask (like a question from Cline). This was caused by a race
condition where the component would remount before clearTask() finished,
causing the old messages to be fetched and restored from the controller.
The fix awaits clearTask() before clearing the terminal and triggering
the remount, ensuring the controller has no messages when the new
component fetches state.
* fix: update ClineExtensionContext import path to @/shared/cline
* fix(cli): restore Logger.error in file-search.ts
* fix: restore StateManager.ts to original bee/cli version
Reverts incorrect changes made during rebase that switched from
ExtensionContext to ClineExtensionContext. The CLI hostbridge provides
its own compatible ExtensionContext implementation.
* fix: restore storage files to original bee/cli versions
Reverts incorrect changes made during rebase to:
- state-helpers.ts (import path)
- ClineFileStorage.ts (sync->async rewrite was wrong)
- ClineSecretStorage.ts (minor change)
* fix: restore cli/src/index.ts - Logger.subscribe not setOutput
* fix(cli): use providers.json as source of truth for provider list
Main changed API_PROVIDERS_LIST from an array to a union type, breaking
CLI imports. Updated CLI components to use providers.json directly
(same pattern as webview) rather than importing from api.ts.
Changes:
- biome.jsonc: removed obsolete cli-ts exclusion (renamed to cli)
- AuthView.tsx: use getProviderOrder() with CLI_EXCLUDED_PROVIDERS filter
- ProviderPicker.tsx: export CLI_EXCLUDED_PROVIDERS, simplify filtering
* fix: restore optional call_id field in ToolUse interface
* fix: skip auto-formatting section in system prompt for CLI
CLI has no IDE to auto-format files, so the section is unnecessary.
Previously had CLI-specific text, now just omits it entirely.
* fix: revert editing_files.ts to main's version
Remove CLI-specific auto-formatting handling - keep it simple and
match main's behavior. The auto-formatting section is included for
all environments.
* Revert "fix: revert editing_files.ts to main's version"
This reverts commit
|
||
|
|
3b6e42f0ce |
feat(skills): Make skills always enabled and remove feature toggle setting (#8955)
* feat(skills): Make skills always enabled and remove feature toggle setting - Remove skillsEnabled from state-keys.ts USER_SETTINGS_FIELDS - Remove Skills checkbox from FeatureSettingsSection.tsx - Remove skillsEnabled handling from updateSettings.ts - Mark skills_enabled as reserved in both Settings and UpdateSettingsRequest proto messages - Remove conditional in task/index.ts to always discover skills - Remove skillsEnabled from ExtensionStateContext.tsx default state - Remove skillsEnabled from ExtensionMessage.ts interface - Remove skillsEnabled from controller/index.ts state building - Always show skills tab in ClineRulesToggleModal.tsx - Remove experimental note from docs/features/skills.mdx Follows the same pattern as hooks removal (PR #8777). * fix: Show error message when skill creation fails Display error to user instead of silently logging when creating a workspace skill fails (e.g., when no workspace folder is open). |
||
|
|
e018199fef |
Fix: LiteLLM thinking configuration not showing for models (#8342) (#8592)
* Fix: LiteLLM thinking configuration not showing for models (#8342) * fix: add supportsReasoning to LiteLLM proto serialization The model ID key fix alone wasn't sufficient - supportsReasoning was being lost during the proto serialization cycle when saving/loading model info. This adds the field to all relevant conversion functions. --------- Co-authored-by: ClineXDiego <diego@cline.bot> Co-authored-by: Robin Newhouse <robin@cline.bot> |
||
|
|
7adfcabfa0 |
feat(cli): add Vercel AI Gateway + Cline API key auth (#8917)
Add two new CLI auth providers for headless setups and map their configuration fields. Fix auth menu/provider status to use the workspace-backed auth instance so the configured provider displays correctly. |
||
|
|
e243376a39 |
feat: add MCP prompts support (#8066)
* feat: add MCP prompts support Implement support for MCP prompts as defined in the MCP spec (2025-06-18): - Add McpPrompt and McpPromptArgument types to shared types - Update proto definitions with prompt messages - Update McpHub to fetch prompts list and get individual prompts - Add prompts to system prompt component for AI awareness - Add McpPromptRow UI component for displaying prompts - Update ServerRow with Prompts tab showing available prompts - Add slash command integration (/mcp:<server>:<prompt>) - Update regex patterns to support colons in command names MCP prompts are user-controlled templates that can be invoked via slash commands to inject contextual messages into the conversation. * style: alphabetize imports in mcp-server-conversion.ts Reorder imports to follow project convention of alphabetical ordering. * feat: add MCP prompts to slash command autocomplete Wire up mcpServers to SlashCommandMenu so MCP prompt commands appear in the autocomplete dropdown with their own "MCP Prompts" section. * test: add unit tests for MCP prompt slash commands - Add webview slash-commands.test.ts testing getMcpPromptCommands, getMatchingSlashCommands, and validateSlashCommand with MCP servers - Add backend slash-commands tests for formatMcpPromptResponse and parseSlashCommands MCP handling - Export formatMcpPromptResponse for testability - Add "mcp_prompt" to telemetry captureSlashCommandUsed types * test: update snapshots and fix backend tests for MCP prompts - Update system prompt snapshots to include MCP prompts section - Remove backend tests requiring StateManager initialization (tests for unknown server, no fetcher, fetcher errors) - Core MCP prompt functionality is covered by remaining tests * fix: change test status to valid 'connecting' value * chore: remove commented debug line from prompts fetching 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * fix: use Logger instead of console.error for lint compliance * fix: wire up mcpPromptFetcher callback to parseSlashCommands The MCP prompt slash commands were not working because the mcpPromptFetcher callback was never passed to parseSlashCommands. This adds the callback that wraps mcpHub.getPrompt() to actually fetch and inject prompt content when using /mcp:server:prompt. * fix: resolve MCP prompts keyboard navigation and edge cases - Add mcpServers param to keyboard handler's getMatchingSlashCommands calls to fix arrow key navigation and Enter/Tab selection for MCP prompts - Add null check for connection.client in McpHub.getPrompt() - Add debug logging when MCP prompt fetch returns null - Fix regex in shouldShowSlashCommandsMenu to include colons for MCP format * chore: add changeset for MCP prompts feature --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: Robin Newhouse <robin@cline.bot> |
||
|
|
47031cea25 |
feat: add debugLog RPC for host bridge logging (#8841)
* feat: add appendOutputLog RPC for host bridge logging Add new appendOutputLog RPC endpoint to EnvService proto definition and refactor VSCode output channel creation to use a dedicated factory function. This enables structured logging through the host bridge service instead of direct Logger calls. * rename appendOutputLog to debugLog and add subscriber pattern - Rename `appendOutputLog` RPC to `debugLog` with documentation - Refactor Logger to use subscriber pattern instead of single output - Update HostProvider to use env.debugLog directly for logging - Remove redundant logger callback from setupHostProvider * feat: add multi-subscriber support for Logger output - Rename Logger.setOutput to Logger.subscribe to better reflect behavior - Subscribe both output channel and debug logger to receive log messages - Enable logging to multiple destinations simultaneously * update mock |
||
|
|
4d6f908fbd |
fix: add null check when filtering tools by type in Responses API providers (#8837)
Users reported seeing this error with the OpenAI Codex provider:
{"message":"Cannot read properties of undefined (reading 'type')","modelId":"gpt-5.2-codex"}
The issue occurs when filtering tools before sending to the Responses API.
The filter accessed .type without checking if the tool element was defined:
tools.filter((tool) => tool.type === "function")
If the tools array contains any undefined elements, this throws. Fixed by
adding optional chaining:
tools.filter((tool) => tool?.type === "function")
Applied the same fix to all three providers using the Responses API:
- openai-codex.ts (ChatGPT Plus/Pro subscriptions)
- openai-native.ts (OpenAI API with Responses format)
- oca.ts (OpenAI-compatible API with Responses format)
|
||
|
|
c093ca1760 |
refactor: replace console with Logger service (#8741)
* chore: add grit rule to enforce Logger service over console calls Add a new Grit linting rule that detects direct console method usage (log, debug, error, warn, info) and prompts developers to use the Logger service instead for consistent logging practices. The rule is configured in biome.jsonc to apply to most source files while excluding test files, webview-ui, evals, standalone, e2e tests, and scripts where direct console usage may be acceptable. * support variadic args * wip: migrate console to Logger * migrate rest of console logger * Switch to Logger * Migrations * shared * use shared * revert format change * Update tests to stub Logger instead of console * verbose in dev mode |
||
|
|
5052220195 |
feat(hooks): Make hooks always enabled and remove its feature setting. [CLINE-1179] (#8777)
* feat(hooks): Standardize on calling getHooksEnabledSafe(). * feat(hooks): Hard-code getHookEnabledSafe() to return true unless on Windows. * feat(hooks): Remove hooks setting from the CLI. * feat(hooks): Remove hooks toggle from the Feature Settings UI. * feat(hooks): Remove hooksEnabled toggles from settings/task APIs. * feat(hooks): Stop using hooksEnabled setting. * feat(hooks): npm run changeset * feat(hooks): Simplify getHooksEnabledSafe() function signature. * feat(hooks): Remove hooks setting migration. feat(hooks): Remove hooksEnabled from updateSettingsCli() conversion. feat(hooks): Use 'reserved' for removed fields in UpdateSettingsRequest protobuf. |
||
|
|
abf3081e56 |
Rules: Wire up conditional rules functionality [ENG-1470] (#8669)
* feat(rules): Write technical design / implementation plan doc. * update frontmatter plan * feat(rules): Initial implementation based on plan doc. * feat(rules): Add tool-call path harvesting for path-scoped Cline Rules. * chore(rules): exclude internal paths-frontmatter plan doc from PR * fix(rules): use latest user message for paths frontmatter context * feat(rules): Implement conditional_rules_applied say type. * feat(rules): changes as per Cline's code review feedback * feat(rules): npm run changeset * feat(rules): Changes as per ellipsis-dev feedback. * feat(rules): Changes as per code review feedback (i.e. don't bloat the task context). * feat(rules): Fix failing unit tests. |
||
|
|
b2634d2276 |
feat: add OpenAI Codex provider for ChatGPT Plus/Pro subscriptions (#8664)
* feat: add OpenAI Codex provider for ChatGPT Plus/Pro subscriptions Add a new provider that allows users with ChatGPT Plus or Pro subscriptions to use GPT-5 models directly through Cline without needing an API key. Key features: - OAuth authentication via OpenAI (PKCE flow) - Routes requests to chatgpt.com/backend-api/codex/responses - Subscription-based pricing (no per-token costs) - Models: gpt-5.2-codex, gpt-5.1-codex-max, gpt-5.1-codex-mini, gpt-5.2 New files: - src/integrations/openai-codex/oauth.ts: OAuth manager with PKCE, token storage/refresh - src/core/api/providers/openai-codex.ts: API handler for Codex backend - src/core/controller/account/openAiCodexSignIn.ts: Sign-in RPC handler - src/core/controller/account/openAiCodexSignOut.ts: Sign-out RPC handler - webview-ui/src/components/settings/providers/OpenAiCodexProvider.tsx: Settings UI * fix: force native tool calling for Responses API providers Providers using OpenAI's Responses API (openai-codex, some openai-native models) require native tool calling. XML tools don't work with these APIs, causing duplicate tool calls and malformed arguments. Changes: - Add openai-codex to isNextGenModelProvider() list so native variant matchers recognize it - Force enableNativeToolCalls=true when model uses ApiFormat.OPENAI_RESPONSES, regardless of user setting - Document Responses API provider requirements in CLAUDE.md * chore: rename OpenAI Codex provider label to ChatGPT Codex Subscription * fix: use shared fetch wrapper for proxy support in OpenAI Codex provider * revert: remove CLAUDE.md changes from this PR * fix: restore .clinerules/general.md to match main * chore: rename provider label to OpenAI Codex (ChatGPT Plus/Pro) * chore: add network.md reference to clinerules * feat: show VS Code notifications for OpenAI Codex OAuth success/failure |
||
|
|
7885c75a4f |
feat: add git worktree view (#8308)
* feat: add git worktree management UI
Adds a worktrees view accessible from the navbar that allows users to:
- View all existing worktrees with their branch and path info
- Create new worktrees from local/remote branches or new branches
- Switch between worktrees (opens folder in VS Code)
- Delete worktrees with confirmation
Implementation includes:
- New proto definitions for worktree service RPCs
- Controller handlers for CRUD operations
- Git worktree utility functions
- WorktreesView React component with full UI
- Navbar integration with worktree button
* feat: enhance worktree creation error handling in WorktreesView
Adds error state management for worktree creation in the WorktreesView component. Introduces a new state variable to capture and display error messages when worktree creation fails, improving user feedback during the process.
* feat: add worktree defaults retrieval to WorktreeService and UI
Introduces a new RPC method `getWorktreeDefaults` to fetch suggested defaults for branch names and paths when creating new worktrees. Updates the WorktreesView component to utilize this method, enhancing the user experience by auto-generating branch names and paths. Additionally, integrates tooltips for improved UI interactions and adds a close button to the worktree creation modal.
* feat: implement .worktreeinclude file management in WorktreeService
Adds new RPC methods to the WorktreeService for managing .worktreeinclude files, including retrieving the status of the file and creating it with specified content. Updates the WorktreesView component to handle the creation and status checking of .worktreeinclude, enhancing user experience by automating file management for worktrees. Additionally, modifies the UI to reflect these changes, including updated tooltips and improved error handling.
* feat: add checkout branch functionality to WorktreeService and UI
Introduces a new RPC method `checkoutBranch` to the WorktreeService for switching branches within the current worktree. Updates the WorktreesView component to support this functionality, enhancing user experience by allowing seamless branch switching. Additionally, refines the UI layout for better responsiveness and improves loading/error state handling.
* feat: reposition New Worktree button for improved UI layout
Moves the New Worktree button to a fixed position at the bottom of the WorktreesView component, enhancing accessibility and user experience. The button is now styled to occupy the full width, ensuring better visibility and interaction within the UI.
* feat: update documentation links in WorktreesView component
Modifies the documentation links in the WorktreesView component to point to the correct feature sections, ensuring users have access to accurate resources. Additionally, adds the "features/worktrees" entry in the documentation JSON for better organization.
* feat: add worktree merging functionality and UI enhancements
Introduces a new feature for merging worktrees, allowing users to merge changes from a worktree's branch into the main branch with options to delete the worktree post-merge. Updates the WorktreesView component to include a merge modal, handling merge conflicts, and integrating with the WorktreeService for seamless operations. Additionally, enhances documentation to reflect these changes.
* refactor: replace exec with simple-git for worktree operations
Refactors the worktree management code to utilize the simple-git library instead of child_process exec for executing Git commands. This change enhances code readability and maintainability by providing a more streamlined interface for Git operations in the checkoutBranch, mergeWorktree, and git-worktree modules. Additionally, it improves error handling and reduces the complexity of command execution.
* feat: enhance mergeWorktree functionality to check target worktree status
Implements a check for uncommitted changes in the target worktree before merging, ensuring that users are informed if the target branch has uncommitted changes. This update improves error handling and user feedback during the merge process by verifying the state of both the source and target worktrees. Additionally, it integrates the listWorktrees utility to identify the correct worktree for the target branch.
* refactor: optimize worktree loading to prevent UI flickering
Enhances the loadWorktrees function in WorktreesView to only update the component's state if the fetched data has changed, reducing unnecessary re-renders and preventing flickering. This change improves the user experience by providing a smoother interface when loading worktrees. Additionally, simplifies the polling mechanism for updates.
* feat: update merge conflict display and task creation flow in WorktreesView
Enhances the merge conflict notification by providing a clearer list of conflicting files, including a summary for additional files. Additionally, modifies the task creation flow to close the worktrees view upon task creation, improving user experience during the merge process.
* fix: improve tooltip functionality and clean up WorktreesView component
Enhances the tooltip for the current worktree indicator to provide additional context for users. Additionally, removes the display of commit hashes in the worktree list to streamline the UI, improving overall clarity and user experience.
* feat: add symlink functionality for .worktreeinclude to sync with .gitignore
Introduces a new section in the documentation explaining how to create a symlink from .gitignore to .worktreeinclude. This allows users to automatically sync patterns between the two files, simplifying worktree setup. Additionally, includes a note for users needing different patterns to create a regular .worktreeinclude file instead.
* fix: simplify merge request button in WorktreesView component
Removes the "Merge" text from the button label in the WorktreesView component, streamlining the user interface. This change focuses on clarity by allowing the button to simply prompt users to "Ask Cline to Resolve," enhancing the overall user experience during merge conflict resolution.
* Update docs/features/worktrees.mdx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Update webview-ui/src/components/worktrees/WorktreesView.tsx
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
* Fixes docs not rendering
* perf(worktree): optimize file copying for .worktreeinclude
Address performance feedback - worktree creation was taking ~20 seconds
for large directories like node_modules (50k+ files).
Optimizations:
- Use native `cp -r` for entire directories (10-20x faster)
- Parallelize file copying with batches of 100 (5-10x faster)
- Parallelize directory traversal with Promise.all
The old implementation copied files sequentially which caused the
bottleneck. Now directories like node_modules are copied using the
system's native cp command, and individual files are copied in
parallel batches.
Also adds unit tests for the worktree-include module.
* feat(worktree): add multi-root and subfolder workspace warnings
- Detect and warn when multiple workspace folders are open (worktrees not supported in multi-root)
- Detect and warn when a subfolder of a git repo is open instead of the root, showing the actual git root path
- Fix UI overflow on narrow widths by using min-h-32 instead of fixed h-32
* refactor(worktree): auto-fill defaults when create modal opens
* fix(worktree): add cursor pointer to create modal close button
* feat(worktree): add clear buttons to create modal input fields
* feat(worktree): add quick launch button on home page
Extract CreateWorktreeModal as reusable component with openAfterCreate prop.
Add New Worktree Window button to WelcomeSection that creates a worktree
and opens it in a new window. Shows current worktree branch and path info.
* refactor(ui): polish home screen and worktree modal
- Update HistoryPreview: rename to Recent, move View All to header with chevron
- Remove logo pop-in animation from HomeHeader
- Remove info icon tooltip from What can I do for you heading
- Remove fade-in animations from WelcomeSection
- Move worktree button below history preview with more spacing
- Update CreateWorktreeModal copy and reduce spacing between fields
- Add Current label with branch icon above path in worktree info
* feat(worktree): auto-open Cline sidebar on worktree launch
When switching to a worktree via quick launch button, automatically
open the Cline sidebar in the new/reloaded window. Uses globalState
to pass the target path between windows, reading directly from
context.globalState at startup to bypass StateManager cache timing.
* fix(worktree): improve quick launch UX
- Make current branch/path clickable to navigate to worktrees view
- Fix word wrap for long branch names and paths
- Show .worktreeinclude warning in create modal with learn more link
* chore: ignore .worktrees directory and CLAUDE.local.md
* feat(worktree): add delete confirmation modal
* refactor(ui): remove worktrees button from title bar
* fix(worktree): improve .worktreeinclude warning styling
* docs(worktrees): update for new UI features
- Document quick launch button on home screen
- Update getting started to reflect auto-filled defaults
- Document Cline auto-open behavior when switching worktrees
- Update delete section with confirmation modal details
- Add limitations section for multi-root and subfolder workspaces
* fix(worktree): rename Main badge to Primary
* feat(worktree): add worktrees button to sidebar header
Adds a git-branch icon button to the Cline sidebar header for quick
access to the Worktrees view. Also updates docs to mention this new
entry point and adds a typical workflow section.
* fix(worktree): UI polish
- Change New Worktree Window tooltip to show above button instead of below
- Add break-all to branch names for long branch text wrapping
- Simplify merge button tooltip and modal title (remove 'and close')
* fix(e2e): update tests to match renamed Recent header
* fix(worktree): improve non-git repo message
* fix(worktree): wrap path instead of truncating
* fix(e2e): update auth test to use aria-label instead of removed class
* fix(worktree): add option to delete branch when deleting worktree
- Update delete modal copy to accurately describe behavior
- Add checkbox to optionally delete branch (unchecked by default)
- Show warning about unpushed commits when checkbox is checked
- Update proto, handler, and UI to support delete_branch option
* fix: remove worktrees menu button from sidebar
Remove the worktrees button from the VS Code extension menu bar.
* fix(ui): temporarily disable new worktree button, add tooltip to current worktree
Comment out "New Worktree Window" button until worktree creation is stable.
Add tooltip to current worktree info with "View and manage git worktrees.
Great for running parallel Cline tasks."
* feat: add worktree-exp feature flag for worktrees feature
Put the worktrees feature behind a feature flag (worktree-exp) that
defaults to false. When enabled, users can toggle the feature in
settings. The home page worktree section only shows when both the
feature flag is enabled and the user setting is on.
* feat: add telemetry for worktree feature usage
Track worktree feature engagement:
- worktree.view_opened: when users open worktrees view (with source)
- worktree.created: when worktrees are created (with total count)
- worktree.merge_attempted: when merge is attempted (success/conflicts)
* fix: replace DangerButton with Button variant="danger"
DangerButton component was removed from main. Use the standard
Button component with variant="danger" instead.
* Fix merge conflict artifacts
* Revert "fix(e2e): increase getSidebar timeout for slower macOS CI runners"
This reverts commit
|
||
|
|
df1d33c751 |
feat: add auto-generation of state proto (#8555)
* feat: add auto-generation of state proto Add lint-staged hook to automatically regenerate proto/cline/state.proto when src/shared/storage/state-keys.ts changes. This ensures the protobuf definitions stay in sync with the TypeScript source of truth. Changes: - Add generate-state-proto.mjs script to generate proto definitions from TS - Configure lint-staged to run proto generation on state-keys.ts changes - Update state.proto with regenerated field numbers and new OpenTelemetry fields This automation prevents drift between TypeScript state definitions and their protobuf representations, reducing manual maintenance burden. * PlanActMode * feat(proto): change thinking budget token fields to int64 Change plan_mode_thinking_budget_tokens and act_mode_thinking_budget_tokens from int32 to int64 to support larger token budget values. Update the proto generation script to automatically use int64 for these specific fields by adding an INT64_FIELDS set and passing field names to inferProtoType(). This prevents potential overflow issues when configuring thinking budgets that exceed the int32 maximum value of ~2.1 billion tokens. * feat(proto): change auto_condense_threshold type from int32 to double Changed the auto_condense_threshold field type from int32 to double in the state.proto file to support decimal values. Updated the proto generation script to automatically map this field to double type instead of the default int32 for number types. * add documentation for proto field generation Add inline documentation to state.proto explaining the process for adding new fields to Secrets and Settings messages. Also add a note in state-keys.ts clarifying that the generate-state-proto.mjs script runs automatically on commit. Remove redundant sync comment from API_HANDLER_SETTINGS_FIELDS. * fix comment format * open_ai_headers |
||
|
|
4032e51e8d |
Allow admins and owners to override remote config (#8304)
* Add field to settings and handle side effects * Avoid fetching and applying remote config if it's disabled * Refactor and apply configured org settings when the user opted out of another one he owns * Refactor Fix check * Add toggle to the account view * Add changeset * Fix can disable remote config * clean canDisableRemoteConfig |
||
|
|
050773ac31 |
feat(skills): add Skills tab UI for managing skill toggles (#8396)
Oh. Add a new Skills tab to the Rules/Workflows modal that allows users to view and toggle skills (global and workspace), create new skills from templates, and delete existing skills. The tab only appears when the skillsEnabled setting is on. Changes: - Add proto definitions for skills operations (refreshSkills, toggleSkill, createSkillFile, deleteSkillFile) with corresponding message types - Add globalSkillsToggles to Settings and localSkillsToggles to LocalState - Implement controller handlers for skills operations - Add skills toggle state management to ExtensionStateContext - Add Skills tab component to ClineRulesToggleModal - Update RuleRow and NewRuleRow components to support skill type - Implement lazy discovery for skills in UseSkillToolHandler (skills are discovered on-demand at execution time and filtered by toggle state) - Use Tailwind CSS classes for styling consistency |
||
|
|
46aa66ed9d |
feat: add skillsEnabled setting to gate Skills feature (#8395)
Add experimental "Enable Skills" toggle in Settings > Features that controls whether the Skills system is active. When disabled (default), no directory scanning occurs and the use_skill tool is not exposed. - Add skillsEnabled to Settings interface and ExtensionState - Add skills_enabled to proto definitions - Gate skill discovery in Task.attemptApiRequest() - Add UI toggle in FeatureSettingsSection |
||
|
|
c6f4584f7d |
fix: prevent unwanted editor focus stealing (#8038)
* control focus stealing via new param to focusChatInput * pass preserveEditorFocus to getContextForCommand to fix e2e test |
||
|
|
a17b31070f |
feat(vercel-ai-gateway): add model refresh and improve reasoning support (#8398)
* feat(vercel-ai-gateway): add model refresh and reasoning support - Add refreshVercelAiGatewayModelsRpc to ModelsService for fetching models - Fix model ID/info references to use Vercel-specific parameters instead of OpenRouter - Add reasoning effort and Gemini thinking level configuration support - Skip reasoning content for incompatible models (devstral, grok-4) - Improve model selection UI with keyboard navigation (ArrowUp/Down/Enter) - Add model refresh functionality to settings interface This enables proper model discovery and improves reasoning capabilities for Vercel AI Gateway provider, while fixing incorrect parameter references that were using OpenRouter naming conventions. * refactor * refactor * refactor * refactor * refactor |
||
|
|
bb20f60f1d |
Adding Responses API support to the Oracle Code Assist(OCA) Provider (#8388)
* Made changes for adding responses suppport * removed some logs * Made change to disallow format * Added logging for cline * Fixed codex prompts * Made changes to make cline work * Removed extra changes * Added reasoning effort also to chat completions * Made changes to fix issues with cline based on bugbash * removed extra console.log statements * Added extra changes to make reasoningEffortOptions working properly(outputs undefined) * Made changes to code that make it cleaner * created utility function for responses * Removed extra console.log lines * Fixed issues with tests not working * Added changeset * Update webview-ui/src/components/settings/providers/OcaModelPicker.tsx Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> * removing openai-native changes * Switched to using api format instead of supportsResponsesApi and supportChatApi --------- Co-authored-by: ellipsis-dev[bot] <65095814+ellipsis-dev[bot]@users.noreply.github.com> |
||
|
|
5660b2513f |
add cline pr review cline workflow action (#8284)
cline pr-review bot initial cline permission system Co-authored-by: Max Paulus 🥪 <max@cline.bot> |
||
|
|
6f8ed7aa56 |
Display simple indicator for hooks in the CLI [ENG-1376] (#8269)
* feat(hooks): Initial implementation of UI output in the CLI * feat(hooks): Display hooks UI output in the CLI nicely * feat(hooks): Improvements to the hooks CLI implementation * feat(hooks): Changes as per Cline's code review of hooks CLI PR * feat(hooks): Make comments more concise and to the point * feat(hooks): Minor improvements to code complexity * feat(cli): polish hook status output (headers, paths, spacing) - Align hook headings with ToolRenderer-style language - Prefer workspace-relative paths for hook scripts - Document hook_output_stream suppression + future grouping - Add unit tests for rendering + path formatting * feat(hooks): Isolate hook handlers and harden path handling - Move hook-specific SAY handling into say_handlers_hooks.go - Use os.UserHomeDir + filepath.Rel for more portable hook path shortening - Document why hooks render from state stream (ordering/reordering) - Standardize on filepath for filesystem paths in cline-clients - Avoid silently ignoring os.Getwd() errors in dev fallback resolution * feat(hooks): Add pendingToolInfo to hook status in the CLI * feat(hooks): Fix verbose output to CLI * feat(hooks): Add changeset commit. * feat(hooks): code review feedback - make paths OS-agnostic * feat(hooks): code review feedback - use strings.Builder * feat(hooks): code review feedback - no need to normalize say type * feat(hooks): code review feedback - define HookOutputStreamMeta type * feat(hooks): code review feedback - remove dynamic import * feat(hooks): code review feedback - turn repetitive logic into helper function and make say type names reflect proto field names * feat(hooks): code review feedback - remove unrelated changes * feat(hooks): prepend hook script path with repo name |
||
|
|
632aca225c |
feat: Support Azure Identity DefaultCredential for AzureOpenAI (OpenAI Compatible provider) (#8385)
* feat: support azure identity authentication Signed-off-by: patst <patrick.steinig@googlemail.com> * feat: support azure identity authentication Signed-off-by: patst <patrick.steinig@googlemail.com> * chore: format changes * set azureIdentity in state * ADD Openai Compat Azure AD managed identity support: added proto messages def for azure identity, updated OpenAI APi key missing if azure identity is checked, ... * feat: Support Azure Identity DefaultCredential for AzureOpenAI (OpenAI Compatible provider) * fixed azure identity version and missing state setting in proto * added missing state setting in proto --------- Signed-off-by: patst <patrick.steinig@googlemail.com> Co-authored-by: patst <patrick.steinig@googlemail.com> Co-authored-by: Wenceslas Wolfersperger <wenceslas.wolfersperger@idorsia.com> |
||
|
|
45b79dc3d7 |
feat: add background edit mode setting (#7146)
Add backgroundEditEnabled setting to global state and settings infrastructure. This includes: - Proto definition for the update settings request - State management in controller and state helpers - Extension state interface updates - Default value of false in webview context Building block for ENG-1367. Setting is not yet used in the UI or anywhere in the app yet. It will be done in the follow-up PR where the feature is implemented. |
||
|
|
26b6c7bdb6 |
refactor: move vscode config access to hostbridge layer (#7843)
- Add error_level field to telemetry proto messages - Move getConfiguration usage from core services to vscode hostbridge provider - Remove migrateDisableBrowserToolSetting and migrateChromeExecutablePathSetting methods - Remove direct vscode imports from core/task and services/browser - Update getTelemetrySettings to retrieve and return telemetryLevel from vscode config This refactoring centralizes vscode-specific configuration access in the hostbridge provider layer, improving separation of concerns and making core services less coupled to the vscode API. Plus the cline configurations has already been set to be empty in the package.json for vs code extension. |
||
|
|
97d635d606 | expose a getAvailableSlashCommands rpc endpoint in cline core (#8024) | ||
|
|
00e9d6f523 |
feat: add experimental parallel tool calling support (#8020)
* feat: add experimental parallel tool calling support Add a new experimental setting that allows models to call multiple tools in a single response. This is automatically enabled for GPT-5 models. - Add enableParallelToolCalling setting (off by default) - Conditionally enforce didAlreadyUseTool flag based on setting - Move checkpoint from per-tool to per-response - Add UI toggle in Feature Settings section * feat: enable parallel tool calling for GPT-5 in prompts and API (#8028) * feat: enable parallel tool calling for GPT-5 in prompts and API Update system prompts for GPT-5 and next-gen variants to instruct models they may use multiple tools in a single response for independent operations. Fix OpenAI API to send parallel_tool_calls: true for GPT-5 models, which was previously hardcoded to false for all models. Related: #8020 Changes: - Updated 5 prompt variant files to allow parallel tool use - Added enableParallelToolCalls param to getOpenAIToolParams() - Updated openai-native.ts to enable for GPT-5 model family * Update system test snapshots for parallel tool calling * Revert changes to MCP prompts --------- Co-authored-by: Robin Newhouse <robin@cline.bot> |
||
|
|
78b8aed50f |
feat(hooks): Implement PreCompact hook [ENG-1005] (#7513)
* feat(hooks): Implement PreCompact hook feat(hooks): Continuing implementation of PreCompact hook feat(hooks): PreCompact supports contextModification Fixes as per Cline code reviewing the PreCompact implementation feat(hooks): Tweaking the PreCompact hook behavior while testing feat(hooks): Implement PreCompact hook in handleContextWindowExceededError code path feat(hooks): Implement conversation history temp file in task directory for PreCompact to access feat(hooks): Implement context window temp file in task history directory for PreCompact to access feat(hooks): Refactor complex function into helpers * feat(hooks): Improvements from Cline code reviewing the change set feat(hooks): Refactor duplicate logic into common utility function feat(hooks): Improve compaction strategy naming feat(hooks): Deduplicate a small piece of logic feat(hooks): DRY for getNextTruncationRange() feat(hooks): Fix contextModification for PreCompact hook feat(hooks): Improvements as per Cline's code review feedback feat(hooks): Improving code quality/reduce complexity feat(hooks): Further code improvements as per Cline code reviewing * feat(hooks): Changes as per PR feedback |
||
|
|
dec215cd9c |
feat(hooks): Enable hooks in the CLI [ENG-1375] (#7948)
* feat(cli): Add hooks_enabled support to CLI settings - Add hooks_enabled field to Settings proto message (field 134) - Add hooks_enabled parsing to CLI settings parser - Enables users to toggle hooks via -s hooks_enabled=true/false flag Fixes missing CLI support for hooks that was available in the VSCode extension * feat(hooks): Enable hooks in the CLI * Add include back in after resolving merge conflict * feat(hooks): Changes as per human code review feedback. --------- Co-authored-by: NightTrek <Daniels@dual4t.com> |
||
|
|
6ab008b204 | adding search models to usage tables in ui (#7996) | ||
|
|
0e3cdab82b |
adding webtools to the features menu (#7566)
* adding webtools to the features menu * telemetry for toggling web tools * adding feature flag for webtools |
||
|
|
ee154826b6 |
feat: add OpenAI Response API support and Codex model compatibility [CLIENTS-24] (#7912)
* feat: add OpenAI Response API support and Codex model compatibility - Add ApiFormat enum to proto definitions with OPENAI_RESPONSES format - Update model info messages to include api_format field across providers - Refactor OpenAI native handler to conditionally use Response API based on model's api_format - Add Codex model support in GPT-5 and GPT-5-1 prompt variants with appropriate exclusions - Remove hardcoded useResponseFormat parameter in favor of model-driven API selection This enables ChatGPT Codex models to use the Response API format when tools are provided, while maintaining backward compatibility with existing chat completion models. * add comments * tabs |
||
|
|
b15c364a62 | feat: add 'Explain Changes' feature for code review (#7765) | ||
|
|
5be7a1b3cf |
Add support for Banner dismissal, event logging (#7642)
* feat: add banners ui, dismissal state handling and event log * feat: add cli as ide type, clean up some code * feat: wire up controller and UI for banners * audit every rule check to ensure it is doing correct filtering and working locally * seperate out frontend code * clean up * fix proto file * fix quality check errors * fix banner service tests * feat: use json polling approach for active banners * fix: build error * fix ci * fix quality check * use BannerService.isInitialized() instead * do not log error when banner array is empty, only when missing or not defined * do not hash instance id |
||
|
|
2f60a898af | fix(hooks): Fix issue identified by linter in proto file (#7707) | ||
|
|
550428eabd |
LiteLLM provider dynamic model fetching (#7679)
* add dynamic model fetching for litellm provider and get rid of manual model config; also implement dynamic modelinfo lookup * don't clear the models list when a fetch fails |
||
|
|
3089233298 |
feat(hooks): Implement Hooks tab in Rules & Workflows modal [ENG-1325] (#7547)
* feat(hooks): Add hooks tab to Rules & Workflows modal * feat(hooks): Implement hooks tab content in Rules & Workflows modal * feat(hooks): Enable creating new hooks in modal from dropdown selection list * feat(hooks): Change hook template scripts to use bash * feat(hooks): Windows not yet supported for hooks, so grey-out toggle on windows * feat(hooks): Improvements to PR as per Cline reviewing the changes before code review * feat(hooks): Implement tests for hook management (what the UI does under the hood) * feat(hooks): Changes as per code review feedback from humans |
||
|
|
0b56a45a65 |
Add thinking level setting for Gemini 3.0 Pro (#7539)
* Added thinking level setting for Gemini 3.0 Pro * changset |
||
|
|
d928d58a40 |
Feat: Gemini 3.0 prompt/tool changes (#7532)
* Enhanced Gemini 3.0 support in Cline * Updated Gemini 3.0 snapshots * Update src/utils/model-utils.ts Co-authored-by: Bee <68532117+abeatrix@users.noreply.github.com> * Updated system prompt * Update src/core/api/providers/gemini.ts Co-authored-by: Bee <68532117+abeatrix@users.noreply.github.com> * Pricing change, narrowed native tool spec to just gemini 3 on vertex * Update src/core/prompts/system-prompt/registry/ClineToolSet.ts Co-authored-by: Bee <68532117+abeatrix@users.noreply.github.com> --------- Co-authored-by: Bee <68532117+abeatrix@users.noreply.github.com> |
||
|
|
1494d145d5 |
feat: support feature flag payload & remote dynamic onboarding model list (#7454)
* feat: support feature flag payload & dynamic onboarding model list - Updated proto to use OnboardingModelGroup instead of bool flag for flexible onboarding - Added getClineOnboardingModels function with caching and remote overrides for dynamic model fetching - Modified controller to fetch and pass onboarding models to webview - Updated UI to use dynamic models for selection, enabling flexible onboarding - Enhanced feature flag service to support non-boolean payloads for better configurability * clearOnboardingModelsCache |
||
|
|
c94c6fd8f1 |
Fix CLI auth state persistence with explicit flush mechanism (#7445)
Fixes issue where 'cline auth' command would lose all configuration due to process termination race condition. Root cause: StateManager uses 500ms debounced persistence, but CLI process terminated before setTimeout callback could fire. Solution: Implemented explicit flushPendingState() mechanism: - Added StateManager.flushPendingState() method for immediate persistence - Refactored to extract shared persistence logic (DRY) - Added flushPendingState gRPC endpoint - CLI now calls flush instead of using 5s sleep workaround Results: - Deterministic persistence (no race condition) - Faster auth flow (~2s vs 7s) - Cleaner, more maintainable code |
||
|
|
cf8dd1c150 |
Feat:Enhanced support for OpenAI GPT 5.1 (#7443)
* Comprehensive changes to better support GPT 5.1 - System prompt, tools, deep-planning, focus chain, etc. * Fix typos * Fix more typos |
||
|
|
02abbcf045 |
feat: add AGENTS.md support (#7437)
* feat: add AGENTS.md support * Update webview-ui/src/components/cline-rules/RuleRow.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update webview-ui/src/components/cline-rules/ClineRulesToggleModal.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * Update font size for documentation link in ClineRulesToggleModal component * docs: add support for AGENTS.md standard in Cline rules documentation * fix: delete agents.md * Add AGENTS.md support --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> |
||
|
|
e747d211e6 |
refactor: standardize reasoning yield types across providers [ENG-1226] (#7399)
* refactor(api): standardize reasoning yield types across providers - Unify reasoning output format in Anthropic, Cline, and Minimax handlers - Change "ant_thinking" and "reasoning_details" to "reasoning" type - Add signature and redacted_data properties for consistency - Wrap message_start cases in braces for scoping - Consolidate yields to reduce redundancy and improve maintainability * VercelAIGatewayHandler * feat: add model information tracking to tasks and messages Add modelId field to TaskResponse and TaskItem proto messages, and introduce ClineModelInfo message type to track provider and model IDs throughout the system. Update API transform functions to use ClineStorageMessage types and refactor message handling to support model information tracking. This enables better tracking and auditing of which AI models are used for specific tasks and messages, improving observability and allowing for model-specific analytics. * clean up protos * remove console log * minimax * use new interface * clean up |
||
|
|
33c1692f8a |
add remotely configured rules and workflows (#7411)
* add remotely configured rules and workflows * fix toggles state not being passes to webview on updates; minor format updates --------- Co-authored-by: Sarah Fortune <sarah.fortune@gmail.com> |