larkcc 0.12.3 → 0.12.5

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
@@ -7,6 +7,31 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.12.5] - 2026-05-09
11
+
12
+ ### Changed
13
+
14
+ - Sub-agent card: swap header title/subtitle (description as title, "Sub Agent" as subtitle), add header tags (elapsed time + tokens)
15
+ - Sub-agent card: display tool call sequence with arrow display; terminal state merges consecutive duplicates with counts
16
+ - Replace sub-agent footer column_set with header text_tag_list, removing duplicate info between header and footer
17
+ - Accumulate tool call history from progress events in TaskPanelController
18
+ - Logger timestamp color: `chalk.gray` → `chalk.blue`
19
+
20
+ ### Fixed
21
+
22
+ - Tool result truncation: remove 500-char early truncation in agent.ts (both CardKit and non-CardKit paths), let `buildToolResultPanel` handle it uniformly at 2000 chars
23
+ - Extract `STREAMING_TRUNCATE` (4000) and `TASK_SUMMARY_TRUNCATE` (3000) as shared constants, eliminating duplicated `TRUNCATE_LIMIT` in cardkit.ts and streaming.ts
24
+ - Remove unused `truncate()` helper and `THINKING_OVERFLOW_TRUNCATE` import in cardkit.ts
25
+
26
+ ## [0.12.4] - 2026-05-09
27
+
28
+ ### Changed
29
+
30
+ - Footer stats layout: single-line grey text → column_set with equal-width columns (input/output tokens, tool count)
31
+ - Tool panel header: plain text → markdown formatting (bold label + inline code detail)
32
+ - Task panel footer: single-line grey text → column_set
33
+ - Extract `buildStatsTags()` to eliminate duplicated tag construction in cardkit.ts and message.ts
34
+
10
35
  ## [0.12.3] - 2026-05-09
11
36
 
12
37
  ### Fixed