@jefuriiij/synthra 0.1.21 → 0.1.22
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 +35 -0
- package/dist/cli/index.js +47 -13
- package/dist/cli/index.js.map +1 -1
- package/dist/dashboard/index.js +4 -4
- package/dist/dashboard/index.js.map +1 -1
- package/dist/server/index.js +43 -9
- package/dist/server/index.js.map +1 -1
- package/package.json +3 -3
package/dist/dashboard/index.js
CHANGED
|
@@ -5,15 +5,15 @@ import { Hono } from "hono";
|
|
|
5
5
|
// package.json
|
|
6
6
|
var package_default = {
|
|
7
7
|
name: "@jefuriiij/synthra",
|
|
8
|
-
version: "0.1.
|
|
8
|
+
version: "0.1.22",
|
|
9
9
|
publishConfig: {
|
|
10
10
|
access: "public"
|
|
11
11
|
},
|
|
12
12
|
description: "Local context engine for AI coding assistants \u2014 graph-based context, branch-aware memory, real-time human-activity awareness, deterministic Grep/Glob gating, and a live token dashboard.",
|
|
13
13
|
type: "module",
|
|
14
14
|
bin: {
|
|
15
|
-
syn: "
|
|
16
|
-
synthra: "
|
|
15
|
+
syn: "bin/syn",
|
|
16
|
+
synthra: "bin/syn"
|
|
17
17
|
},
|
|
18
18
|
scripts: {
|
|
19
19
|
build: "tsup",
|
|
@@ -1026,7 +1026,7 @@ var public_default = `<!doctype html>
|
|
|
1026
1026
|
const el = $('#proj-chart');
|
|
1027
1027
|
el.innerHTML = '';
|
|
1028
1028
|
if (!projects.length) {
|
|
1029
|
-
el.innerHTML = '<div class="empty">No projects yet.</div>';
|
|
1029
|
+
el.innerHTML = '<div class="empty">No projects yet \u2014 run <code>syn .</code> in a project to start.</div>';
|
|
1030
1030
|
return;
|
|
1031
1031
|
}
|
|
1032
1032
|
const ranked = [...projects].sort((a, b) => (b.total_turns || 0) - (a.total_turns || 0));
|