@jefuriiij/synthra 0.16.1 → 0.17.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 +17 -0
- package/README.md +2 -0
- package/dist/cli/index.js +680 -632
- package/dist/cli/index.js.map +1 -1
- package/dist/dashboard/index.js +322 -90
- package/dist/dashboard/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.17.0] — 2026-07-02
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Report an issue (or suggest a feature) straight from the dashboard.** A new
|
|
15
|
+
**Report** button in the sidebar runs the doctor checks live and shows the
|
|
16
|
+
results — often that alone tells you the fix (e.g. "jq missing — hooks silently
|
|
17
|
+
no-op"). One click copies a markdown diagnostic (Synthra/OS/Node versions +
|
|
18
|
+
every check, home paths redacted to `~`), and two buttons open GitHub's bug /
|
|
19
|
+
feature forms — paste and submit. Nothing is ever sent automatically.
|
|
20
|
+
- **`syn doctor --report`** — the same copy-pasteable diagnostic from the
|
|
21
|
+
terminal.
|
|
22
|
+
- **GitHub issue templates** — the bug form asks for the diagnostic report, so
|
|
23
|
+
every report arrives debuggable.
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
10
27
|
## [0.16.1] — 2026-07-02
|
|
11
28
|
|
|
12
29
|
### Added
|
package/README.md
CHANGED
|
@@ -109,6 +109,8 @@ syn scan [path] # Scan only — walk + parse + write graph.
|
|
|
109
109
|
syn serve [path] # Start the MCP server only.
|
|
110
110
|
syn dashboard [path] # Run only the token dashboard (standalone process).
|
|
111
111
|
syn doctor [path] # Diagnose this project's Synthra setup + environment.
|
|
112
|
+
syn doctor --report # Copy-pasteable markdown diagnostic for GitHub issues
|
|
113
|
+
# (also available via the dashboard's Report button).
|
|
112
114
|
syn remove [path] # Uninstall Synthra from a project (accidental `syn .`?
|
|
113
115
|
# This reverses it). Asks [y/N]; --yes to skip. Your own
|
|
114
116
|
# gitignore lines / CLAUDE.md content / hooks survive.
|