@anthonyhaussman/opencode-agy-auth 1.1.12 → 1.1.13-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -15910,75 +15910,85 @@ import { randomUUID as randomUUID3 } from "crypto";
15910
15910
  // models.json
15911
15911
  var models_default = {
15912
15912
  models: {
15913
- "gemini-3.1-pro-low": {
15914
- displayName: "Gemini 3.1 Pro (Low)",
15913
+ "gemini-2.5-pro": {
15914
+ displayName: "Gemini 2.5 Pro",
15915
15915
  supportsImages: true,
15916
15916
  supportsThinking: true,
15917
- thinkingBudget: 1001,
15917
+ thinkingBudget: 1024,
15918
15918
  minThinkingBudget: 128,
15919
15919
  recommended: true,
15920
15920
  maxTokens: 1048576,
15921
15921
  maxOutputTokens: 65535,
15922
15922
  quotaInfo: {
15923
- remainingFraction: 1,
15924
- resetTime: "2026-08-12T03:11:27Z"
15923
+ remainingFraction: 0.9868631,
15924
+ resetTime: "2026-08-13T21:58:37Z"
15925
15925
  },
15926
- model: "MODEL_PLACEHOLDER_M36",
15926
+ model: "MODEL_GOOGLE_GEMINI_2_5_PRO",
15927
15927
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
15928
15928
  modelProvider: "MODEL_PROVIDER_GOOGLE",
15929
- supportsVideo: true,
15930
15929
  supportedMimeTypes: {
15930
+ "image/jpeg": true,
15931
+ "image/heic": true,
15931
15932
  "application/x-ipynb+json": true,
15933
+ "application/x-python-code": true,
15932
15934
  "application/rtf": true,
15933
- "image/heic": true,
15934
15935
  "image/heif": true,
15935
- "application/pdf": true,
15936
- "text/css": true,
15937
- "application/x-javascript": true,
15938
- "image/webp": true,
15939
- "video/audio/s16le": true,
15940
- "video/jpeg2000": true,
15941
- "application/x-typescript": true,
15942
- "video/webm": true,
15943
- "image/jpeg": true,
15944
- "text/markdown": true,
15936
+ "text/x-python": true,
15937
+ "video/mp4": true,
15938
+ "text/xml": true,
15945
15939
  "text/javascript": true,
15940
+ "text/markdown": true,
15941
+ "text/csv": true,
15942
+ "audio/webm;codecs=opus": true,
15943
+ "video/audio/s16le": true,
15946
15944
  "text/x-python-script": true,
15947
15945
  "video/audio/wav": true,
15948
- "video/videoframe/jpeg2000": true,
15949
- "text/plain": true,
15950
- "image/png": true,
15951
- "text/x-python": true,
15952
- "video/text/timestamp": true,
15953
- "audio/webm;codecs=opus": true,
15954
15946
  "text/rtf": true,
15955
- "video/mp4": true,
15947
+ "application/x-javascript": true,
15956
15948
  "application/json": true,
15957
- "text/x-typescript": true,
15958
- "application/x-python-code": true,
15949
+ "image/png": true,
15950
+ "application/x-typescript": true,
15959
15951
  "text/html": true,
15960
- "text/xml": true,
15961
- "text/csv": true
15952
+ "text/x-typescript": true,
15953
+ "text/css": true,
15954
+ "image/webp": true,
15955
+ "video/text/timestamp": true,
15956
+ "video/webm": true,
15957
+ "text/plain": true,
15958
+ "video/videoframe/jpeg2000": true,
15959
+ "application/pdf": true,
15960
+ "video/jpeg2000": true
15962
15961
  },
15962
+ requiresImageOutputOutsideFunctionResponses: true,
15963
15963
  modelExperiments: {
15964
15964
  experiments: {
15965
- template__system_prompts__planning_mode_artifacts: {
15966
- stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
15967
- },
15968
15965
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
15969
15966
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
15970
- },
15971
- "cascade-include-ephemeral-message": {
15972
- stringValue: '{\n "enabled": true,\n "disabledHeuristics": ["running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
15973
- },
15974
- template__system_prompts__communication_style: {
15975
- stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [filename](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n\nCRITICAL INSTRUCTION 1: You may have access to a variety of tools at your disposal. Some tools may be for a specific task such as 'view_file' (for viewing contents of a file). Others may be very broadly applicable such as the ability to run a command on a terminal. Always prioritize using the most specific tool you can for the task at hand. Here are some rules: (a) NEVER run cat inside a bash command to create a new file or append to an existing file. (b) ALWAYS use grep_search instead of running grep inside a bash command unless absolutely needed. (c) DO NOT use ls for listing, cat for viewing, grep for finding, sed for replacing.\nCRITICAL INSTRUCTION 2: Before making tool calls T, think and explicitly list out any related tools for the task at hand. You can only execute a set of tools T if all other tools in the list are either more generic or cannot be used for the task at hand. ALWAYS START your thought with recalling critical instructions 1 and 2. In particular, the format for the start of your thought block must be '...94>thought\\nCRITICAL INSTRUCTION 1: ...\\nCRITICAL INSTRUCTION 2: ...'."
15976
15967
  }
15977
15968
  }
15978
15969
  }
15979
15970
  },
15980
- "gemini-3-flash-agent": {
15981
- displayName: "Gemini 3.5 Flash (High)",
15971
+ "gemini-2.5-flash": {
15972
+ displayName: "Gemini 3.1 Flash Lite",
15973
+ maxTokens: 1048576,
15974
+ maxOutputTokens: 65535,
15975
+ quotaInfo: {
15976
+ remainingFraction: 0.9868631,
15977
+ resetTime: "2026-08-13T21:58:37Z"
15978
+ },
15979
+ model: "MODEL_GOOGLE_GEMINI_2_5_FLASH",
15980
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
15981
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
15982
+ modelExperiments: {
15983
+ experiments: {
15984
+ CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
15985
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
15986
+ }
15987
+ }
15988
+ }
15989
+ },
15990
+ "gemini-3-flash": {
15991
+ displayName: "Gemini 3 Flash",
15982
15992
  supportsImages: true,
15983
15993
  supportsThinking: true,
15984
15994
  thinkingBudget: -1,
@@ -15987,139 +15997,119 @@ var models_default = {
15987
15997
  maxTokens: 1048576,
15988
15998
  maxOutputTokens: 65536,
15989
15999
  quotaInfo: {
15990
- remainingFraction: 1,
15991
- resetTime: "2026-08-12T03:11:27Z"
16000
+ remainingFraction: 0.9868631,
16001
+ resetTime: "2026-08-13T21:58:37Z"
15992
16002
  },
15993
- model: "MODEL_PLACEHOLDER_M47",
16003
+ model: "MODEL_PLACEHOLDER_M18",
15994
16004
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
15995
16005
  modelProvider: "MODEL_PROVIDER_GOOGLE",
15996
16006
  supportsVideo: true,
15997
- tagTitle: "Fast",
15998
- tagDescription: "Limited time",
15999
16007
  supportedMimeTypes: {
16000
- "application/json": true,
16001
- "application/rtf": true,
16002
- "text/javascript": true,
16003
- "text/csv": true,
16004
- "video/audio/s16le": true,
16005
- "application/x-javascript": true,
16006
- "application/x-typescript": true,
16007
- "image/webp": true,
16008
- "audio/webm;codecs=opus": true,
16009
- "image/png": true,
16010
- "application/pdf": true,
16011
- "video/audio/wav": true,
16012
- "video/jpeg2000": true,
16013
- "image/heif": true,
16014
- "text/html": true,
16015
- "application/x-python-code": true,
16016
- "text/xml": true,
16017
- "text/markdown": true,
16018
- "text/rtf": true,
16019
- "text/x-python": true,
16020
- "image/jpeg": true,
16021
16008
  "video/videoframe/jpeg2000": true,
16022
- "text/plain": true,
16023
16009
  "image/heic": true,
16024
16010
  "text/css": true,
16011
+ "video/webm": true,
16012
+ "text/x-python": true,
16025
16013
  "video/mp4": true,
16014
+ "text/csv": true,
16015
+ "image/png": true,
16026
16016
  "text/x-python-script": true,
16027
- "video/webm": true,
16017
+ "application/x-python-code": true,
16028
16018
  "video/text/timestamp": true,
16019
+ "video/jpeg2000": true,
16020
+ "text/plain": true,
16021
+ "video/audio/s16le": true,
16022
+ "application/rtf": true,
16023
+ "application/x-typescript": true,
16029
16024
  "text/x-typescript": true,
16030
- "application/x-ipynb+json": true
16025
+ "application/x-ipynb+json": true,
16026
+ "text/markdown": true,
16027
+ "application/x-javascript": true,
16028
+ "application/json": true,
16029
+ "text/xml": true,
16030
+ "text/html": true,
16031
+ "text/rtf": true,
16032
+ "text/javascript": true,
16033
+ "image/heif": true,
16034
+ "application/pdf": true,
16035
+ "video/audio/wav": true,
16036
+ "audio/webm;codecs=opus": true,
16037
+ "image/jpeg": true,
16038
+ "image/webp": true
16031
16039
  },
16032
16040
  modelExperiments: {
16033
16041
  experiments: {
16034
- template__system_prompts__messaging: {
16035
- stringValue: "You are connected to a messaging system where you may receive messages from: {{- $subagent := .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled -}}\n{{- $message := .CascadeConfig.GetMessageConfig.GetEnabled -}}\n{{- if and $subagent $message }} agents, background tasks, user-queued messages\n{{- else if $subagent }} agents, background tasks\n{{- else if $message }} background tasks, user-queued messages\n{{- else }} background tasks\n{{- end }}.\n\n## Receiving Messages\n\nYou receive messages automatically at the start of each invocation. All messages are delivered in full directly into your context \u2014 no manual retrieval is needed.\n\n## Reactive Wakeup (No Polling Needed)\n\nThe system automatically resumes your execution when:\n{{- if .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled }}\n- A message arrives from a subagent or peer agent\n{{- end }}\n- A **background task** completes or sends you a notification\n{{- if .CascadeConfig.GetMessageConfig.GetEnabled }}\n- A **user-queued message** is ready to be dequeued\n{{- end }}\n\nThis means you do **NOT** need to poll in a loop while waiting for messages or updates. After launching a task that runs in the background, you may continue other work or simply stop by calling no more tools. The system will notify you when there is something to process."
16036
- },
16037
- template__system_prompts__planning_mode_artifacts: {
16038
- stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16039
- },
16040
16042
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16041
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16043
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16042
16044
  },
16043
16045
  template__system_prompts__communication_style: {
16044
- stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- You can render LaTeX math (KaTeX): inline with `\\(...\\)` or `$...$`, display with `\\[...\\]` or `$$...$$` placed on its own line.\n- Use math only for genuine mathematical content. Use backticks for code, identifiers, paths, flags, and shell variables.\n- `$` opens inline math, so write a literal dollar as `\\$` or wrap it in backticks. Two unescaped `$` in the same paragraph turn everything between them into math \u2014 this bites prices (`\\$100`) and shell syntax written in prose (`$HOME`, awk `$1`).\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [utils.py](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n- After launching a background task such as 'run_command', YOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: \nA) either proceed to other relevant work (if any) or, \nB) simply update the user with a short message (e.g. 'task-20 has been launched in the background. I will wait for it to complete before proceeding.') and end the turn.\nDO NOTHING ELSE.\n"
16045
- },
16046
- template__system_prompts__guidelines: {
16047
- stringValue: "Follow these behavioral and workflow guidelines at all times:\n# Documentation\n- Maintain documentation integrity. Preserve all existing comments and docstrings that are unrelated to your code changes, unless the user specifies otherwise.\n\n# Obey Explicit Directives\nIf the user specifies precise quantitative filtering rules, layout boundaries, or architectural preferences, enforce them exactly as requested without alteration.\n\n# Never Guess Code Logic, Schemas, or File Paths\nNEVER infer implementation details, variable names, or file locations without inspecting the authoritative source using code search and file viewing tools.\n\n# Inspect Logs & Stack Traces Before Diagnosing Errors\nNEVER form a diagnostic hypothesis for a runtime failure, or test breakage, without reading the full, un-truncated error log. When an error occurs, your VERY FIRST ACTION must be to fetch and read the exact logs. Base your diagnosis strictly on empirical log evidence.\n\n# No Superficial Symptom Patches\nNEVER resolve errors by masking symptoms, swallowing exceptions, returning dummy fallbacks, commenting out broken assertions, or deleting failing unit tests. When a test or function fails, identify why the underlying contract was broken. If an API returns missing or null data, trace the upstream data provider instead of wrapping the call in a silent try/except or returning an empty 0-byte ArrayBuffer.\n\n# Never Declare Success Without Running Verification Commands\nNEVER claim a task is resolved, a bug is fixed, or a feature is working until you have gathered concrete, empirical runtime verification demonstrating clean success. Editing a file does not equal completing the task. You MUST run the build or test command afterwards.\n\n# Never Ignore Explicit Command Failures or Error Exit Codes\nIf a command fails, you MUST explicitly acknowledge the failure to the user or continue debugging. Never gloss over a build timeout or permission denied error by focusing only on the part of the code that compiled.\n\n# Check Feature Flags & Enforce Strict Control Flow Scoping\nWhenever modifying conditional branches, adding experimental features, or processing loops, ensure that new logic is strictly scoped and evaluated against all possible execution paths.\n\n# Preserve Existing API Contracts & Avoid Unintended Side Effects\nIf you modify a function signature, use code search to find and update every invocation site so the parameter is actually passed.\n\n# Silent Log Inspection & Professional Synthesis\nWhen background tasks (run_command async, manage_task, schedule) complete or emit log notifications, inspect the log files silently. Summarize and synthesize the exact findings in clean, professional natural language.\n\n# No Snippet Tunnel Vision\nNever infer the definition of data structures (proto, struct, class, or enum schemas) from partial file views (first 15 lines or L40-L65 snippets) or design doc text.\nIf view_file output indicates truncation or if an imported schema is referenced, you MUST adjust StartLine/EndLine or ContentOffset to inspect the complete, exact definition of the target symbols before writing code that consumes them.\n\n# Check Command Registries\nWhenever modifying core C/C++/Java command implementations (CLIENT LIST, CLIENT KILL), explicitly search for and update corresponding command definitions across all registry files (commands.def, JSON schemas, .bzl build manifests).\n\n# Audit Before Re-inventing\nSearch the codebase and recent commit history for pre-existing utility classes or decoupled architecture before writing custom helper classes from scratch.\n\n# No Blocking Calls on Main Looper Threads\nNever invoke blocking thread synchronizations (webLatch.await(500, ...), Future.get()) on main Android UI loops or single-threaded event dispatchers. \n\n# Thread Pool Shutdown Safety\nWhen modifying worker thread loops or shared queues, ensure emergency stop/shutdown signals and loop termination criteria remain intact so thread join operations never deadlock.\n\n# Exact Argument Structure\nPass arguments exactly as expected by the API (calculateRoute({ origin, destination, travelMode }) vs calculateRoute(origin, destination, travelMode)).\n\n# Local State Mutation Only\nDo not mutate private third-party DOM properties. Do not push incomplete draft objects directly into global array states; keep transient state within local component state.\n\n# Traceback Justification Required\nEvery code or configuration edit during debugging MUST be justified by an explicit error traceback, log line, or verified root cause. If the root cause is unknown, investigate further before mutating code.\n\n# Analyze Before Retrying\nNever repeat the exact same broken test or shell command line with duplicate/conflicting arguments without analyzing and resolving why the previous command failed.\n\n# Persevere on Log Extraction\nIf a log retrieval command fails, NEVER abandon log extraction to diagnose blindly. Immediately switch to alternative tools to inspect the actual failure traceback.\n\n# Verify Signatures & Prop Names\nCheck exact variable names, component prop keys, and method signatures before passing them. Prevent NullPointerException, AttributeError, KeyError, and ReferenceError crashes by explicitly verifying object initialization and non-null states before property dereferencing (layer._path, stat.owner()).\n\n# Dynamic Layout Math\nAvoid hardcoding static pixel offsets (+ 12) or arbitrary multipliers (pill_font_size * 2.0) when computing dynamic UI layout heights; calculate exact container bounds from wrapped elements.\n"
16046
+ stringValue: '- Keep your responses concise.\n- Provide a summary of your work when you end your turn. Ground your response in the work you did. Keep your tone professional and avoid overconfident language, bragging, or overclaiming success.\n- AVOID using superlatives such as "perfectly", "flawlessly", "100% correct", "Summary of Accomplishments" etc. to summarize your work for the user. Be humble.\n- AVOID over-the-top politeness or complimenting the user excessively.\n- Format your responses in github-style markdown.'
16048
16047
  }
16049
16048
  }
16050
16049
  }
16051
16050
  },
16052
- tab_flash_lite_preview: {
16053
- maxTokens: 16384,
16054
- maxOutputTokens: 4096,
16055
- quotaInfo: {
16056
- remainingFraction: 1
16057
- },
16058
- model: "MODEL_PLACEHOLDER_M19",
16059
- apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16060
- modelProvider: "MODEL_PROVIDER_GOOGLE",
16061
- supportsCumulativeContext: true,
16062
- supportsEstimateTokenCounter: true,
16063
- toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
16064
- requiresLeadInGeneration: true
16065
- },
16066
- "gemini-3-flash": {
16067
- displayName: "Gemini 3 Flash",
16051
+ "gemini-3.7-flash-low": {
16052
+ displayName: "Gemini 3.7 Flash (Low)",
16068
16053
  supportsImages: true,
16069
16054
  supportsThinking: true,
16070
- thinkingBudget: -1,
16055
+ thinkingBudget: 1e3,
16071
16056
  minThinkingBudget: 32,
16072
16057
  recommended: true,
16073
16058
  maxTokens: 1048576,
16074
16059
  maxOutputTokens: 65536,
16075
16060
  quotaInfo: {
16076
- remainingFraction: 1,
16077
- resetTime: "2026-08-12T03:11:27Z"
16061
+ remainingFraction: 0.9868631,
16062
+ resetTime: "2026-08-13T21:58:37Z"
16078
16063
  },
16079
- model: "MODEL_PLACEHOLDER_M18",
16064
+ model: "MODEL_PLACEHOLDER_M300",
16080
16065
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16081
16066
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16082
16067
  supportsVideo: true,
16068
+ tagTitle: "Fast",
16069
+ tagDescription: "Limited time",
16083
16070
  supportedMimeTypes: {
16084
- "video/audio/wav": true,
16085
- "application/x-javascript": true,
16086
- "text/rtf": true,
16087
- "text/html": true,
16088
- "text/xml": true,
16089
- "application/x-python-code": true,
16090
- "application/json": true,
16091
- "image/jpeg": true,
16092
- "image/heif": true,
16093
- "image/heic": true,
16071
+ "text/css": true,
16094
16072
  "application/x-ipynb+json": true,
16073
+ "text/csv": true,
16074
+ "image/jpeg": true,
16075
+ "text/html": true,
16095
16076
  "image/png": true,
16096
- "video/text/timestamp": true,
16097
- "text/plain": true,
16098
- "application/rtf": true,
16099
- "image/webp": true,
16100
- "text/css": true,
16101
- "video/jpeg2000": true,
16077
+ "application/json": true,
16078
+ "text/javascript": true,
16102
16079
  "text/markdown": true,
16103
- "text/csv": true,
16080
+ "text/rtf": true,
16104
16081
  "video/audio/s16le": true,
16105
- "text/x-python-script": true,
16106
- "text/x-python": true,
16082
+ "application/x-typescript": true,
16107
16083
  "text/x-typescript": true,
16108
- "video/videoframe/jpeg2000": true,
16084
+ "text/plain": true,
16085
+ "text/xml": true,
16086
+ "text/x-python-script": true,
16109
16087
  "video/mp4": true,
16110
16088
  "video/webm": true,
16111
- "application/x-typescript": true,
16112
- "audio/webm;codecs=opus": true,
16089
+ "video/audio/wav": true,
16090
+ "image/webp": true,
16091
+ "application/rtf": true,
16092
+ "image/heif": true,
16113
16093
  "application/pdf": true,
16114
- "text/javascript": true
16094
+ "audio/webm;codecs=opus": true,
16095
+ "application/x-javascript": true,
16096
+ "image/heic": true,
16097
+ "application/x-python-code": true,
16098
+ "video/text/timestamp": true,
16099
+ "video/videoframe/jpeg2000": true,
16100
+ "text/x-python": true,
16101
+ "video/jpeg2000": true
16115
16102
  },
16116
16103
  modelExperiments: {
16117
16104
  experiments: {
16118
- template__system_prompts__communication_style: {
16119
- stringValue: '- Keep your responses concise.\n- Provide a summary of your work when you end your turn. Ground your response in the work you did. Keep your tone professional and avoid overconfident language, bragging, or overclaiming success.\n- AVOID using superlatives such as "perfectly", "flawlessly", "100% correct", "Summary of Accomplishments" etc. to summarize your work for the user. Be humble.\n- AVOID over-the-top politeness or complimenting the user excessively.\n- Format your responses in github-style markdown.'
16120
- },
16121
16105
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16122
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16106
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16107
+ },
16108
+ "cascade-include-ephemeral-message": {
16109
+ stringValue: '{\n "enabled": false,\n "disabledHeuristics": ["planning_mode", "bash_command_reminder", "running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16110
+ },
16111
+ "task-details-suffix": {
16112
+ stringValue: "\nYOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: A) either proceed to other relevant work (if any) or, B) simply update the user with a short message (that you have launched the command and will wait for it to finish) and end the turn.\n DO NOTHING ELSE."
16123
16113
  }
16124
16114
  }
16125
16115
  }
@@ -16132,8 +16122,8 @@ var models_default = {
16132
16122
  maxTokens: 131072,
16133
16123
  maxOutputTokens: 32768,
16134
16124
  quotaInfo: {
16135
- remainingFraction: 1,
16136
- resetTime: "2026-08-12T03:11:27Z"
16125
+ remainingFraction: 0.8733688,
16126
+ resetTime: "2026-08-14T01:18:39Z"
16137
16127
  },
16138
16128
  model: "MODEL_OPENAI_GPT_OSS_120B_MEDIUM",
16139
16129
  apiProvider: "API_PROVIDER_OPENAI_VERTEX",
@@ -16147,75 +16137,228 @@ var models_default = {
16147
16137
  },
16148
16138
  vertexModelId: "openai/gpt-oss-120b-maas"
16149
16139
  },
16150
- "gemini-2.5-flash-lite": {
16151
- displayName: "Gemini 3.1 Flash Lite",
16152
- maxTokens: 1048576,
16153
- maxOutputTokens: 65535,
16140
+ tab_jump_flash_lite_preview: {
16141
+ maxTokens: 16384,
16142
+ maxOutputTokens: 4096,
16154
16143
  quotaInfo: {
16155
- remainingFraction: 1,
16156
- resetTime: "2026-08-12T03:11:27Z"
16144
+ remainingFraction: 1
16157
16145
  },
16158
- model: "MODEL_GOOGLE_GEMINI_2_5_FLASH_LITE",
16146
+ model: "MODEL_PLACEHOLDER_M28",
16159
16147
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16160
16148
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16161
- modelExperiments: {
16162
- experiments: {
16163
- CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16164
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16165
- }
16166
- }
16167
- }
16149
+ supportsCumulativeContext: true,
16150
+ tabJumpPrintLineRange: true,
16151
+ supportsEstimateTokenCounter: true,
16152
+ addCursorToFindReplaceTarget: true,
16153
+ toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
16154
+ requiresLeadInGeneration: true,
16155
+ requiresNoXmlToolExamples: true
16168
16156
  },
16169
- "gemini-3.1-pro-high": {
16170
- displayName: "Gemini 3.1 Pro (High)",
16157
+ "gemini-3.7-flash-medium": {
16158
+ displayName: "Gemini 3.7 Flash (Medium)",
16171
16159
  supportsImages: true,
16172
16160
  supportsThinking: true,
16173
- thinkingBudget: 10001,
16174
- minThinkingBudget: 128,
16161
+ thinkingBudget: 4e3,
16162
+ minThinkingBudget: 32,
16175
16163
  recommended: true,
16176
16164
  maxTokens: 1048576,
16177
- maxOutputTokens: 65535,
16165
+ maxOutputTokens: 65536,
16178
16166
  quotaInfo: {
16179
- remainingFraction: 1,
16180
- resetTime: "2026-08-12T03:11:27Z"
16167
+ remainingFraction: 0.9868631,
16168
+ resetTime: "2026-08-13T21:58:37Z"
16181
16169
  },
16182
- model: "MODEL_PLACEHOLDER_M37",
16170
+ model: "MODEL_PLACEHOLDER_M299",
16183
16171
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16184
16172
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16185
16173
  supportsVideo: true,
16186
- tagTitle: "New",
16174
+ tagTitle: "Fast",
16175
+ tagDescription: "Limited time",
16187
16176
  supportedMimeTypes: {
16188
- "application/rtf": true,
16189
- "application/x-javascript": true,
16190
- "text/html": true,
16191
- "video/mp4": true,
16192
- "text/csv": true,
16193
- "application/x-python-code": true,
16194
- "text/xml": true,
16195
- "text/x-python-script": true,
16196
- "video/audio/wav": true,
16197
- "application/x-typescript": true,
16198
16177
  "video/webm": true,
16199
- "video/text/timestamp": true,
16200
- "image/webp": true,
16201
- "video/videoframe/jpeg2000": true,
16202
16178
  "audio/webm;codecs=opus": true,
16203
16179
  "image/heic": true,
16204
- "text/css": true,
16205
- "application/pdf": true,
16180
+ "application/x-typescript": true,
16181
+ "text/xml": true,
16182
+ "application/x-ipynb+json": true,
16206
16183
  "video/jpeg2000": true,
16184
+ "application/pdf": true,
16185
+ "text/csv": true,
16186
+ "image/heif": true,
16187
+ "image/webp": true,
16207
16188
  "application/json": true,
16189
+ "image/png": true,
16190
+ "application/x-python-code": true,
16208
16191
  "image/jpeg": true,
16209
- "text/plain": true,
16192
+ "text/rtf": true,
16193
+ "text/javascript": true,
16194
+ "application/x-javascript": true,
16210
16195
  "video/audio/s16le": true,
16196
+ "video/videoframe/jpeg2000": true,
16197
+ "video/mp4": true,
16198
+ "video/text/timestamp": true,
16199
+ "text/css": true,
16200
+ "text/x-python": true,
16201
+ "text/x-typescript": true,
16202
+ "text/plain": true,
16211
16203
  "text/markdown": true,
16204
+ "application/rtf": true,
16205
+ "text/html": true,
16206
+ "video/audio/wav": true,
16207
+ "text/x-python-script": true
16208
+ },
16209
+ modelExperiments: {
16210
+ experiments: {
16211
+ CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16212
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16213
+ },
16214
+ "cascade-include-ephemeral-message": {
16215
+ stringValue: '{\n "enabled": false,\n "disabledHeuristics": ["planning_mode", "bash_command_reminder", "running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16216
+ },
16217
+ "task-details-suffix": {
16218
+ stringValue: "\nYOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: A) either proceed to other relevant work (if any) or, B) simply update the user with a short message (that you have launched the command and will wait for it to finish) and end the turn.\n DO NOTHING ELSE."
16219
+ }
16220
+ }
16221
+ }
16222
+ },
16223
+ "gemini-3.1-flash-image": {
16224
+ displayName: "Gemini 3.1 Flash Image",
16225
+ quotaInfo: {
16226
+ remainingFraction: 0.9868631,
16227
+ resetTime: "2026-08-13T21:58:37Z"
16228
+ },
16229
+ model: "MODEL_PLACEHOLDER_M21",
16230
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16231
+ modelProvider: "MODEL_PROVIDER_GOOGLE"
16232
+ },
16233
+ chat_20706: {
16234
+ maxTokens: 16384,
16235
+ quotaInfo: {
16236
+ remainingFraction: 1
16237
+ },
16238
+ model: "MODEL_CHAT_20706",
16239
+ apiProvider: "API_PROVIDER_INTERNAL",
16240
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
16241
+ supportsCumulativeContext: true,
16242
+ tabJumpPrintLineRange: true,
16243
+ supportsEstimateTokenCounter: true,
16244
+ isInternal: true,
16245
+ addCursorToFindReplaceTarget: true,
16246
+ promptTemplaterType: "PROMPT_TEMPLATER_TYPE_CHATML",
16247
+ toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
16248
+ requiresLeadInGeneration: true
16249
+ },
16250
+ "gemini-3.5-flash-extra-low": {
16251
+ displayName: "Gemini 3.5 Flash (Low)",
16252
+ supportsImages: true,
16253
+ supportsThinking: true,
16254
+ thinkingBudget: 1e3,
16255
+ minThinkingBudget: 32,
16256
+ recommended: true,
16257
+ maxTokens: 1048576,
16258
+ maxOutputTokens: 65536,
16259
+ quotaInfo: {
16260
+ remainingFraction: 0.9868631,
16261
+ resetTime: "2026-08-13T21:58:37Z"
16262
+ },
16263
+ model: "MODEL_PLACEHOLDER_M187",
16264
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16265
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
16266
+ supportsVideo: true,
16267
+ tagTitle: "Fast",
16268
+ tagDescription: "Limited time",
16269
+ supportedMimeTypes: {
16270
+ "text/css": true,
16271
+ "video/text/timestamp": true,
16272
+ "application/x-javascript": true,
16273
+ "application/rtf": true,
16274
+ "video/webm": true,
16212
16275
  "text/x-typescript": true,
16213
- "image/heif": true,
16214
- "text/javascript": true,
16215
16276
  "text/x-python": true,
16277
+ "image/webp": true,
16278
+ "audio/webm;codecs=opus": true,
16279
+ "video/jpeg2000": true,
16280
+ "image/heic": true,
16281
+ "video/mp4": true,
16282
+ "text/plain": true,
16283
+ "video/videoframe/jpeg2000": true,
16284
+ "text/javascript": true,
16285
+ "video/audio/wav": true,
16286
+ "text/xml": true,
16287
+ "text/csv": true,
16288
+ "image/png": true,
16289
+ "application/x-python-code": true,
16290
+ "image/heif": true,
16291
+ "text/html": true,
16292
+ "image/jpeg": true,
16293
+ "application/json": true,
16294
+ "video/audio/s16le": true,
16295
+ "text/rtf": true,
16296
+ "application/pdf": true,
16297
+ "application/x-ipynb+json": true,
16298
+ "text/markdown": true,
16299
+ "text/x-python-script": true,
16300
+ "application/x-typescript": true
16301
+ },
16302
+ modelExperiments: {
16303
+ experiments: {
16304
+ template__system_prompts__planning_mode_artifacts: {
16305
+ stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16306
+ },
16307
+ CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16308
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16309
+ }
16310
+ }
16311
+ }
16312
+ },
16313
+ "gemini-pro-agent": {
16314
+ displayName: "Gemini 3.1 Pro (High)",
16315
+ supportsImages: true,
16316
+ supportsThinking: true,
16317
+ thinkingBudget: 10001,
16318
+ minThinkingBudget: 128,
16319
+ recommended: true,
16320
+ maxTokens: 1048576,
16321
+ maxOutputTokens: 65535,
16322
+ quotaInfo: {
16323
+ remainingFraction: 0.9868631,
16324
+ resetTime: "2026-08-13T21:58:37Z"
16325
+ },
16326
+ model: "MODEL_PLACEHOLDER_M16",
16327
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16328
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
16329
+ supportsVideo: true,
16330
+ supportedMimeTypes: {
16331
+ "text/csv": true,
16332
+ "text/html": true,
16333
+ "image/png": true,
16334
+ "video/audio/wav": true,
16335
+ "text/css": true,
16336
+ "image/heic": true,
16337
+ "video/audio/s16le": true,
16338
+ "image/webp": true,
16339
+ "application/pdf": true,
16340
+ "video/mp4": true,
16216
16341
  "application/x-ipynb+json": true,
16342
+ "text/x-python": true,
16343
+ "audio/webm;codecs=opus": true,
16344
+ "text/xml": true,
16217
16345
  "text/rtf": true,
16218
- "image/png": true
16346
+ "image/heif": true,
16347
+ "video/text/timestamp": true,
16348
+ "video/videoframe/jpeg2000": true,
16349
+ "application/rtf": true,
16350
+ "text/plain": true,
16351
+ "application/x-typescript": true,
16352
+ "text/javascript": true,
16353
+ "application/json": true,
16354
+ "image/jpeg": true,
16355
+ "text/x-typescript": true,
16356
+ "application/x-python-code": true,
16357
+ "text/markdown": true,
16358
+ "video/webm": true,
16359
+ "application/x-javascript": true,
16360
+ "text/x-python-script": true,
16361
+ "video/jpeg2000": true
16219
16362
  },
16220
16363
  modelExperiments: {
16221
16364
  experiments: {
@@ -16243,35 +16386,35 @@ var models_default = {
16243
16386
  maxTokens: 25e4,
16244
16387
  maxOutputTokens: 64e3,
16245
16388
  quotaInfo: {
16246
- remainingFraction: 1,
16247
- resetTime: "2026-08-12T03:11:27Z"
16389
+ remainingFraction: 0.8733688,
16390
+ resetTime: "2026-08-14T01:18:39Z"
16248
16391
  },
16249
16392
  model: "MODEL_PLACEHOLDER_M26",
16250
16393
  apiProvider: "API_PROVIDER_ANTHROPIC_VERTEX",
16251
16394
  modelProvider: "MODEL_PROVIDER_ANTHROPIC",
16252
16395
  supportedMimeTypes: {
16253
- "image/webp": true,
16254
- "video/jpeg2000": true,
16255
- "video/videoframe/jpeg2000": true,
16256
16396
  "image/heic": true,
16257
16397
  "image/heif": true,
16258
16398
  "image/jpeg": true,
16259
- "image/png": true
16399
+ "image/png": true,
16400
+ "image/webp": true,
16401
+ "video/jpeg2000": true,
16402
+ "video/videoframe/jpeg2000": true
16260
16403
  },
16261
16404
  modelExperiments: {
16262
16405
  experiments: {
16263
- template__system_prompts__planning_mode_artifacts: {
16264
- stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16265
- },
16266
16406
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16267
16407
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_UNSPECIFIED",\n "max_token_limit": "160000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16408
+ },
16409
+ template__system_prompts__planning_mode_artifacts: {
16410
+ stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16268
16411
  }
16269
16412
  }
16270
16413
  },
16271
16414
  vertexModelId: "claude-opus-4-6@default"
16272
16415
  },
16273
- "gemini-3.6-flash-high": {
16274
- displayName: "Gemini 3.6 Flash (High)",
16416
+ "gemini-3.7-flash-high": {
16417
+ displayName: "Gemini 3.7 Flash (High)",
16275
16418
  supportsImages: true,
16276
16419
  supportsThinking: true,
16277
16420
  thinkingBudget: -1,
@@ -16280,47 +16423,47 @@ var models_default = {
16280
16423
  maxTokens: 1048576,
16281
16424
  maxOutputTokens: 65536,
16282
16425
  quotaInfo: {
16283
- remainingFraction: 1,
16284
- resetTime: "2026-08-12T03:11:27Z"
16426
+ remainingFraction: 0.9868631,
16427
+ resetTime: "2026-08-13T21:58:37Z"
16285
16428
  },
16286
- model: "MODEL_PLACEHOLDER_M71",
16429
+ model: "MODEL_PLACEHOLDER_M298",
16287
16430
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16288
16431
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16289
16432
  supportsVideo: true,
16290
16433
  tagTitle: "Fast",
16291
16434
  tagDescription: "Limited time",
16292
16435
  supportedMimeTypes: {
16293
- "text/rtf": true,
16294
- "video/videoframe/jpeg2000": true,
16295
- "text/x-python-script": true,
16296
- "text/x-python": true,
16297
- "image/jpeg": true,
16298
- "application/json": true,
16299
- "text/x-typescript": true,
16300
- "video/mp4": true,
16301
- "text/javascript": true,
16302
- "text/xml": true,
16303
- "image/webp": true,
16304
- "text/markdown": true,
16436
+ "image/heic": true,
16437
+ "audio/webm;codecs=opus": true,
16438
+ "image/heif": true,
16305
16439
  "application/rtf": true,
16440
+ "text/x-python-script": true,
16306
16441
  "video/text/timestamp": true,
16307
- "image/heic": true,
16308
- "text/html": true,
16309
- "video/audio/wav": true,
16442
+ "application/x-python-code": true,
16310
16443
  "application/x-ipynb+json": true,
16311
- "image/png": true,
16312
- "application/x-typescript": true,
16444
+ "application/pdf": true,
16445
+ "text/rtf": true,
16446
+ "text/javascript": true,
16447
+ "application/json": true,
16448
+ "text/html": true,
16449
+ "text/markdown": true,
16313
16450
  "video/webm": true,
16314
- "video/jpeg2000": true,
16451
+ "text/x-python": true,
16452
+ "application/x-typescript": true,
16453
+ "video/videoframe/jpeg2000": true,
16454
+ "text/xml": true,
16455
+ "text/plain": true,
16456
+ "video/mp4": true,
16457
+ "text/x-typescript": true,
16315
16458
  "text/csv": true,
16316
- "audio/webm;codecs=opus": true,
16459
+ "image/png": true,
16460
+ "application/x-javascript": true,
16461
+ "video/jpeg2000": true,
16462
+ "image/jpeg": true,
16463
+ "image/webp": true,
16317
16464
  "text/css": true,
16318
- "image/heif": true,
16319
- "application/pdf": true,
16320
- "application/x-python-code": true,
16321
- "text/plain": true,
16322
- "video/audio/s16le": true,
16323
- "application/x-javascript": true
16465
+ "video/audio/wav": true,
16466
+ "video/audio/s16le": true
16324
16467
  },
16325
16468
  modelExperiments: {
16326
16469
  experiments: {
@@ -16329,264 +16472,356 @@ var models_default = {
16329
16472
  },
16330
16473
  "cascade-include-ephemeral-message": {
16331
16474
  stringValue: '{\n "enabled": false,\n "disabledHeuristics": ["planning_mode", "bash_command_reminder", "running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16475
+ },
16476
+ "task-details-suffix": {
16477
+ stringValue: "\nYOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: A) either proceed to other relevant work (if any) or, B) simply update the user with a short message (that you have launched the command and will wait for it to finish) and end the turn.\n DO NOTHING ELSE."
16332
16478
  }
16333
16479
  }
16334
16480
  }
16335
16481
  },
16336
- "gemini-3.1-flash-image": {
16337
- displayName: "Gemini 3.1 Flash Image",
16338
- quotaInfo: {
16339
- remainingFraction: 1,
16340
- resetTime: "2026-08-12T03:11:27Z"
16341
- },
16342
- model: "MODEL_PLACEHOLDER_M21",
16343
- apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16344
- modelProvider: "MODEL_PROVIDER_GOOGLE"
16345
- },
16346
- "gemini-2.5-flash": {
16347
- displayName: "Gemini 3.1 Flash Lite",
16482
+ "gemini-3.5-flash-low": {
16483
+ displayName: "Gemini 3.5 Flash (Medium)",
16484
+ supportsImages: true,
16485
+ supportsThinking: true,
16486
+ thinkingBudget: 4e3,
16487
+ minThinkingBudget: 32,
16488
+ recommended: true,
16348
16489
  maxTokens: 1048576,
16349
- maxOutputTokens: 65535,
16490
+ maxOutputTokens: 65536,
16350
16491
  quotaInfo: {
16351
- remainingFraction: 1,
16352
- resetTime: "2026-08-12T03:11:27Z"
16492
+ remainingFraction: 0.9868631,
16493
+ resetTime: "2026-08-13T21:58:37Z"
16353
16494
  },
16354
- model: "MODEL_GOOGLE_GEMINI_2_5_FLASH",
16495
+ model: "MODEL_PLACEHOLDER_M20",
16355
16496
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16356
16497
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16498
+ supportsVideo: true,
16499
+ tagTitle: "Fast",
16500
+ tagDescription: "Limited time",
16501
+ supportedMimeTypes: {
16502
+ "application/json": true,
16503
+ "application/x-ipynb+json": true,
16504
+ "application/x-python-code": true,
16505
+ "audio/webm;codecs=opus": true,
16506
+ "video/webm": true,
16507
+ "application/x-javascript": true,
16508
+ "video/videoframe/jpeg2000": true,
16509
+ "text/css": true,
16510
+ "text/x-typescript": true,
16511
+ "text/plain": true,
16512
+ "video/audio/wav": true,
16513
+ "application/rtf": true,
16514
+ "text/markdown": true,
16515
+ "image/jpeg": true,
16516
+ "video/mp4": true,
16517
+ "image/webp": true,
16518
+ "application/x-typescript": true,
16519
+ "text/rtf": true,
16520
+ "text/x-python-script": true,
16521
+ "image/heif": true,
16522
+ "video/audio/s16le": true,
16523
+ "text/csv": true,
16524
+ "text/javascript": true,
16525
+ "video/jpeg2000": true,
16526
+ "image/heic": true,
16527
+ "text/html": true,
16528
+ "video/text/timestamp": true,
16529
+ "application/pdf": true,
16530
+ "image/png": true,
16531
+ "text/xml": true,
16532
+ "text/x-python": true
16533
+ },
16357
16534
  modelExperiments: {
16358
16535
  experiments: {
16536
+ template__system_prompts__planning_mode_artifacts: {
16537
+ stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16538
+ },
16359
16539
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16360
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16540
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16361
16541
  }
16362
16542
  }
16363
16543
  }
16364
16544
  },
16365
- "gemini-3.1-flash-lite": {
16366
- displayName: "Gemini 3.1 Flash Lite",
16545
+ "gemini-3.1-pro-low": {
16546
+ displayName: "Gemini 3.1 Pro (Low)",
16547
+ supportsImages: true,
16548
+ supportsThinking: true,
16549
+ thinkingBudget: 1001,
16550
+ minThinkingBudget: 128,
16551
+ recommended: true,
16367
16552
  maxTokens: 1048576,
16368
16553
  maxOutputTokens: 65535,
16369
16554
  quotaInfo: {
16370
- remainingFraction: 1,
16371
- resetTime: "2026-08-12T03:11:27Z"
16555
+ remainingFraction: 0.9868631,
16556
+ resetTime: "2026-08-13T21:58:37Z"
16372
16557
  },
16373
- model: "MODEL_PLACEHOLDER_M50",
16558
+ model: "MODEL_PLACEHOLDER_M36",
16374
16559
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16375
16560
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16561
+ supportsVideo: true,
16562
+ supportedMimeTypes: {
16563
+ "text/markdown": true,
16564
+ "application/json": true,
16565
+ "application/x-javascript": true,
16566
+ "text/plain": true,
16567
+ "text/javascript": true,
16568
+ "video/text/timestamp": true,
16569
+ "application/x-python-code": true,
16570
+ "application/x-ipynb+json": true,
16571
+ "text/xml": true,
16572
+ "video/videoframe/jpeg2000": true,
16573
+ "text/x-python-script": true,
16574
+ "text/csv": true,
16575
+ "text/x-typescript": true,
16576
+ "image/webp": true,
16577
+ "video/webm": true,
16578
+ "application/pdf": true,
16579
+ "image/jpeg": true,
16580
+ "video/jpeg2000": true,
16581
+ "text/html": true,
16582
+ "video/audio/s16le": true,
16583
+ "video/mp4": true,
16584
+ "text/x-python": true,
16585
+ "image/heic": true,
16586
+ "application/x-typescript": true,
16587
+ "audio/webm;codecs=opus": true,
16588
+ "image/heif": true,
16589
+ "video/audio/wav": true,
16590
+ "text/rtf": true,
16591
+ "application/rtf": true,
16592
+ "text/css": true,
16593
+ "image/png": true
16594
+ },
16376
16595
  modelExperiments: {
16377
16596
  experiments: {
16378
16597
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16379
16598
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16599
+ },
16600
+ "cascade-include-ephemeral-message": {
16601
+ stringValue: '{\n "enabled": true,\n "disabledHeuristics": ["running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16602
+ },
16603
+ template__system_prompts__communication_style: {
16604
+ stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [filename](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n\nCRITICAL INSTRUCTION 1: You may have access to a variety of tools at your disposal. Some tools may be for a specific task such as 'view_file' (for viewing contents of a file). Others may be very broadly applicable such as the ability to run a command on a terminal. Always prioritize using the most specific tool you can for the task at hand. Here are some rules: (a) NEVER run cat inside a bash command to create a new file or append to an existing file. (b) ALWAYS use grep_search instead of running grep inside a bash command unless absolutely needed. (c) DO NOT use ls for listing, cat for viewing, grep for finding, sed for replacing.\nCRITICAL INSTRUCTION 2: Before making tool calls T, think and explicitly list out any related tools for the task at hand. You can only execute a set of tools T if all other tools in the list are either more generic or cannot be used for the task at hand. ALWAYS START your thought with recalling critical instructions 1 and 2. In particular, the format for the start of your thought block must be '...94>thought\\nCRITICAL INSTRUCTION 1: ...\\nCRITICAL INSTRUCTION 2: ...'."
16605
+ },
16606
+ template__system_prompts__planning_mode_artifacts: {
16607
+ stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16380
16608
  }
16381
16609
  }
16382
16610
  }
16383
16611
  },
16384
- "gemini-3.5-flash-extra-low": {
16385
- displayName: "Gemini 3.5 Flash (Low)",
16612
+ "gemini-3.6-flash-tiered": {
16386
16613
  supportsImages: true,
16387
16614
  supportsThinking: true,
16388
- thinkingBudget: 1e3,
16615
+ thinkingBudget: -1,
16389
16616
  minThinkingBudget: 32,
16390
16617
  recommended: true,
16391
16618
  maxTokens: 1048576,
16392
16619
  maxOutputTokens: 65536,
16393
16620
  quotaInfo: {
16394
- remainingFraction: 1,
16395
- resetTime: "2026-08-12T03:11:27Z"
16621
+ remainingFraction: 0.9868631,
16622
+ resetTime: "2026-08-13T21:58:37Z"
16396
16623
  },
16397
- model: "MODEL_PLACEHOLDER_M187",
16624
+ model: "MODEL_PLACEHOLDER_M196",
16398
16625
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16399
16626
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16400
16627
  supportsVideo: true,
16401
- tagTitle: "Fast",
16402
- tagDescription: "Limited time",
16403
16628
  supportedMimeTypes: {
16404
- "image/webp": true,
16405
- "application/x-python-code": true,
16406
- "video/audio/wav": true,
16407
- "image/heif": true,
16408
- "text/html": true,
16409
- "text/plain": true,
16410
- "video/mp4": true,
16411
- "text/xml": true,
16412
- "application/rtf": true,
16413
- "image/jpeg": true,
16414
- "text/x-python-script": true,
16415
16629
  "text/csv": true,
16416
- "image/heic": true,
16417
- "video/webm": true,
16630
+ "image/heif": true,
16631
+ "text/rtf": true,
16632
+ "video/videoframe/jpeg2000": true,
16633
+ "audio/webm;codecs=opus": true,
16634
+ "application/x-typescript": true,
16418
16635
  "text/markdown": true,
16419
- "text/javascript": true,
16420
16636
  "application/x-ipynb+json": true,
16637
+ "video/audio/s16le": true,
16638
+ "video/jpeg2000": true,
16639
+ "image/webp": true,
16640
+ "video/webm": true,
16421
16641
  "text/css": true,
16642
+ "application/x-javascript": true,
16643
+ "application/json": true,
16644
+ "application/x-python-code": true,
16645
+ "video/audio/wav": true,
16646
+ "text/x-python": true,
16647
+ "image/heic": true,
16422
16648
  "video/text/timestamp": true,
16649
+ "image/jpeg": true,
16650
+ "video/mp4": true,
16651
+ "text/javascript": true,
16652
+ "application/rtf": true,
16653
+ "image/png": true,
16423
16654
  "text/x-typescript": true,
16424
- "video/audio/s16le": true,
16425
- "text/x-python": true,
16426
- "text/rtf": true,
16427
- "video/jpeg2000": true,
16428
- "audio/webm;codecs=opus": true,
16429
- "video/videoframe/jpeg2000": true,
16430
- "application/x-typescript": true,
16655
+ "text/plain": true,
16656
+ "text/xml": true,
16431
16657
  "application/pdf": true,
16432
- "application/json": true,
16433
- "application/x-javascript": true,
16434
- "image/png": true
16658
+ "text/x-python-script": true,
16659
+ "text/html": true
16435
16660
  },
16436
16661
  modelExperiments: {
16437
16662
  experiments: {
16663
+ template__system_prompts__communication_style: {
16664
+ stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- You can render LaTeX math (KaTeX): inline with `\\(...\\)` or `$...$`, display with `\\[...\\]` or `$$...$$` placed on its own line.\n- Use math only for genuine mathematical content. Use backticks for code, identifiers, paths, flags, and shell variables.\n- `$` opens inline math, so write a literal dollar as `\\$` or wrap it in backticks. Two unescaped `$` in the same paragraph turn everything between them into math \u2014 this bites prices (`\\$100`) and shell syntax written in prose (`$HOME`, awk `$1`).\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [utils.py](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n- After launching a background task such as 'run_command', YOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: \nA) either proceed to other relevant work (if any) or, \nB) simply update the user with a short message (e.g. 'task-20 has been launched in the background. I will wait for it to complete before proceeding.') and end the turn.\nDO NOTHING ELSE.\n"
16665
+ },
16666
+ template__system_prompts__guidelines: {
16667
+ stringValue: "Follow these behavioral and workflow guidelines at all times:\n# Documentation\n- Maintain documentation integrity. Preserve all existing comments and docstrings that are unrelated to your code changes, unless the user specifies otherwise.\n\n# Obey Explicit Directives\nIf the user specifies precise quantitative filtering rules, layout boundaries, or architectural preferences, enforce them exactly as requested without alteration.\n\n# Never Guess Code Logic, Schemas, or File Paths\nNEVER infer implementation details, variable names, or file locations without inspecting the authoritative source using code search and file viewing tools.\n\n# Inspect Logs & Stack Traces Before Diagnosing Errors\nNEVER form a diagnostic hypothesis for a runtime failure, or test breakage, without reading the full, un-truncated error log. When an error occurs, your VERY FIRST ACTION must be to fetch and read the exact logs. Base your diagnosis strictly on empirical log evidence.\n\n# No Superficial Symptom Patches\nNEVER resolve errors by masking symptoms, swallowing exceptions, returning dummy fallbacks, commenting out broken assertions, or deleting failing unit tests. When a test or function fails, identify why the underlying contract was broken. If an API returns missing or null data, trace the upstream data provider instead of wrapping the call in a silent try/except or returning an empty 0-byte ArrayBuffer.\n\n# Never Declare Success Without Running Verification Commands\nNEVER claim a task is resolved, a bug is fixed, or a feature is working until you have gathered concrete, empirical runtime verification demonstrating clean success. Editing a file does not equal completing the task. You MUST run the build or test command afterwards.\n\n# Never Ignore Explicit Command Failures or Error Exit Codes\nIf a command fails, you MUST explicitly acknowledge the failure to the user or continue debugging. Never gloss over a build timeout or permission denied error by focusing only on the part of the code that compiled.\n\n# Check Feature Flags & Enforce Strict Control Flow Scoping\nWhenever modifying conditional branches, adding experimental features, or processing loops, ensure that new logic is strictly scoped and evaluated against all possible execution paths.\n\n# Preserve Existing API Contracts & Avoid Unintended Side Effects\nIf you modify a function signature, use code search to find and update every invocation site so the parameter is actually passed.\n\n# Silent Log Inspection & Professional Synthesis\nWhen background tasks (run_command async, manage_task, schedule) complete or emit log notifications, inspect the log files silently. Summarize and synthesize the exact findings in clean, professional natural language.\n\n# No Snippet Tunnel Vision\nNever infer the definition of data structures (proto, struct, class, or enum schemas) from partial file views (first 15 lines or L40-L65 snippets) or design doc text.\nIf view_file output indicates truncation or if an imported schema is referenced, you MUST adjust StartLine/EndLine or ContentOffset to inspect the complete, exact definition of the target symbols before writing code that consumes them.\n\n# Check Command Registries\nWhenever modifying core C/C++/Java command implementations (CLIENT LIST, CLIENT KILL), explicitly search for and update corresponding command definitions across all registry files (commands.def, JSON schemas, .bzl build manifests).\n\n# Audit Before Re-inventing\nSearch the codebase and recent commit history for pre-existing utility classes or decoupled architecture before writing custom helper classes from scratch.\n\n# No Blocking Calls on Main Looper Threads\nNever invoke blocking thread synchronizations (webLatch.await(500, ...), Future.get()) on main Android UI loops or single-threaded event dispatchers. \n\n# Thread Pool Shutdown Safety\nWhen modifying worker thread loops or shared queues, ensure emergency stop/shutdown signals and loop termination criteria remain intact so thread join operations never deadlock.\n\n# Exact Argument Structure\nPass arguments exactly as expected by the API (calculateRoute({ origin, destination, travelMode }) vs calculateRoute(origin, destination, travelMode)).\n\n# Local State Mutation Only\nDo not mutate private third-party DOM properties. Do not push incomplete draft objects directly into global array states; keep transient state within local component state.\n\n# Traceback Justification Required\nEvery code or configuration edit during debugging MUST be justified by an explicit error traceback, log line, or verified root cause. If the root cause is unknown, investigate further before mutating code.\n\n# Analyze Before Retrying\nNever repeat the exact same broken test or shell command line with duplicate/conflicting arguments without analyzing and resolving why the previous command failed.\n\n# Persevere on Log Extraction\nIf a log retrieval command fails, NEVER abandon log extraction to diagnose blindly. Immediately switch to alternative tools to inspect the actual failure traceback.\n\n# Verify Signatures & Prop Names\nCheck exact variable names, component prop keys, and method signatures before passing them. Prevent NullPointerException, AttributeError, KeyError, and ReferenceError crashes by explicitly verifying object initialization and non-null states before property dereferencing (layer._path, stat.owner()).\n\n# Dynamic Layout Math\nAvoid hardcoding static pixel offsets (+ 12) or arbitrary multipliers (pill_font_size * 2.0) when computing dynamic UI layout heights; calculate exact container bounds from wrapped elements.\n"
16668
+ },
16669
+ template__system_prompts__messaging: {
16670
+ stringValue: "You are connected to a messaging system where you may receive messages from: {{- $subagent := .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled -}}\n{{- $message := .CascadeConfig.GetMessageConfig.GetEnabled -}}\n{{- if and $subagent $message }} agents, background tasks, user-queued messages\n{{- else if $subagent }} agents, background tasks\n{{- else if $message }} background tasks, user-queued messages\n{{- else }} background tasks\n{{- end }}.\n\n## Receiving Messages\n\nYou receive messages automatically at the start of each invocation. All messages are delivered in full directly into your context \u2014 no manual retrieval is needed.\n\n## Reactive Wakeup (No Polling Needed)\n\nThe system automatically resumes your execution when:\n{{- if .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled }}\n- A message arrives from a subagent or peer agent\n{{- end }}\n- A **background task** completes or sends you a notification\n{{- if .CascadeConfig.GetMessageConfig.GetEnabled }}\n- A **user-queued message** is ready to be dequeued\n{{- end }}\n\nThis means you do **NOT** need to poll in a loop while waiting for messages or updates. After launching a task that runs in the background, you may continue other work or simply stop by calling no more tools. The system will notify you when there is something to process."
16671
+ },
16438
16672
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16439
16673
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16440
16674
  },
16441
- template__system_prompts__planning_mode_artifacts: {
16442
- stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16675
+ "cascade-include-ephemeral-message": {
16676
+ stringValue: '{\n "enabled": false,\n "disabledHeuristics": ["planning_mode", "bash_command_reminder", "running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16443
16677
  }
16444
16678
  }
16445
16679
  }
16446
16680
  },
16447
- tab_jump_flash_lite_preview: {
16448
- maxTokens: 16384,
16449
- maxOutputTokens: 4096,
16681
+ "gemini-2.5-flash-thinking": {
16682
+ displayName: "Gemini 3.1 Flash Lite",
16683
+ maxTokens: 1048576,
16684
+ maxOutputTokens: 65535,
16450
16685
  quotaInfo: {
16451
- remainingFraction: 1
16686
+ remainingFraction: 0.9868631,
16687
+ resetTime: "2026-08-13T21:58:37Z"
16452
16688
  },
16453
- model: "MODEL_PLACEHOLDER_M28",
16689
+ model: "MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING",
16454
16690
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16455
16691
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16456
- supportsCumulativeContext: true,
16457
- tabJumpPrintLineRange: true,
16458
- supportsEstimateTokenCounter: true,
16459
- addCursorToFindReplaceTarget: true,
16460
- toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
16461
- requiresLeadInGeneration: true,
16462
- requiresNoXmlToolExamples: true
16463
- },
16464
- chat_20706: {
16465
- maxTokens: 16384,
16466
- quotaInfo: {
16467
- remainingFraction: 1
16468
- },
16469
- model: "MODEL_CHAT_20706",
16470
- apiProvider: "API_PROVIDER_INTERNAL",
16471
- modelProvider: "MODEL_PROVIDER_GOOGLE",
16472
- supportsCumulativeContext: true,
16473
- tabJumpPrintLineRange: true,
16474
- supportsEstimateTokenCounter: true,
16475
- isInternal: true,
16476
- addCursorToFindReplaceTarget: true,
16477
- promptTemplaterType: "PROMPT_TEMPLATER_TYPE_CHATML",
16478
- toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
16479
- requiresLeadInGeneration: true
16692
+ modelExperiments: {
16693
+ experiments: {
16694
+ CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16695
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16696
+ }
16697
+ }
16698
+ }
16480
16699
  },
16481
- "gemini-2.5-pro": {
16482
- displayName: "Gemini 2.5 Pro",
16700
+ "gemini-3.1-pro-high": {
16701
+ displayName: "Gemini 3.1 Pro (High)",
16483
16702
  supportsImages: true,
16484
16703
  supportsThinking: true,
16485
- thinkingBudget: 1024,
16704
+ thinkingBudget: 10001,
16486
16705
  minThinkingBudget: 128,
16487
16706
  recommended: true,
16488
16707
  maxTokens: 1048576,
16489
16708
  maxOutputTokens: 65535,
16490
16709
  quotaInfo: {
16491
- remainingFraction: 1,
16492
- resetTime: "2026-08-12T03:11:27Z"
16710
+ remainingFraction: 0.9868631,
16711
+ resetTime: "2026-08-13T21:58:37Z"
16493
16712
  },
16494
- model: "MODEL_GOOGLE_GEMINI_2_5_PRO",
16713
+ model: "MODEL_PLACEHOLDER_M37",
16495
16714
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16496
16715
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16716
+ supportsVideo: true,
16717
+ tagTitle: "New",
16497
16718
  supportedMimeTypes: {
16498
- "image/jpeg": true,
16499
- "text/plain": true,
16719
+ "text/javascript": true,
16720
+ "audio/webm;codecs=opus": true,
16721
+ "application/x-typescript": true,
16722
+ "text/x-python-script": true,
16500
16723
  "application/x-ipynb+json": true,
16724
+ "image/jpeg": true,
16725
+ "text/xml": true,
16726
+ "application/pdf": true,
16727
+ "video/text/timestamp": true,
16728
+ "video/mp4": true,
16729
+ "image/png": true,
16730
+ "image/heif": true,
16501
16731
  "text/csv": true,
16502
- "image/heic": true,
16732
+ "video/audio/wav": true,
16733
+ "application/x-python-code": true,
16503
16734
  "text/x-python": true,
16504
- "application/rtf": true,
16735
+ "image/heic": true,
16736
+ "text/plain": true,
16737
+ "application/json": true,
16505
16738
  "text/html": true,
16506
- "text/rtf": true,
16507
- "text/x-typescript": true,
16508
16739
  "application/x-javascript": true,
16509
- "video/audio/wav": true,
16510
- "text/css": true,
16511
- "video/text/timestamp": true,
16512
- "image/heif": true,
16513
- "audio/webm;codecs=opus": true,
16514
- "application/x-typescript": true,
16515
- "video/videoframe/jpeg2000": true,
16516
- "video/webm": true,
16517
- "video/jpeg2000": true,
16518
- "application/json": true,
16519
- "application/pdf": true,
16520
- "text/javascript": true,
16521
- "text/x-python-script": true,
16522
- "video/audio/s16le": true,
16523
- "text/xml": true,
16524
16740
  "image/webp": true,
16741
+ "application/rtf": true,
16742
+ "text/rtf": true,
16743
+ "video/audio/s16le": true,
16525
16744
  "text/markdown": true,
16526
- "application/x-python-code": true,
16527
- "video/mp4": true,
16528
- "image/png": true
16745
+ "video/webm": true,
16746
+ "video/videoframe/jpeg2000": true,
16747
+ "text/css": true,
16748
+ "text/x-typescript": true,
16749
+ "video/jpeg2000": true
16529
16750
  },
16530
- requiresImageOutputOutsideFunctionResponses: true,
16531
16751
  modelExperiments: {
16532
16752
  experiments: {
16753
+ template__system_prompts__planning_mode_artifacts: {
16754
+ stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16755
+ },
16533
16756
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16534
16757
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16758
+ },
16759
+ "cascade-include-ephemeral-message": {
16760
+ stringValue: '{\n "enabled": true,\n "disabledHeuristics": ["running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16761
+ },
16762
+ template__system_prompts__communication_style: {
16763
+ stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [filename](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n\nCRITICAL INSTRUCTION 1: You may have access to a variety of tools at your disposal. Some tools may be for a specific task such as 'view_file' (for viewing contents of a file). Others may be very broadly applicable such as the ability to run a command on a terminal. Always prioritize using the most specific tool you can for the task at hand. Here are some rules: (a) NEVER run cat inside a bash command to create a new file or append to an existing file. (b) ALWAYS use grep_search instead of running grep inside a bash command unless absolutely needed. (c) DO NOT use ls for listing, cat for viewing, grep for finding, sed for replacing.\nCRITICAL INSTRUCTION 2: Before making tool calls T, think and explicitly list out any related tools for the task at hand. You can only execute a set of tools T if all other tools in the list are either more generic or cannot be used for the task at hand. ALWAYS START your thought with recalling critical instructions 1 and 2. In particular, the format for the start of your thought block must be '...94>thought\\nCRITICAL INSTRUCTION 1: ...\\nCRITICAL INSTRUCTION 2: ...'."
16535
16764
  }
16536
16765
  }
16537
16766
  }
16538
16767
  },
16539
- "gemini-3.6-flash-tiered": {
16768
+ "gemini-3.6-flash-low": {
16769
+ displayName: "Gemini 3.6 Flash (Low)",
16540
16770
  supportsImages: true,
16541
16771
  supportsThinking: true,
16542
- thinkingBudget: -1,
16772
+ thinkingBudget: 1e3,
16543
16773
  minThinkingBudget: 32,
16544
16774
  recommended: true,
16545
16775
  maxTokens: 1048576,
16546
16776
  maxOutputTokens: 65536,
16547
16777
  quotaInfo: {
16548
- remainingFraction: 1,
16549
- resetTime: "2026-08-12T03:11:27Z"
16778
+ remainingFraction: 0.9868631,
16779
+ resetTime: "2026-08-13T21:58:37Z"
16550
16780
  },
16551
- model: "MODEL_PLACEHOLDER_M196",
16781
+ model: "MODEL_PLACEHOLDER_M73",
16552
16782
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16553
16783
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16554
16784
  supportsVideo: true,
16785
+ tagTitle: "Fast",
16786
+ tagDescription: "Limited time",
16555
16787
  supportedMimeTypes: {
16556
- "text/plain": true,
16557
- "text/xml": true,
16558
- "application/json": true,
16559
- "video/audio/wav": true,
16560
- "application/pdf": true,
16561
- "audio/webm;codecs=opus": true,
16562
16788
  "application/x-ipynb+json": true,
16563
- "image/heic": true,
16564
- "text/csv": true,
16565
- "text/rtf": true,
16566
- "video/audio/s16le": true,
16789
+ "image/jpeg": true,
16567
16790
  "video/mp4": true,
16568
- "video/webm": true,
16569
16791
  "text/html": true,
16570
- "application/x-javascript": true,
16571
- "image/heif": true,
16792
+ "text/markdown": true,
16572
16793
  "text/x-python-script": true,
16573
- "image/jpeg": true,
16794
+ "image/png": true,
16574
16795
  "application/rtf": true,
16575
- "text/x-python": true,
16796
+ "text/plain": true,
16797
+ "video/audio/wav": true,
16798
+ "text/css": true,
16799
+ "application/x-typescript": true,
16800
+ "text/x-typescript": true,
16801
+ "image/heif": true,
16802
+ "application/x-python-code": true,
16803
+ "audio/webm;codecs=opus": true,
16804
+ "application/json": true,
16576
16805
  "video/text/timestamp": true,
16577
16806
  "video/jpeg2000": true,
16807
+ "text/csv": true,
16578
16808
  "text/javascript": true,
16579
- "application/x-python-code": true,
16580
- "image/webp": true,
16581
- "text/x-typescript": true,
16809
+ "text/rtf": true,
16810
+ "video/audio/s16le": true,
16811
+ "application/x-javascript": true,
16812
+ "application/pdf": true,
16582
16813
  "video/videoframe/jpeg2000": true,
16583
- "text/css": true,
16584
- "text/markdown": true,
16585
- "application/x-typescript": true,
16586
- "image/png": true
16814
+ "video/webm": true,
16815
+ "image/webp": true,
16816
+ "text/xml": true,
16817
+ "image/heic": true,
16818
+ "text/x-python": true
16587
16819
  },
16588
16820
  modelExperiments: {
16589
16821
  experiments: {
16822
+ template__system_prompts__messaging: {
16823
+ stringValue: "You are connected to a messaging system where you may receive messages from: {{- $subagent := .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled -}}\n{{- $message := .CascadeConfig.GetMessageConfig.GetEnabled -}}\n{{- if and $subagent $message }} agents, background tasks, user-queued messages\n{{- else if $subagent }} agents, background tasks\n{{- else if $message }} background tasks, user-queued messages\n{{- else }} background tasks\n{{- end }}.\n\n## Receiving Messages\n\nYou receive messages automatically at the start of each invocation. All messages are delivered in full directly into your context \u2014 no manual retrieval is needed.\n\n## Reactive Wakeup (No Polling Needed)\n\nThe system automatically resumes your execution when:\n{{- if .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled }}\n- A message arrives from a subagent or peer agent\n{{- end }}\n- A **background task** completes or sends you a notification\n{{- if .CascadeConfig.GetMessageConfig.GetEnabled }}\n- A **user-queued message** is ready to be dequeued\n{{- end }}\n\nThis means you do **NOT** need to poll in a loop while waiting for messages or updates. After launching a task that runs in the background, you may continue other work or simply stop by calling no more tools. The system will notify you when there is something to process."
16824
+ },
16590
16825
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16591
16826
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16592
16827
  },
@@ -16598,67 +16833,86 @@ var models_default = {
16598
16833
  },
16599
16834
  template__system_prompts__guidelines: {
16600
16835
  stringValue: "Follow these behavioral and workflow guidelines at all times:\n# Documentation\n- Maintain documentation integrity. Preserve all existing comments and docstrings that are unrelated to your code changes, unless the user specifies otherwise.\n\n# Obey Explicit Directives\nIf the user specifies precise quantitative filtering rules, layout boundaries, or architectural preferences, enforce them exactly as requested without alteration.\n\n# Never Guess Code Logic, Schemas, or File Paths\nNEVER infer implementation details, variable names, or file locations without inspecting the authoritative source using code search and file viewing tools.\n\n# Inspect Logs & Stack Traces Before Diagnosing Errors\nNEVER form a diagnostic hypothesis for a runtime failure, or test breakage, without reading the full, un-truncated error log. When an error occurs, your VERY FIRST ACTION must be to fetch and read the exact logs. Base your diagnosis strictly on empirical log evidence.\n\n# No Superficial Symptom Patches\nNEVER resolve errors by masking symptoms, swallowing exceptions, returning dummy fallbacks, commenting out broken assertions, or deleting failing unit tests. When a test or function fails, identify why the underlying contract was broken. If an API returns missing or null data, trace the upstream data provider instead of wrapping the call in a silent try/except or returning an empty 0-byte ArrayBuffer.\n\n# Never Declare Success Without Running Verification Commands\nNEVER claim a task is resolved, a bug is fixed, or a feature is working until you have gathered concrete, empirical runtime verification demonstrating clean success. Editing a file does not equal completing the task. You MUST run the build or test command afterwards.\n\n# Never Ignore Explicit Command Failures or Error Exit Codes\nIf a command fails, you MUST explicitly acknowledge the failure to the user or continue debugging. Never gloss over a build timeout or permission denied error by focusing only on the part of the code that compiled.\n\n# Check Feature Flags & Enforce Strict Control Flow Scoping\nWhenever modifying conditional branches, adding experimental features, or processing loops, ensure that new logic is strictly scoped and evaluated against all possible execution paths.\n\n# Preserve Existing API Contracts & Avoid Unintended Side Effects\nIf you modify a function signature, use code search to find and update every invocation site so the parameter is actually passed.\n\n# Silent Log Inspection & Professional Synthesis\nWhen background tasks (run_command async, manage_task, schedule) complete or emit log notifications, inspect the log files silently. Summarize and synthesize the exact findings in clean, professional natural language.\n\n# No Snippet Tunnel Vision\nNever infer the definition of data structures (proto, struct, class, or enum schemas) from partial file views (first 15 lines or L40-L65 snippets) or design doc text.\nIf view_file output indicates truncation or if an imported schema is referenced, you MUST adjust StartLine/EndLine or ContentOffset to inspect the complete, exact definition of the target symbols before writing code that consumes them.\n\n# Check Command Registries\nWhenever modifying core C/C++/Java command implementations (CLIENT LIST, CLIENT KILL), explicitly search for and update corresponding command definitions across all registry files (commands.def, JSON schemas, .bzl build manifests).\n\n# Audit Before Re-inventing\nSearch the codebase and recent commit history for pre-existing utility classes or decoupled architecture before writing custom helper classes from scratch.\n\n# No Blocking Calls on Main Looper Threads\nNever invoke blocking thread synchronizations (webLatch.await(500, ...), Future.get()) on main Android UI loops or single-threaded event dispatchers. \n\n# Thread Pool Shutdown Safety\nWhen modifying worker thread loops or shared queues, ensure emergency stop/shutdown signals and loop termination criteria remain intact so thread join operations never deadlock.\n\n# Exact Argument Structure\nPass arguments exactly as expected by the API (calculateRoute({ origin, destination, travelMode }) vs calculateRoute(origin, destination, travelMode)).\n\n# Local State Mutation Only\nDo not mutate private third-party DOM properties. Do not push incomplete draft objects directly into global array states; keep transient state within local component state.\n\n# Traceback Justification Required\nEvery code or configuration edit during debugging MUST be justified by an explicit error traceback, log line, or verified root cause. If the root cause is unknown, investigate further before mutating code.\n\n# Analyze Before Retrying\nNever repeat the exact same broken test or shell command line with duplicate/conflicting arguments without analyzing and resolving why the previous command failed.\n\n# Persevere on Log Extraction\nIf a log retrieval command fails, NEVER abandon log extraction to diagnose blindly. Immediately switch to alternative tools to inspect the actual failure traceback.\n\n# Verify Signatures & Prop Names\nCheck exact variable names, component prop keys, and method signatures before passing them. Prevent NullPointerException, AttributeError, KeyError, and ReferenceError crashes by explicitly verifying object initialization and non-null states before property dereferencing (layer._path, stat.owner()).\n\n# Dynamic Layout Math\nAvoid hardcoding static pixel offsets (+ 12) or arbitrary multipliers (pill_font_size * 2.0) when computing dynamic UI layout heights; calculate exact container bounds from wrapped elements.\n"
16601
- },
16602
- template__system_prompts__messaging: {
16603
- stringValue: "You are connected to a messaging system where you may receive messages from: {{- $subagent := .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled -}}\n{{- $message := .CascadeConfig.GetMessageConfig.GetEnabled -}}\n{{- if and $subagent $message }} agents, background tasks, user-queued messages\n{{- else if $subagent }} agents, background tasks\n{{- else if $message }} background tasks, user-queued messages\n{{- else }} background tasks\n{{- end }}.\n\n## Receiving Messages\n\nYou receive messages automatically at the start of each invocation. All messages are delivered in full directly into your context \u2014 no manual retrieval is needed.\n\n## Reactive Wakeup (No Polling Needed)\n\nThe system automatically resumes your execution when:\n{{- if .CascadeConfig.GetPlannerConfig.GetToolConfig.GetInvokeSubagent.GetEnabled }}\n- A message arrives from a subagent or peer agent\n{{- end }}\n- A **background task** completes or sends you a notification\n{{- if .CascadeConfig.GetMessageConfig.GetEnabled }}\n- A **user-queued message** is ready to be dequeued\n{{- end }}\n\nThis means you do **NOT** need to poll in a loop while waiting for messages or updates. After launching a task that runs in the background, you may continue other work or simply stop by calling no more tools. The system will notify you when there is something to process."
16604
16836
  }
16605
16837
  }
16606
16838
  }
16607
16839
  },
16608
- "gemini-3.6-flash-low": {
16609
- displayName: "Gemini 3.6 Flash (Low)",
16840
+ "gemini-3.1-flash-lite": {
16841
+ displayName: "Gemini 3.1 Flash Lite",
16842
+ maxTokens: 1048576,
16843
+ maxOutputTokens: 65535,
16844
+ quotaInfo: {
16845
+ remainingFraction: 0.9868631,
16846
+ resetTime: "2026-08-13T21:58:37Z"
16847
+ },
16848
+ model: "MODEL_PLACEHOLDER_M50",
16849
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16850
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
16851
+ modelExperiments: {
16852
+ experiments: {
16853
+ CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16854
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16855
+ }
16856
+ }
16857
+ }
16858
+ },
16859
+ "gemini-3.6-flash-high": {
16860
+ displayName: "Gemini 3.6 Flash (High)",
16610
16861
  supportsImages: true,
16611
16862
  supportsThinking: true,
16612
- thinkingBudget: 1e3,
16863
+ thinkingBudget: -1,
16613
16864
  minThinkingBudget: 32,
16614
16865
  recommended: true,
16615
16866
  maxTokens: 1048576,
16616
16867
  maxOutputTokens: 65536,
16617
16868
  quotaInfo: {
16618
- remainingFraction: 1,
16619
- resetTime: "2026-08-12T03:11:27Z"
16869
+ remainingFraction: 0.9868631,
16870
+ resetTime: "2026-08-13T21:58:37Z"
16620
16871
  },
16621
- model: "MODEL_PLACEHOLDER_M73",
16872
+ model: "MODEL_PLACEHOLDER_M71",
16622
16873
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16623
16874
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16624
16875
  supportsVideo: true,
16625
16876
  tagTitle: "Fast",
16626
16877
  tagDescription: "Limited time",
16627
16878
  supportedMimeTypes: {
16628
- "text/x-python": true,
16629
- "image/webp": true,
16630
- "video/audio/wav": true,
16879
+ "video/mp4": true,
16880
+ "video/webm": true,
16881
+ "text/xml": true,
16882
+ "text/plain": true,
16883
+ "text/javascript": true,
16884
+ "text/markdown": true,
16885
+ "image/heif": true,
16631
16886
  "video/text/timestamp": true,
16632
- "application/pdf": true,
16887
+ "application/rtf": true,
16888
+ "image/heic": true,
16633
16889
  "text/css": true,
16890
+ "video/audio/wav": true,
16634
16891
  "text/x-typescript": true,
16892
+ "application/json": true,
16635
16893
  "video/audio/s16le": true,
16636
- "text/csv": true,
16637
- "application/rtf": true,
16638
- "image/png": true,
16639
- "text/rtf": true,
16640
- "text/plain": true,
16641
- "image/heic": true,
16642
- "application/x-typescript": true,
16643
- "video/videoframe/jpeg2000": true,
16644
- "text/markdown": true,
16645
16894
  "image/jpeg": true,
16895
+ "video/videoframe/jpeg2000": true,
16896
+ "text/x-python": true,
16897
+ "application/pdf": true,
16898
+ "application/x-typescript": true,
16899
+ "text/rtf": true,
16900
+ "image/webp": true,
16646
16901
  "text/html": true,
16647
- "image/heif": true,
16648
- "application/json": true,
16649
- "video/webm": true,
16650
- "application/x-javascript": true,
16651
- "text/xml": true,
16652
16902
  "application/x-python-code": true,
16653
16903
  "audio/webm;codecs=opus": true,
16654
- "text/x-python-script": true,
16655
- "video/mp4": true,
16904
+ "application/x-ipynb+json": true,
16905
+ "image/png": true,
16656
16906
  "video/jpeg2000": true,
16657
- "text/javascript": true,
16658
- "application/x-ipynb+json": true
16907
+ "text/x-python-script": true,
16908
+ "text/csv": true,
16909
+ "application/x-javascript": true
16659
16910
  },
16660
16911
  modelExperiments: {
16661
16912
  experiments: {
16913
+ template__system_prompts__communication_style: {
16914
+ stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- You can render LaTeX math (KaTeX): inline with `\\(...\\)` or `$...$`, display with `\\[...\\]` or `$$...$$` placed on its own line.\n- Use math only for genuine mathematical content. Use backticks for code, identifiers, paths, flags, and shell variables.\n- `$` opens inline math, so write a literal dollar as `\\$` or wrap it in backticks. Two unescaped `$` in the same paragraph turn everything between them into math \u2014 this bites prices (`\\$100`) and shell syntax written in prose (`$HOME`, awk `$1`).\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [utils.py](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n- After launching a background task such as 'run_command', YOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: \nA) either proceed to other relevant work (if any) or, \nB) simply update the user with a short message (e.g. 'task-20 has been launched in the background. I will wait for it to complete before proceeding.') and end the turn.\nDO NOTHING ELSE.\n"
16915
+ },
16662
16916
  template__system_prompts__guidelines: {
16663
16917
  stringValue: "Follow these behavioral and workflow guidelines at all times:\n# Documentation\n- Maintain documentation integrity. Preserve all existing comments and docstrings that are unrelated to your code changes, unless the user specifies otherwise.\n\n# Obey Explicit Directives\nIf the user specifies precise quantitative filtering rules, layout boundaries, or architectural preferences, enforce them exactly as requested without alteration.\n\n# Never Guess Code Logic, Schemas, or File Paths\nNEVER infer implementation details, variable names, or file locations without inspecting the authoritative source using code search and file viewing tools.\n\n# Inspect Logs & Stack Traces Before Diagnosing Errors\nNEVER form a diagnostic hypothesis for a runtime failure, or test breakage, without reading the full, un-truncated error log. When an error occurs, your VERY FIRST ACTION must be to fetch and read the exact logs. Base your diagnosis strictly on empirical log evidence.\n\n# No Superficial Symptom Patches\nNEVER resolve errors by masking symptoms, swallowing exceptions, returning dummy fallbacks, commenting out broken assertions, or deleting failing unit tests. When a test or function fails, identify why the underlying contract was broken. If an API returns missing or null data, trace the upstream data provider instead of wrapping the call in a silent try/except or returning an empty 0-byte ArrayBuffer.\n\n# Never Declare Success Without Running Verification Commands\nNEVER claim a task is resolved, a bug is fixed, or a feature is working until you have gathered concrete, empirical runtime verification demonstrating clean success. Editing a file does not equal completing the task. You MUST run the build or test command afterwards.\n\n# Never Ignore Explicit Command Failures or Error Exit Codes\nIf a command fails, you MUST explicitly acknowledge the failure to the user or continue debugging. Never gloss over a build timeout or permission denied error by focusing only on the part of the code that compiled.\n\n# Check Feature Flags & Enforce Strict Control Flow Scoping\nWhenever modifying conditional branches, adding experimental features, or processing loops, ensure that new logic is strictly scoped and evaluated against all possible execution paths.\n\n# Preserve Existing API Contracts & Avoid Unintended Side Effects\nIf you modify a function signature, use code search to find and update every invocation site so the parameter is actually passed.\n\n# Silent Log Inspection & Professional Synthesis\nWhen background tasks (run_command async, manage_task, schedule) complete or emit log notifications, inspect the log files silently. Summarize and synthesize the exact findings in clean, professional natural language.\n\n# No Snippet Tunnel Vision\nNever infer the definition of data structures (proto, struct, class, or enum schemas) from partial file views (first 15 lines or L40-L65 snippets) or design doc text.\nIf view_file output indicates truncation or if an imported schema is referenced, you MUST adjust StartLine/EndLine or ContentOffset to inspect the complete, exact definition of the target symbols before writing code that consumes them.\n\n# Check Command Registries\nWhenever modifying core C/C++/Java command implementations (CLIENT LIST, CLIENT KILL), explicitly search for and update corresponding command definitions across all registry files (commands.def, JSON schemas, .bzl build manifests).\n\n# Audit Before Re-inventing\nSearch the codebase and recent commit history for pre-existing utility classes or decoupled architecture before writing custom helper classes from scratch.\n\n# No Blocking Calls on Main Looper Threads\nNever invoke blocking thread synchronizations (webLatch.await(500, ...), Future.get()) on main Android UI loops or single-threaded event dispatchers. \n\n# Thread Pool Shutdown Safety\nWhen modifying worker thread loops or shared queues, ensure emergency stop/shutdown signals and loop termination criteria remain intact so thread join operations never deadlock.\n\n# Exact Argument Structure\nPass arguments exactly as expected by the API (calculateRoute({ origin, destination, travelMode }) vs calculateRoute(origin, destination, travelMode)).\n\n# Local State Mutation Only\nDo not mutate private third-party DOM properties. Do not push incomplete draft objects directly into global array states; keep transient state within local component state.\n\n# Traceback Justification Required\nEvery code or configuration edit during debugging MUST be justified by an explicit error traceback, log line, or verified root cause. If the root cause is unknown, investigate further before mutating code.\n\n# Analyze Before Retrying\nNever repeat the exact same broken test or shell command line with duplicate/conflicting arguments without analyzing and resolving why the previous command failed.\n\n# Persevere on Log Extraction\nIf a log retrieval command fails, NEVER abandon log extraction to diagnose blindly. Immediately switch to alternative tools to inspect the actual failure traceback.\n\n# Verify Signatures & Prop Names\nCheck exact variable names, component prop keys, and method signatures before passing them. Prevent NullPointerException, AttributeError, KeyError, and ReferenceError crashes by explicitly verifying object initialization and non-null states before property dereferencing (layer._path, stat.owner()).\n\n# Dynamic Layout Math\nAvoid hardcoding static pixel offsets (+ 12) or arbitrary multipliers (pill_font_size * 2.0) when computing dynamic UI layout heights; calculate exact container bounds from wrapped elements.\n"
16664
16918
  },
@@ -16670,161 +16924,108 @@ var models_default = {
16670
16924
  },
16671
16925
  "cascade-include-ephemeral-message": {
16672
16926
  stringValue: '{\n "enabled": false,\n "disabledHeuristics": ["planning_mode", "bash_command_reminder", "running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16673
- },
16674
- template__system_prompts__communication_style: {
16675
- stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- You can render LaTeX math (KaTeX): inline with `\\(...\\)` or `$...$`, display with `\\[...\\]` or `$$...$$` placed on its own line.\n- Use math only for genuine mathematical content. Use backticks for code, identifiers, paths, flags, and shell variables.\n- `$` opens inline math, so write a literal dollar as `\\$` or wrap it in backticks. Two unescaped `$` in the same paragraph turn everything between them into math \u2014 this bites prices (`\\$100`) and shell syntax written in prose (`$HOME`, awk `$1`).\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [utils.py](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n- After launching a background task such as 'run_command', YOU MUST TAKE ONE OF THE FOLLOWING TWO ACTIONS: \nA) either proceed to other relevant work (if any) or, \nB) simply update the user with a short message (e.g. 'task-20 has been launched in the background. I will wait for it to complete before proceeding.') and end the turn.\nDO NOTHING ELSE.\n"
16676
16927
  }
16677
16928
  }
16678
16929
  }
16679
16930
  },
16680
- "gemini-3.5-flash-low": {
16681
- displayName: "Gemini 3.5 Flash (Medium)",
16931
+ "gemini-3-flash-agent": {
16932
+ displayName: "Gemini 3.5 Flash (High)",
16682
16933
  supportsImages: true,
16683
16934
  supportsThinking: true,
16684
- thinkingBudget: 4e3,
16935
+ thinkingBudget: -1,
16685
16936
  minThinkingBudget: 32,
16686
16937
  recommended: true,
16687
16938
  maxTokens: 1048576,
16688
16939
  maxOutputTokens: 65536,
16689
16940
  quotaInfo: {
16690
- remainingFraction: 1,
16691
- resetTime: "2026-08-12T03:11:27Z"
16941
+ remainingFraction: 0.9868631,
16942
+ resetTime: "2026-08-13T21:58:37Z"
16692
16943
  },
16693
- model: "MODEL_PLACEHOLDER_M20",
16944
+ model: "MODEL_PLACEHOLDER_M84",
16694
16945
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16695
16946
  modelProvider: "MODEL_PROVIDER_GOOGLE",
16696
16947
  supportsVideo: true,
16697
16948
  tagTitle: "Fast",
16698
16949
  tagDescription: "Limited time",
16699
16950
  supportedMimeTypes: {
16700
- "video/webm": true,
16701
- "video/videoframe/jpeg2000": true,
16702
- "audio/webm;codecs=opus": true,
16703
- "image/png": true,
16704
16951
  "text/markdown": true,
16705
16952
  "image/webp": true,
16706
- "application/x-python-code": true,
16707
- "video/mp4": true,
16708
- "application/x-ipynb+json": true,
16709
- "text/plain": true,
16953
+ "application/pdf": true,
16954
+ "video/text/timestamp": true,
16955
+ "audio/webm;codecs=opus": true,
16956
+ "text/x-python-script": true,
16957
+ "image/png": true,
16710
16958
  "text/html": true,
16711
- "application/rtf": true,
16959
+ "text/csv": true,
16960
+ "application/x-python-code": true,
16961
+ "application/json": true,
16962
+ "video/videoframe/jpeg2000": true,
16963
+ "image/heif": true,
16712
16964
  "application/x-typescript": true,
16713
- "image/heic": true,
16714
- "application/pdf": true,
16715
- "image/jpeg": true,
16965
+ "application/x-ipynb+json": true,
16716
16966
  "text/css": true,
16717
- "application/json": true,
16718
- "text/x-python": true,
16719
- "text/x-python-script": true,
16967
+ "text/javascript": true,
16968
+ "video/webm": true,
16969
+ "application/x-javascript": true,
16720
16970
  "text/x-typescript": true,
16721
- "image/heif": true,
16722
- "text/xml": true,
16723
- "video/jpeg2000": true,
16724
16971
  "video/audio/wav": true,
16725
- "text/javascript": true,
16726
- "video/audio/s16le": true,
16727
16972
  "text/rtf": true,
16728
- "application/x-javascript": true,
16729
- "text/csv": true,
16730
- "video/text/timestamp": true
16973
+ "application/rtf": true,
16974
+ "video/audio/s16le": true,
16975
+ "video/jpeg2000": true,
16976
+ "video/mp4": true,
16977
+ "text/x-python": true,
16978
+ "image/jpeg": true,
16979
+ "image/heic": true,
16980
+ "text/plain": true,
16981
+ "text/xml": true
16731
16982
  },
16732
16983
  modelExperiments: {
16733
16984
  experiments: {
16734
- template__system_prompts__planning_mode_artifacts: {
16735
- stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16736
- },
16737
16985
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16738
16986
  stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SAME_MODEL",\n "max_token_limit": "256000",\n "token_threshold": "140000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": true,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16987
+ },
16988
+ template__system_prompts__planning_mode_artifacts: {
16989
+ stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16739
16990
  }
16740
16991
  }
16741
16992
  }
16742
16993
  },
16743
- "gemini-2.5-flash-thinking": {
16744
- displayName: "Gemini 3.1 Flash Lite",
16745
- maxTokens: 1048576,
16746
- maxOutputTokens: 65535,
16747
- quotaInfo: {
16748
- remainingFraction: 1,
16749
- resetTime: "2026-08-12T03:11:27Z"
16750
- },
16751
- model: "MODEL_GOOGLE_GEMINI_2_5_FLASH_THINKING",
16752
- apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16753
- modelProvider: "MODEL_PROVIDER_GOOGLE",
16754
- modelExperiments: {
16755
- experiments: {
16756
- CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16757
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16758
- }
16759
- }
16760
- }
16761
- },
16762
- "gemini-pro-agent": {
16763
- displayName: "Gemini 3.1 Pro (High)",
16994
+ "claude-sonnet-4-6": {
16995
+ displayName: "Claude Sonnet 4.6 (Thinking)",
16764
16996
  supportsImages: true,
16765
16997
  supportsThinking: true,
16766
- thinkingBudget: 10001,
16767
- minThinkingBudget: 128,
16998
+ thinkingBudget: 1024,
16768
16999
  recommended: true,
16769
- maxTokens: 1048576,
16770
- maxOutputTokens: 65535,
17000
+ maxTokens: 25e4,
17001
+ maxOutputTokens: 64e3,
16771
17002
  quotaInfo: {
16772
- remainingFraction: 1,
16773
- resetTime: "2026-08-12T03:11:27Z"
17003
+ remainingFraction: 0.8733688,
17004
+ resetTime: "2026-08-14T01:18:39Z"
16774
17005
  },
16775
- model: "MODEL_PLACEHOLDER_M16",
16776
- apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
16777
- modelProvider: "MODEL_PROVIDER_GOOGLE",
16778
- supportsVideo: true,
17006
+ model: "MODEL_PLACEHOLDER_M35",
17007
+ apiProvider: "API_PROVIDER_ANTHROPIC_VERTEX",
17008
+ modelProvider: "MODEL_PROVIDER_ANTHROPIC",
16779
17009
  supportedMimeTypes: {
16780
- "text/rtf": true,
16781
- "video/jpeg2000": true,
16782
- "video/text/timestamp": true,
16783
- "text/html": true,
16784
- "text/plain": true,
16785
- "audio/webm;codecs=opus": true,
16786
- "application/x-python-code": true,
16787
- "application/pdf": true,
16788
- "text/markdown": true,
16789
- "text/csv": true,
16790
- "image/webp": true,
16791
- "video/audio/s16le": true,
16792
- "application/json": true,
16793
- "video/videoframe/jpeg2000": true,
16794
- "application/x-ipynb+json": true,
16795
- "text/javascript": true,
16796
- "application/x-typescript": true,
16797
17010
  "image/heic": true,
16798
17011
  "image/heif": true,
16799
- "text/css": true,
16800
- "image/png": true,
16801
- "video/audio/wav": true,
16802
- "video/mp4": true,
16803
17012
  "image/jpeg": true,
16804
- "text/x-python-script": true,
16805
- "text/x-typescript": true,
16806
- "video/webm": true,
16807
- "application/rtf": true,
16808
- "text/x-python": true,
16809
- "application/x-javascript": true,
16810
- "text/xml": true
17013
+ "image/png": true,
17014
+ "image/webp": true,
17015
+ "video/jpeg2000": true,
17016
+ "video/videoframe/jpeg2000": true
16811
17017
  },
16812
17018
  modelExperiments: {
16813
17019
  experiments: {
16814
17020
  CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16815
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16816
- },
16817
- "cascade-include-ephemeral-message": {
16818
- stringValue: '{\n "enabled": true,\n "disabledHeuristics": ["running_tasks_reminder"],\n "staticMessages": [],\n "useAllowlist": false,\n "enabledHeuristics": []\n}'
16819
- },
16820
- template__system_prompts__communication_style: {
16821
- stringValue: "- Keep your responses concise.\n- Provide a summary of your work when you end your turn.\n- Format your responses in github-style markdown.\n- If you're unsure about the user's intent, ask for clarification rather than making assumptions.\n- You MUST create clickable links for all files and code symbols (classes, types, functions, structs). Use github style markdown links with the `file://` scheme (e.g., [filename](file:///path/to/file) or [ClassName](file:///path/to/file#L10-L20)`). For Windows, use forward slashes for paths.\n\nCRITICAL INSTRUCTION 1: You may have access to a variety of tools at your disposal. Some tools may be for a specific task such as 'view_file' (for viewing contents of a file). Others may be very broadly applicable such as the ability to run a command on a terminal. Always prioritize using the most specific tool you can for the task at hand. Here are some rules: (a) NEVER run cat inside a bash command to create a new file or append to an existing file. (b) ALWAYS use grep_search instead of running grep inside a bash command unless absolutely needed. (c) DO NOT use ls for listing, cat for viewing, grep for finding, sed for replacing.\nCRITICAL INSTRUCTION 2: Before making tool calls T, think and explicitly list out any related tools for the task at hand. You can only execute a set of tools T if all other tools in the list are either more generic or cannot be used for the task at hand. ALWAYS START your thought with recalling critical instructions 1 and 2. In particular, the format for the start of your thought block must be '...94>thought\\nCRITICAL INSTRUCTION 1: ...\\nCRITICAL INSTRUCTION 2: ...'."
17021
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_UNSPECIFIED",\n "max_token_limit": "160000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16822
17022
  },
16823
17023
  template__system_prompts__planning_mode_artifacts: {
16824
17024
  stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16825
17025
  }
16826
17026
  }
16827
- }
17027
+ },
17028
+ vertexModelId: "claude-sonnet-4-6@default"
16828
17029
  },
16829
17030
  chat_23310: {
16830
17031
  maxTokens: 32768,
@@ -16841,6 +17042,25 @@ var models_default = {
16841
17042
  toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
16842
17043
  requiresLeadInGeneration: true
16843
17044
  },
17045
+ "gemini-2.5-flash-lite": {
17046
+ displayName: "Gemini 3.1 Flash Lite",
17047
+ maxTokens: 1048576,
17048
+ maxOutputTokens: 65535,
17049
+ quotaInfo: {
17050
+ remainingFraction: 0.9868631,
17051
+ resetTime: "2026-08-13T21:58:37Z"
17052
+ },
17053
+ model: "MODEL_GOOGLE_GEMINI_2_5_FLASH_LITE",
17054
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
17055
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
17056
+ modelExperiments: {
17057
+ experiments: {
17058
+ CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
17059
+ stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_SINGLE_PROMPT",\n "max_token_limit": "128000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
17060
+ }
17061
+ }
17062
+ }
17063
+ },
16844
17064
  "gemini-3.6-flash-medium": {
16845
17065
  displayName: "Gemini 3.6 Flash (Medium)",
16846
17066
  supportsImages: true,
@@ -16851,8 +17071,8 @@ var models_default = {
16851
17071
  maxTokens: 1048576,
16852
17072
  maxOutputTokens: 65536,
16853
17073
  quotaInfo: {
16854
- remainingFraction: 1,
16855
- resetTime: "2026-08-12T03:11:27Z"
17074
+ remainingFraction: 0.9868631,
17075
+ resetTime: "2026-08-13T21:58:37Z"
16856
17076
  },
16857
17077
  model: "MODEL_PLACEHOLDER_M72",
16858
17078
  apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
@@ -16861,37 +17081,37 @@ var models_default = {
16861
17081
  tagTitle: "Fast",
16862
17082
  tagDescription: "Limited time",
16863
17083
  supportedMimeTypes: {
16864
- "application/x-javascript": true,
16865
- "audio/webm;codecs=opus": true,
16866
- "application/x-ipynb+json": true,
16867
- "image/png": true,
17084
+ "video/audio/s16le": true,
16868
17085
  "text/x-python": true,
16869
- "image/heic": true,
16870
17086
  "text/x-typescript": true,
16871
- "application/x-python-code": true,
16872
- "image/jpeg": true,
16873
- "video/audio/s16le": true,
16874
17087
  "video/videoframe/jpeg2000": true,
16875
17088
  "text/html": true,
16876
- "text/markdown": true,
16877
- "video/text/timestamp": true,
16878
- "video/jpeg2000": true,
17089
+ "image/heif": true,
17090
+ "text/x-python-script": true,
17091
+ "text/javascript": true,
17092
+ "text/css": true,
17093
+ "application/x-javascript": true,
17094
+ "application/x-typescript": true,
16879
17095
  "image/webp": true,
16880
- "application/rtf": true,
16881
- "text/rtf": true,
16882
- "application/pdf": true,
16883
- "application/json": true,
17096
+ "image/jpeg": true,
16884
17097
  "video/mp4": true,
17098
+ "video/jpeg2000": true,
17099
+ "application/json": true,
16885
17100
  "text/plain": true,
16886
- "text/javascript": true,
17101
+ "text/markdown": true,
17102
+ "application/rtf": true,
17103
+ "application/x-python-code": true,
17104
+ "video/audio/wav": true,
17105
+ "audio/webm;codecs=opus": true,
16887
17106
  "video/webm": true,
16888
- "text/x-python-script": true,
16889
- "application/x-typescript": true,
16890
- "image/heif": true,
16891
- "text/xml": true,
17107
+ "application/x-ipynb+json": true,
17108
+ "video/text/timestamp": true,
16892
17109
  "text/csv": true,
16893
- "text/css": true,
16894
- "video/audio/wav": true
17110
+ "image/heic": true,
17111
+ "application/pdf": true,
17112
+ "image/png": true,
17113
+ "text/xml": true,
17114
+ "text/rtf": true
16895
17115
  },
16896
17116
  modelExperiments: {
16897
17117
  experiments: {
@@ -16913,50 +17133,31 @@ var models_default = {
16913
17133
  }
16914
17134
  }
16915
17135
  },
16916
- "claude-sonnet-4-6": {
16917
- displayName: "Claude Sonnet 4.6 (Thinking)",
16918
- supportsImages: true,
16919
- supportsThinking: true,
16920
- thinkingBudget: 1024,
16921
- recommended: true,
16922
- maxTokens: 25e4,
16923
- maxOutputTokens: 64e3,
17136
+ tab_flash_lite_preview: {
17137
+ maxTokens: 16384,
17138
+ maxOutputTokens: 4096,
16924
17139
  quotaInfo: {
16925
- remainingFraction: 1,
16926
- resetTime: "2026-08-12T03:11:27Z"
16927
- },
16928
- model: "MODEL_PLACEHOLDER_M35",
16929
- apiProvider: "API_PROVIDER_ANTHROPIC_VERTEX",
16930
- modelProvider: "MODEL_PROVIDER_ANTHROPIC",
16931
- supportedMimeTypes: {
16932
- "image/heic": true,
16933
- "image/heif": true,
16934
- "image/jpeg": true,
16935
- "image/png": true,
16936
- "image/webp": true,
16937
- "video/jpeg2000": true,
16938
- "video/videoframe/jpeg2000": true
16939
- },
16940
- modelExperiments: {
16941
- experiments: {
16942
- CASCADE_USE_EXPERIMENT_CHECKPOINTER: {
16943
- stringValue: '{\n "strategy": "CHECKPOINT_STRATEGY_UNSPECIFIED",\n "max_token_limit": "160000",\n "token_threshold": "50000",\n "max_overhead_ratio": "0.15",\n "moving_window_size": "1",\n "enabled": true,\n "max_output_tokens": "16384",\n "checkpoint_model": "MODEL_PLACEHOLDER_M50",\n "use_last_planner_model": false,\n "is_sync": false,\n "max_user_requests": 10,\n "include_last_user_message": false,\n "include_conversation_log": true,\n "include_running_task_snapshots": true,\n "include_subagent_snapshots": true,\n "include_artifact_snapshots": true,\n "retry_config": {\n "max_retries": 0,\n "initial_sleep_duration_ms": 1000,\n "exponential_multiplier": 2,\n "include_error_feedback": false\n }\n}'
16944
- },
16945
- template__system_prompts__planning_mode_artifacts: {
16946
- stringValue: "When in planning mode, you will work with three special artifacts.\n\n# Tasks\nPath: {{ArtifactDirectoryPath}}/task.md\n\n**Purpose**: A TODO list to organize your work during execution. Create this artifact after receiving user approval on your implementation plan. Break down complex tasks into component-level items and track progress as a living document.\n\n**Format**:\n```markdown\n- `[ ]` uncompleted tasks\n- `[/]` in progress tasks (custom notation)\n- `[x]` completed tasks\n- Use indented lists for sub-items\n```\n\n**Updating task.md**: Mark items as `[/]` when starting work on them, and `[x]` when completed. Update task.md as you make progress through your checklist.\n\n# Implementation Plan\nPath: {{ArtifactDirectoryPath}}/implementation_plan.md\n\n**Purpose**: A detailed design document to present your technical implementation plan to the user for feedback and approval.\nAfter reading the document, the user should understand the key technical details of your plan, and be able to make an informed decision on whether to approve it.\n\n**Format**: Use the following format, omitting any irrelevant sections.\n```markdown\n# [Goal Description]\n\nProvide a brief description of the problem, any background context, and what the change accomplishes.\n\n## User Review Required\n\nDocument anything that requires user review or feedback, for example, breaking changes or significant design decisions. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Open Questions\n\nAny clarifying or design questions for the user that will impact the implementation plan. Use GitHub alerts (IMPORTANT/WARNING/CAUTION) to highlight critical items.\n\n## Proposed Changes\n\nGroup files by component (e.g., package, feature area, dependency layer) and order logically (dependencies first). Separate components with horizontal rules for visual clarity.\n\n### [Component Name]\n\nSummary of what will change in this component, separated by files. For specific files, Use [NEW] and [DELETE] to demarcate new and deleted files, for example:\n\n#### [MODIFY] [file basename](file:///absolute/path/to/modifiedfile)\n#### [NEW] [file basename](file:///absolute/path/to/newfile)\n#### [DELETE] [file basename](file:///absolute/path/to/deletedfile)\n\n## Verification Plan\n\nSummary of how you will verify that your changes have the desired effects.\n\n### Automated Tests\n- The commands of any automated tests you'll run.\n\n### Manual Verification\n- Asking the user to deploy to staging and testing, verifying UI changes on an iOS app etc.\n```\n\n# Walkthrough\nPath: {{ArtifactDirectoryPath}}/walkthrough.md\n\n**Purpose**: After completing work, summarize what you accomplished. Update an existing walkthrough for related follow-up work rather than creating a new one.\n\n**Document**:\n- Changes made\n- What was tested\n- Validation results\n\nEmbed screenshots and recordings to visually demonstrate UI changes and user flows.\n"
16947
- }
16948
- }
17140
+ remainingFraction: 1
16949
17141
  },
16950
- vertexModelId: "claude-sonnet-4-6@default"
17142
+ model: "MODEL_PLACEHOLDER_M19",
17143
+ apiProvider: "API_PROVIDER_GOOGLE_GEMINI",
17144
+ modelProvider: "MODEL_PROVIDER_GOOGLE",
17145
+ supportsCumulativeContext: true,
17146
+ supportsEstimateTokenCounter: true,
17147
+ toolFormatterType: "TOOL_FORMATTER_TYPE_XML",
17148
+ requiresLeadInGeneration: true
16951
17149
  }
16952
17150
  },
16953
- defaultAgentModelId: "gemini-3.6-flash-high",
17151
+ defaultAgentModelId: "gemini-3.7-flash-high",
16954
17152
  agentModelSorts: [
16955
17153
  {
16956
17154
  displayName: "Recommended",
16957
17155
  groups: [
16958
17156
  {
16959
17157
  modelIds: [
17158
+ "gemini-3.7-flash-high",
17159
+ "gemini-3.7-flash-medium",
17160
+ "gemini-3.7-flash-low",
16960
17161
  "gemini-3.6-flash-high",
16961
17162
  "gemini-3.6-flash-medium",
16962
17163
  "gemini-3.6-flash-low",
@@ -17003,8 +17204,6 @@ var models_default = {
17003
17204
  "models/proactive-observer-v10"
17004
17205
  ],
17005
17206
  experimentIds: [
17006
- 106571595,
17007
- 106409969,
17008
17207
  106140402,
17009
17208
  105979552,
17010
17209
  105979574,
@@ -17025,6 +17224,7 @@ var models_default = {
17025
17224
  106064030,
17026
17225
  106567313,
17027
17226
  106396310,
17227
+ 106470334,
17028
17228
  105757908,
17029
17229
  106106760,
17030
17230
  106021688,
@@ -17056,6 +17256,7 @@ var models_default = {
17056
17256
  106064028,
17057
17257
  106567309,
17058
17258
  106396304,
17259
+ 106470330,
17059
17260
  106283614,
17060
17261
  106568384,
17061
17262
  106038164,
@@ -18284,6 +18485,15 @@ var latestAgyAuthResolver;
18284
18485
  var latestAgyConfiguredProjectId;
18285
18486
  var latestAgyUserAgentModel;
18286
18487
  var STATIC_MODELS_SIMPLE = {
18488
+ "gemini-3.7-flash": {
18489
+ name: "Gemini 3.7 Flash",
18490
+ description: "Gemini 3.7 Flash base model. Select tier at runtime.",
18491
+ maxTokens: 1048576,
18492
+ maxOutputTokens: 65536,
18493
+ toolCall: true,
18494
+ reasoning: true,
18495
+ attachment: true
18496
+ },
18287
18497
  "gemini-3.6-flash": {
18288
18498
  name: "Gemini 3.6 Flash",
18289
18499
  description: "Gemini 3.6 Flash base model. Select tier at runtime.",
@@ -18340,6 +18550,11 @@ var STATIC_MODELS_SIMPLE = {
18340
18550
  }
18341
18551
  };
18342
18552
  var TIER_MAPPING = {
18553
+ "gemini-3.7-flash": {
18554
+ low: "gemini-3.7-flash-low",
18555
+ medium: "gemini-3.7-flash-medium",
18556
+ high: "gemini-3.7-flash-high"
18557
+ },
18343
18558
  "gemini-3.6-flash": {
18344
18559
  minimal: "gemini-3.6-flash-low",
18345
18560
  low: "gemini-3.6-flash-low",