@jefuriiij/synthra 0.6.0 → 0.8.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 +29 -0
- package/dist/cli/index.js +385 -1134
- package/dist/cli/index.js.map +1 -1
- package/dist/dashboard/index.js +277 -1026
- package/dist/dashboard/index.js.map +1 -1
- package/package.json +16 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,35 @@ For older versions, see [GitHub Releases](https://github.com/jefuriiij/synthra/r
|
|
|
7
7
|
|
|
8
8
|
---
|
|
9
9
|
|
|
10
|
+
## [0.8.0] — 2026-06-15
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- **The dashboard is rebuilt on Svelte + shadcn-svelte with a real sidebar.** A
|
|
15
|
+
persistent, collapsible left sidebar (Overview · Arsenal · FAQ) replaces the
|
|
16
|
+
old top-nav + cramped drawer; the **Arsenal is now a roomy first-class view**
|
|
17
|
+
(tabs, filter, expandable cards) instead of a 340px slide-out. Same data, same
|
|
18
|
+
endpoints, same numbers — only the UI changed. The Svelte/Tailwind/Vite
|
|
19
|
+
toolchain is build-time only: it compiles to a single inlined HTML the server
|
|
20
|
+
serves exactly as before, so the installed runtime and zero-config setup are
|
|
21
|
+
unchanged (no new runtime dependencies).
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## [0.7.0] — 2026-06-15
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- **Dashboard "Arsenal" drawer.** A collapsible panel (toggle in the nav) lists
|
|
30
|
+
everything Claude Code has available to you — **skills, subagents, and MCP
|
|
31
|
+
servers** — scoped project / personal / plugin, each expandable to its
|
|
32
|
+
description (agents also show tools + model). It scans your project `.claude/`,
|
|
33
|
+
your personal `~/.claude/`, and every installed plugin, so you never have to
|
|
34
|
+
drop to the CLI to remember what's in your toolkit. MCP entries are shown as
|
|
35
|
+
name / type / url only — auth headers and tokens are never read into the view.
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
10
39
|
## [0.6.0] — 2026-06-13
|
|
11
40
|
|
|
12
41
|
### Added
|