@jefuriiij/synthra 0.9.0 → 0.11.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 CHANGED
@@ -7,6 +7,42 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
7
7
 
8
8
  ---
9
9
 
10
+ ## [0.11.0] — 2026-06-24
11
+
12
+ ### Added
13
+
14
+ - **`graph_read` now shows which tests cover a symbol.** A symbol read appends a
15
+ `Tests (file-level): …` line listing the test files linked to the symbol's file
16
+ (via the graph's `tests` edges) — so after an edit you run the *right* test
17
+ instead of guessing or running the whole suite. Ordinary source files with no
18
+ linked test get a one-line "none linked" nudge.
19
+ - **`blast_radius` is now symbol-aware.** A `file::symbol` target returns the
20
+ exact caller **symbols** that transitively call it (`name → file:line`), plus a
21
+ line naming the test files that guard the impact — the precise view you want
22
+ before a rename. A bare file target keeps the existing file-level dependent
23
+ list. (The `graph_read` "Used by (N)" footer remains the cheap always-on
24
+ direct-caller summary; this is the complete, transitive, on-demand one.)
25
+
26
+ ---
27
+
28
+ ## [0.10.0] — 2026-06-20
29
+
30
+ ### Added
31
+
32
+ - **Terminal-bypass visibility (observe-only).** The Moat blocks `Grep`/`Glob`,
33
+ but the agent can still explore the codebase through the shell — `rg foo src/`,
34
+ `cat src/x.ts`, `find …` — and every such call is a read the graph could have
35
+ served in ~50 tokens. Synthra now watches `Bash` too: it classifies these
36
+ exploration commands and records each one — with whether the graph could have
37
+ answered it — to `bash_log.jsonl`, surfaced on the dashboard's Moat card as
38
+ "N terminal hunts · M the graph could answer." It is **observe-only — it never
39
+ blocks a Bash command** — so you can measure the leak before deciding whether
40
+ to close it. Conservative by design (it ignores `npm`/`git`/builds, stdin
41
+ filters like `… | grep`, and any command with a redirect). Disable with
42
+ `SYN_NO_BASH_OBSERVE`.
43
+
44
+ ---
45
+
10
46
  ## [0.9.0] — 2026-06-20
11
47
 
12
48
  ### Added