@jefuriiij/synthra 0.1.13 → 0.1.15

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,44 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.1.15] — 2026-05-29
11
+
12
+ ### Changed
13
+
14
+ - **Recent turns are paginated.** The dashboard now carries up to 500 turns
15
+ (was 25) and shows them 25 per page with Prev/Next controls — so you can
16
+ browse history instead of only seeing the last 25. Configurable via
17
+ `SYN_DASHBOARD_RECENT_N` (default 500).
18
+ - **Model-usage donut is now all-time, not last-25.** It was tallying models
19
+ from the capped recent-turns window, so a run of >25 same-model turns showed
20
+ that model at 100% and hid the rest. It now sums the uncapped per-project
21
+ model counts, so it always reflects your true all-time split.
22
+ - **Dashboard poll slowed 2s → 10s.** Lighter on resources and steadier to
23
+ read; pagination stays live (the current page re-renders each poll).
24
+
25
+ ---
26
+
27
+ ## [0.1.14] — 2026-05-29
28
+
29
+ ### Changed
30
+
31
+ - **Dashboard visual refresh.** No API surface change — all visual / UX.
32
+ - Removed the hero strip and the standalone Legend card. Date + active
33
+ project now live as compact chips inside the top nav (active-project
34
+ path uses RTL truncation so the folder name stays visible).
35
+ - New **Projects bar chart** in the left column — colored bars ranked
36
+ by turn count. Stable per-name OKLCH palette (8 colors, hash-keyed)
37
+ so a project keeps the same color across sessions. Click any row to
38
+ open its full breakdown.
39
+ - **Donut legend** gains a turn-count column alongside the percentage.
40
+ - **Savings card** elevated: radial green backdrop, money figure 40px,
41
+ soft glow — makes the "what Synthra saved you" number the visual
42
+ anchor of the dashboard.
43
+ - **Recent turns column headers** are now hover-explainable.
44
+ - Active-project chip tightens + month name hides under 1100px width.
45
+
46
+ ---
47
+
10
48
  ## [0.1.13] — 2026-05-29
11
49
 
12
50
  ### Fixed
package/README.md CHANGED
@@ -189,6 +189,17 @@ If you upgrade via `npm install -g @jefuriiij/synthra@latest` directly (outside
189
189
 
190
190
  ---
191
191
 
192
+ ## Platform support
193
+
194
+ | Platform | Status |
195
+ |---|---|
196
+ | **Windows** | ✅ Tested. PowerShell hook scripts; primary development target. |
197
+ | **macOS / Linux** | ⚠️ Best-effort. Bash hook scripts ship and the installer selects them automatically, but the full `syn .` flow hasn't been verified on POSIX yet. The Stop hook (token logging) needs `jq` on PATH or it silently no-ops. |
198
+
199
+ The platform-agnostic parts — `syn scan`, `syn serve`, `syn dashboard`, the MCP server, and the dashboard — are pure Node and run anywhere Node 18+ does. The hook integration is what's Windows-verified; POSIX is wired but untested. If you run it on macOS/Linux, [open an issue](https://github.com/jefuriiij/synthra/issues) with what you find.
200
+
201
+ ---
202
+
192
203
  ## Development
193
204
 
194
205
  ```bash
package/ROADMAP.md CHANGED
@@ -317,7 +317,7 @@ The acceptance test for "Synthra works": run `syn .` in a real repo (`windsor-st
317
317
  ## Out of scope for v0.1 (deferred)
318
318
 
319
319
  - IDE companion extension (VS Code / Antigravity / Cursor) — designed for, not built yet
320
- - Diff-tracked incremental graph updates (M1 does full re-parse; fine for repos under ~500 files)
320
+ - Diff-tracked incremental graph updates + lazy on-disk graph (v0.1 does a full re-parse each run and holds the whole graph, file contents included, in memory — tested fine to a few hundred files at sub-second scans, comfortable into the low thousands; very large monorepos need this)
321
321
  - Embedding-based semantic retrieval (keyword scoring is enough to start)
322
322
  - Codex CLI / Cursor / Gemini support (same MCP, different launcher — fast follow-on)
323
323
  - Self-update mechanism (manually `npm i -g synthra@latest` for now)