@code-yeongyu/senpi-codemode 2026.8.5 → 2026.8.7

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
@@ -12,6 +12,47 @@
12
12
 
13
13
  ### Removed
14
14
 
15
+ ## [2026.8.7] - 2026-08-07
16
+
17
+ ### Breaking Changes
18
+
19
+ ### Added
20
+
21
+ ### Changed
22
+
23
+ ### Fixed
24
+
25
+ - Formatted completed eval durations in the simple-result transcript branch with the same compact human-readable units
26
+ used by detailed cell headers and nested tool widgets, so sub-second, seconds, minutes, and hours values render as
27
+ labels such as `<1s`, `12s`, `3m 5s`, or `1h 2m` instead of raw millisecond counts. Live footer, working-status, and
28
+ thinking-duration policies are unchanged ([#743](https://github.com/code-yeongyu/senpi/pull/743)).
29
+
30
+ ### Removed
31
+
32
+ ## [2026.8.6] - 2026-08-06
33
+
34
+ ### Breaking Changes
35
+
36
+ ### Added
37
+
38
+ ### Changed
39
+
40
+ ### Fixed
41
+
42
+ ### Removed
43
+
44
+ ## [2026.8.5-2] - 2026-08-05
45
+
46
+ ### Breaking Changes
47
+
48
+ ### Added
49
+
50
+ ### Changed
51
+
52
+ ### Fixed
53
+
54
+ ### Removed
55
+
15
56
  ## [2026.8.5] - 2026-08-05
16
57
 
17
58
  ### Breaking Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-yeongyu/senpi-codemode",
3
- "version": "2026.8.5",
3
+ "version": "2026.8.7",
4
4
  "description": "Source-only senpi extension package for codemode evaluation tools",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -30,14 +30,14 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@babel/parser": "8.0.4",
33
- "@earendil-works/pi-ai": "npm:@code-yeongyu/senpi-ai@2026.8.5",
33
+ "@earendil-works/pi-ai": "npm:@code-yeongyu/senpi-ai@2026.8.7",
34
34
  "typebox": "1.3.8"
35
35
  },
36
36
  "peerDependencies": {
37
- "@code-yeongyu/senpi": "2026.8.5"
37
+ "@code-yeongyu/senpi": "2026.8.7"
38
38
  },
39
39
  "devDependencies": {
40
- "@code-yeongyu/senpi": "2026.8.5"
40
+ "@code-yeongyu/senpi": "2026.8.7"
41
41
  },
42
42
  "keywords": [
43
43
  "senpi",
@@ -757,7 +757,8 @@ function resultMetadata(
757
757
  ): RenderBlock[] {
758
758
  const metadata: string[] = [];
759
759
  if (details?.phase) metadata.push(`phase ${details.phase}`);
760
- if (!options.isPartial && typeof details?.durationMs === "number") metadata.push(`took ${details.durationMs}ms`);
760
+ if (!options.isPartial && typeof details?.durationMs === "number")
761
+ metadata.push(`took ${formatDuration(details.durationMs)}`);
761
762
  if (metadata.length === 0) return [];
762
763
  return [{ kind: "text", text: style(theme, "muted", metadata.join(" | ")) }];
763
764
  }