daedalus-cli 1.52.0 → 1.52.1

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/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [1.52.1](https://github.com/bgill55/daedalus/compare/v1.52.0...v1.52.1) (2026-07-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **model:** increase detectRepetition window size to 32 to avoid false positive triggers in directory tables ([df03f19](https://github.com/bgill55/daedalus/commit/df03f19b8a3b0beb6067db0bb1c379b6972d3a35))
7
+
1
8
  # [1.52.0](https://github.com/bgill55/daedalus/compare/v1.51.0...v1.52.0) (2026-07-19)
2
9
 
3
10
 
package/dist/model.js CHANGED
@@ -37,7 +37,7 @@ function detectRepetition(text) {
37
37
  if (text.length < 200)
38
38
  return false;
39
39
  const tail = text.slice(-400);
40
- const len = 18;
40
+ const len = 32;
41
41
  const counts = {};
42
42
  for (let i = 0; i <= tail.length - len; i++) {
43
43
  const sub = tail.substring(i, i + len);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "daedalus-cli",
3
- "version": "1.52.0",
3
+ "version": "1.52.1",
4
4
  "description": "Local-first AI coding CLI with embedded model router, multi-agent orchestration, and codebase indexing",
5
5
  "type": "module",
6
6
  "bin": {