Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/eager-buckets-feel.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"roo-cline": major
---

Default enabled autoCondenseContext and moved settings out of Experimental
5 changes: 5 additions & 0 deletions .changeset/spotty-steaks-brake.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"roo-cline": patch
---

Skips condense operations if the context size grows & shows an error
2 changes: 1 addition & 1 deletion .husky/pre-push
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ $pnpm_cmd run check-types
NEW_CHANGESETS=$(find .changeset -name "*.md" ! -name "README.md" | wc -l | tr -d ' ')
echo "Changeset files: $NEW_CHANGESETS"

if [ "$NEW_CHANGESETS" == "0" ]; then
if [ "$NEW_CHANGESETS" = "0" ]; then
echo "-------------------------------------------------------------------------------------"
echo "Changes detected. Please run 'pnpm changeset' to create a changeset if applicable."
echo "-------------------------------------------------------------------------------------"
Expand Down
60 changes: 30 additions & 30 deletions README.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions evals/packages/types/src/roo-code.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ export type CommandExecutionStatus = z.infer<typeof commandExecutionStatusSchema
* ExperimentId
*/

export const experimentIds = ["autoCondenseContext", "powerSteering"] as const
export const experimentIds = ["powerSteering"] as const

export const experimentIdsSchema = z.enum(experimentIds)

Expand All @@ -308,7 +308,6 @@ export type ExperimentId = z.infer<typeof experimentIdsSchema>
*/

const experimentsSchema = z.object({
autoCondenseContext: z.boolean(),
powerSteering: z.boolean(),
})

Expand Down
44 changes: 22 additions & 22 deletions locales/ca/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/de/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/es/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/fr/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/hi/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/it/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/ja/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/ko/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/nl/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/pl/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/pt-BR/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/ru/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/tr/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/vi/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/zh-CN/README.md

Large diffs are not rendered by default.

44 changes: 22 additions & 22 deletions locales/zh-TW/README.md

Large diffs are not rendered by default.

3 changes: 1 addition & 2 deletions packages/types/src/experiment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type { Keys, Equals, AssertEqual } from "./type-fu.js"
* ExperimentId
*/

export const experimentIds = ["autoCondenseContext", "powerSteering"] as const
export const experimentIds = ["powerSteering"] as const

export const experimentIdsSchema = z.enum(experimentIds)

Expand All @@ -17,7 +17,6 @@ export type ExperimentId = z.infer<typeof experimentIdsSchema>
*/

export const experimentsSchema = z.object({
autoCondenseContext: z.boolean(),
powerSteering: z.boolean(),
})

Expand Down
2 changes: 2 additions & 0 deletions packages/types/src/global-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export const globalSettingsSchema = z.object({
alwaysAllowExecute: z.boolean().optional(),
allowedCommands: z.array(z.string()).optional(),
allowedMaxRequests: z.number().nullish(),
autoCondenseContext: z.boolean().optional(),
autoCondenseContextPercent: z.number().optional(),

browserToolEnabled: z.boolean().optional(),
Expand Down Expand Up @@ -131,6 +132,7 @@ export const GLOBAL_SETTINGS_KEYS = keysOf<GlobalSettings>()([
"alwaysAllowExecute",
"allowedCommands",
"allowedMaxRequests",
"autoCondenseContext",
"autoCondenseContextPercent",

"browserToolEnabled",
Expand Down
1 change: 1 addition & 0 deletions packages/types/src/message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export const clineSays = [
"rooignore_error",
"diff_error",
"condense_context",
"condense_context_error",
"codebase_search_result",
] as const

Expand Down
Loading
Loading