@jefuriiij/synthra 0.8.0 → 0.9.0
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 +41 -0
- package/dist/cli/index.js +105 -47
- package/dist/cli/index.js.map +1 -1
- package/dist/dashboard/index.js +2 -2
- package/dist/dashboard/index.js.map +1 -1
- package/dist/server/index.js +103 -45
- package/dist/server/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,47 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.9.0] — 2026-06-20
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **The graph auto-reindexes edited files mid-session — it never goes stale.**
|
|
15
|
+
Previously the in-memory graph was a snapshot from the last `syn .`: edit a
|
|
16
|
+
file and `graph_read` / `blast_radius` / the dependency footer would keep
|
|
17
|
+
serving the *old* signature, body, and line ranges until the next manual scan.
|
|
18
|
+
Now the running server watches for source changes and, ~1s after edits settle,
|
|
19
|
+
re-runs the incremental scan and hot-swaps the graph in place — so reads always
|
|
20
|
+
reflect what's on disk. The rescan is incremental (only the changed file hits
|
|
21
|
+
tree-sitter; everything else reuses the content-hash parse cache) and debounced
|
|
22
|
+
so a burst of saves coalesces into one rebuild. Tune with
|
|
23
|
+
`SYN_REINDEX_DEBOUNCE_MS` (default `1000`); disable with `SYN_NO_AUTOREINDEX`.
|
|
24
|
+
|
|
25
|
+
### Fixed
|
|
26
|
+
|
|
27
|
+
- **In-session rescans (auto-reindex and branch-switch) no longer rewrite your
|
|
28
|
+
`CLAUDE.md` / `.gitignore`.** A rescan now skips the bootstrap step — it only
|
|
29
|
+
rebuilds the graph. This also closes a feedback loop the new auto-reindex would
|
|
30
|
+
otherwise hit (rewriting the watched `CLAUDE.md` on every rescan would retrigger
|
|
31
|
+
the watcher endlessly).
|
|
32
|
+
- **`CLAUDE.md` no longer accumulates a blank line on every `syn .`.** The policy
|
|
33
|
+
block patcher is now idempotent — re-running with nothing to change is a true
|
|
34
|
+
no-op instead of appending an empty line above the managed block each time.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## [0.8.1] — 2026-06-16
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
|
|
42
|
+
- **Dashboard polish.** The Overview is now a tidy bento — equal-height cards,
|
|
43
|
+
with the Savings and Total-spend cards sized to their content and a tall Moat
|
|
44
|
+
spanning the right that scrolls internally. The Arsenal view groups skills,
|
|
45
|
+
agents, and MCP servers into labeled sections by source ("In this project",
|
|
46
|
+
"Personal · this machine", and one per plugin) so a big toolkit is easy to
|
|
47
|
+
scan. Base text bumped to 14px for readability. UI-only; data unchanged.
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
10
51
|
## [0.8.0] — 2026-06-15
|
|
11
52
|
|
|
12
53
|
### Changed
|