@altimateai/altimate-code 0.8.5 → 0.8.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.8.6] - 2026-06-08
9
+
10
+ ### Added
11
+
12
+ - **Session traces now work in headless `serve` mode — your VS Code "Altimate Code" chat sessions show up in `/traces` just like terminal sessions.** Sessions driven over `altimate serve` (the server behind the VS Code chat panel) had no TUI worker observing the event stream, so trace files were never written and `/traces` was always empty after a chat. The per-session tracing logic is now a shared `TraceConsumer` wired into both the TUI worker and `serve`, so IDE chat sessions produce the same incremental `ses_<id>.json` files — full multi-turn waterfall, recorded prompt, tool-call log, cost, and timing. `serve` now registers `SIGINT`/`SIGTERM`/`beforeExit` handlers that drain and finalize in-flight traces on shutdown (so a serve trace ends as `completed`, not `running`, and the process exits with signal-conventional codes), finalizes a session as soon as it is deleted, and finalizes all open sessions concurrently so a busy server isn't cut off mid-write by a container shutdown grace period. (#886)
13
+
8
14
  ## [0.8.5] - 2026-06-06
9
15
 
10
16
  ### Fixed
package/package.json CHANGED
@@ -7,20 +7,20 @@
7
7
  "scripts": {
8
8
  "postinstall": "bun ./postinstall.mjs || node ./postinstall.mjs"
9
9
  },
10
- "version": "0.8.5",
10
+ "version": "0.8.6",
11
11
  "license": "MIT",
12
12
  "dependencies": {
13
13
  "@altimateai/altimate-core": "0.4.0"
14
14
  },
15
15
  "optionalDependencies": {
16
- "@altimateai/altimate-code-linux-arm64": "0.8.5",
17
- "@altimateai/altimate-code-darwin-arm64": "0.8.5",
18
- "@altimateai/altimate-code-linux-x64-baseline": "0.8.5",
19
- "@altimateai/altimate-code-darwin-x64-baseline": "0.8.5",
20
- "@altimateai/altimate-code-windows-x64-baseline": "0.8.5",
21
- "@altimateai/altimate-code-darwin-x64": "0.8.5",
22
- "@altimateai/altimate-code-windows-x64": "0.8.5",
23
- "@altimateai/altimate-code-linux-x64": "0.8.5"
16
+ "@altimateai/altimate-code-linux-arm64": "0.8.6",
17
+ "@altimateai/altimate-code-darwin-arm64": "0.8.6",
18
+ "@altimateai/altimate-code-linux-x64-baseline": "0.8.6",
19
+ "@altimateai/altimate-code-darwin-x64-baseline": "0.8.6",
20
+ "@altimateai/altimate-code-windows-x64-baseline": "0.8.6",
21
+ "@altimateai/altimate-code-darwin-x64": "0.8.6",
22
+ "@altimateai/altimate-code-windows-x64": "0.8.6",
23
+ "@altimateai/altimate-code-linux-x64": "0.8.6"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "pg": ">=8",