@oh-my-pi/pi-coding-agent 3.9.1337 → 3.13.1337

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
@@ -2,6 +2,8 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [3.13.1337] - 2026-01-04
6
+
5
7
  ## [3.9.1337] - 2026-01-04
6
8
 
7
9
  ### Changed
@@ -12,6 +14,7 @@
12
14
 
13
15
  ### Fixed
14
16
 
17
+ - Fixed status line not updating token counts and cost after starting a new session
15
18
  - Fixed stale diagnostics persisting after file content changes in LSP client
16
19
 
17
20
  ## [3.8.1337] - 2026-01-04
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oh-my-pi/pi-coding-agent",
3
- "version": "3.9.1337",
3
+ "version": "3.13.1337",
4
4
  "description": "Coding agent CLI with read, bash, edit, write tools and session management",
5
5
  "type": "module",
6
6
  "ompConfig": {
@@ -39,9 +39,9 @@
39
39
  "prepublishOnly": "bun run generate-template && bun run clean && bun run build"
40
40
  },
41
41
  "dependencies": {
42
- "@oh-my-pi/pi-agent-core": "3.9.1337",
43
- "@oh-my-pi/pi-ai": "3.9.1337",
44
- "@oh-my-pi/pi-tui": "3.9.1337",
42
+ "@oh-my-pi/pi-agent-core": "3.13.1337",
43
+ "@oh-my-pi/pi-ai": "3.13.1337",
44
+ "@oh-my-pi/pi-tui": "3.13.1337",
45
45
  "@sinclair/typebox": "^0.34.46",
46
46
  "ajv": "^8.17.1",
47
47
  "chalk": "^5.5.0",
@@ -2408,6 +2408,10 @@ export class InteractiveMode {
2408
2408
  // New session via session (emits hook and tool session events)
2409
2409
  await this.session.newSession();
2410
2410
 
2411
+ // Update status line (token counts, cost reset)
2412
+ this.statusLine.invalidate();
2413
+ this.updateEditorTopBorder();
2414
+
2411
2415
  // Clear UI state
2412
2416
  this.chatContainer.clear();
2413
2417
  this.pendingMessagesContainer.clear();