devchain-cli 0.10.1 → 0.10.2
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/drizzle/0047_fix_claude_auto_compact_default.sql +6 -0
- package/dist/drizzle/meta/_journal.json +7 -0
- package/dist/server/modules/storage/local/local-storage.service.js +1 -1
- package/dist/server/tsconfig.tsbuildinfo +1 -1
- package/dist/server/ui/assets/{ReviewDetailPage-CZZQtaY7.js → ReviewDetailPage-CvHhaFJw.js} +1 -1
- package/dist/server/ui/assets/{ReviewsPage-C209GLQG.js → ReviewsPage-DCDiMjwZ.js} +1 -1
- package/dist/server/ui/assets/{index-Th1FDtKR.js → index-CWqSXDUZ.js} +4 -4
- package/dist/server/ui/assets/{useReviewSubscription-Dcabsa78.js → useReviewSubscription-D_vmMkNu.js} +1 -1
- package/dist/server/ui/index.html +1 -1
- package/package.json +4 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
-- Migration: Fix Claude provider auto_compact_threshold default from 10 to 85
|
|
2
|
+
-- The original migration (0045) incorrectly set existing Claude providers to 10 (aggressive).
|
|
3
|
+
-- The intended default is 85% context usage before triggering auto-compact.
|
|
4
|
+
|
|
5
|
+
UPDATE providers SET auto_compact_threshold = 85
|
|
6
|
+
WHERE LOWER(name) = 'claude' AND auto_compact_threshold = 10;
|
|
@@ -330,6 +330,13 @@
|
|
|
330
330
|
"when": 1771400000000,
|
|
331
331
|
"tag": "0046_worktrees_owner_project_id",
|
|
332
332
|
"breakpoints": true
|
|
333
|
+
},
|
|
334
|
+
{
|
|
335
|
+
"idx": 47,
|
|
336
|
+
"version": "6",
|
|
337
|
+
"when": 1771500000000,
|
|
338
|
+
"tag": "0047_fix_claude_auto_compact_default",
|
|
339
|
+
"breakpoints": true
|
|
333
340
|
}
|
|
334
341
|
]
|
|
335
342
|
}
|
|
@@ -1974,7 +1974,7 @@ let LocalStorageService = class LocalStorageService {
|
|
|
1974
1974
|
const autoCompactThreshold = data.autoCompactThreshold !== undefined
|
|
1975
1975
|
? data.autoCompactThreshold
|
|
1976
1976
|
: data.name.toLowerCase() === 'claude'
|
|
1977
|
-
?
|
|
1977
|
+
? 85
|
|
1978
1978
|
: null;
|
|
1979
1979
|
const provider = {
|
|
1980
1980
|
id: randomUUID(),
|