@pi-unipi/compactor 2.1.2 → 2.2.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pi-unipi/compactor",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Context engine for Pi — zero-LLM compaction, session continuity, sandbox execution, and tool display optimization",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"fts5"
|
|
23
23
|
],
|
|
24
24
|
"scripts": {
|
|
25
|
-
"test": "bun test tests"
|
|
25
|
+
"test": "npx bun test tests"
|
|
26
26
|
},
|
|
27
27
|
"files": [
|
|
28
28
|
"index.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@pi-unipi/core": "2.
|
|
38
|
-
"@pi-unipi/info-screen": "2.
|
|
37
|
+
"@pi-unipi/core": "2.2.0",
|
|
38
|
+
"@pi-unipi/info-screen": "2.2.0",
|
|
39
39
|
"@earendil-works/pi-agent-core": "^0.80.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
@@ -15,6 +15,7 @@ import { applyPreset, detectPreset } from "../config/presets.js";
|
|
|
15
15
|
import type { CompactorPreset } from "../types.js";
|
|
16
16
|
import type { CompactorConfig } from "../types.js";
|
|
17
17
|
import { existsSync, unlinkSync } from "node:fs";
|
|
18
|
+
import { boxInnerWidth } from "@pi-unipi/core";
|
|
18
19
|
|
|
19
20
|
// ─── Section types ─────────────────────────────────────────────────────
|
|
20
21
|
|
|
@@ -577,7 +578,7 @@ export class CompactorSettingsOverlay implements Component {
|
|
|
577
578
|
// ─── Render ────────────────────────────────────────────────────────
|
|
578
579
|
|
|
579
580
|
render(width: number): string[] {
|
|
580
|
-
const innerWidth =
|
|
581
|
+
const innerWidth = boxInnerWidth(width);
|
|
581
582
|
const lines: string[] = [];
|
|
582
583
|
|
|
583
584
|
// Header
|