ltcai 4.0.0 → 4.0.1

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.
Files changed (108) hide show
  1. package/README.md +37 -33
  2. package/docs/CHANGELOG.md +64 -0
  3. package/docs/REALTIME_COLLABORATION.md +3 -3
  4. package/docs/V3_FRONTEND.md +9 -8
  5. package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +86 -43
  6. package/docs/kg-schema.md +6 -2
  7. package/docs/spec-vs-impl.md +10 -10
  8. package/kg_schema.py +2 -603
  9. package/knowledge_graph.py +37 -4958
  10. package/latticeai/__init__.py +1 -1
  11. package/latticeai/api/admin.py +15 -16
  12. package/latticeai/api/agents.py +13 -6
  13. package/latticeai/api/auth.py +19 -11
  14. package/latticeai/api/invitations.py +100 -0
  15. package/latticeai/api/knowledge_graph.py +4 -11
  16. package/latticeai/api/plugins.py +3 -6
  17. package/latticeai/api/realtime.py +4 -7
  18. package/latticeai/api/static_routes.py +9 -12
  19. package/latticeai/api/ui_redirects.py +26 -0
  20. package/latticeai/api/workflow_designer.py +39 -6
  21. package/latticeai/api/workspace.py +24 -10
  22. package/latticeai/app_factory.py +88 -17
  23. package/latticeai/brain/_kg_common.py +1123 -0
  24. package/latticeai/brain/discovery.py +1455 -0
  25. package/latticeai/brain/documents.py +218 -0
  26. package/latticeai/brain/ingest.py +644 -0
  27. package/latticeai/brain/projection.py +561 -0
  28. package/latticeai/brain/provenance.py +401 -0
  29. package/latticeai/brain/retrieval.py +1316 -0
  30. package/latticeai/brain/schema.py +640 -0
  31. package/latticeai/brain/store.py +216 -0
  32. package/latticeai/brain/write_master.py +225 -0
  33. package/latticeai/core/invitations.py +131 -0
  34. package/latticeai/core/marketplace.py +1 -1
  35. package/latticeai/core/multi_agent.py +1 -1
  36. package/latticeai/core/policy.py +54 -0
  37. package/latticeai/core/realtime.py +65 -44
  38. package/latticeai/core/sessions.py +31 -5
  39. package/latticeai/core/users.py +147 -0
  40. package/latticeai/core/workspace_os.py +420 -20
  41. package/latticeai/services/agent_runtime.py +242 -4
  42. package/latticeai/services/run_executor.py +328 -0
  43. package/latticeai/services/workspace_service.py +27 -19
  44. package/package.json +2 -14
  45. package/scripts/lint_v3.mjs +23 -0
  46. package/static/v3/asset-manifest.json +21 -14
  47. package/static/v3/js/{app.356e6452.js → app.c5c80c46.js} +1 -1
  48. package/static/v3/js/core/{api.7a308b89.js → api.ba0fbf14.js} +58 -1
  49. package/static/v3/js/core/api.js +57 -0
  50. package/static/v3/js/core/i18n.880e1fec.js +575 -0
  51. package/static/v3/js/core/i18n.js +575 -0
  52. package/static/v3/js/core/routes.37522821.js +101 -0
  53. package/static/v3/js/core/routes.js +71 -63
  54. package/static/v3/js/core/{shell.a1657f20.js → shell.e3f6bbfa.js} +67 -38
  55. package/static/v3/js/core/shell.js +65 -36
  56. package/static/v3/js/core/{store.204a08b2.js → store.7b2aa044.js} +10 -0
  57. package/static/v3/js/core/store.js +10 -0
  58. package/static/v3/js/views/account.eff40715.js +143 -0
  59. package/static/v3/js/views/account.js +143 -0
  60. package/static/v3/js/views/activity.0d271ef9.js +67 -0
  61. package/static/v3/js/views/activity.js +67 -0
  62. package/static/v3/js/views/{admin-users.03bac88c.js → admin-users.f7ac7b43.js} +4 -6
  63. package/static/v3/js/views/admin-users.js +4 -6
  64. package/static/v3/js/views/{agents.014d0b74.js → agents.17c5288d.js} +35 -12
  65. package/static/v3/js/views/agents.js +35 -12
  66. package/static/v3/js/views/{chat.e6dd7dd0.js → chat.e250e2cc.js} +23 -0
  67. package/static/v3/js/views/chat.js +23 -0
  68. package/static/v3/js/views/{knowledge-graph.5e40cbeb.js → knowledge-graph.4d09c537.js} +27 -7
  69. package/static/v3/js/views/knowledge-graph.js +27 -7
  70. package/static/v3/js/views/network.52a4f181.js +97 -0
  71. package/static/v3/js/views/network.js +97 -0
  72. package/static/v3/js/views/{planning.9ac3e313.js → planning.4876fd77.js} +26 -5
  73. package/static/v3/js/views/planning.js +26 -5
  74. package/static/v3/js/views/runs.b63b2afa.js +144 -0
  75. package/static/v3/js/views/runs.js +144 -0
  76. package/static/v3/js/views/{settings.8631fa5e.js → settings.b7140634.js} +7 -8
  77. package/static/v3/js/views/settings.js +7 -8
  78. package/static/v3/js/views/snapshots.6f5db095.js +135 -0
  79. package/static/v3/js/views/snapshots.js +135 -0
  80. package/static/v3/js/views/{workflows.26c57290.js → workflows.7752225a.js} +87 -2
  81. package/static/v3/js/views/workflows.js +87 -2
  82. package/static/v3/js/views/workspace-admin.c466029b.js +156 -0
  83. package/static/v3/js/views/workspace-admin.js +156 -0
  84. package/static/account.html +0 -113
  85. package/static/activity.html +0 -73
  86. package/static/admin.html +0 -486
  87. package/static/agents.html +0 -139
  88. package/static/chat.html +0 -841
  89. package/static/css/reference/account.css +0 -439
  90. package/static/css/reference/admin.css +0 -610
  91. package/static/css/reference/base.css +0 -1661
  92. package/static/css/reference/chat.css +0 -4623
  93. package/static/css/reference/graph.css +0 -1016
  94. package/static/css/responsive.css +0 -861
  95. package/static/graph.html +0 -122
  96. package/static/platform.css +0 -104
  97. package/static/plugins.html +0 -136
  98. package/static/scripts/account.js +0 -238
  99. package/static/scripts/admin.js +0 -1614
  100. package/static/scripts/chat.js +0 -5081
  101. package/static/scripts/graph.js +0 -1804
  102. package/static/scripts/platform.js +0 -64
  103. package/static/scripts/ux.js +0 -167
  104. package/static/scripts/workspace.js +0 -948
  105. package/static/v3/js/core/routes.7222343d.js +0 -93
  106. package/static/workflows.html +0 -146
  107. package/static/workspace.css +0 -1121
  108. package/static/workspace.html +0 -357
@@ -0,0 +1,144 @@
1
+ import { t } from "../core/i18n.js";
2
+
3
+ const ACTIVE = new Set(["queued", "running", "in_progress", "active", "cancelling"]);
4
+
5
+ export async function render(ctx) {
6
+ const { h, icon, api, c, toast } = ctx;
7
+ const agentHost = h("div", c.loading({ lines: 4 }));
8
+ const workflowHost = h("div", c.loading({ lines: 4 }));
9
+ const approvalHost = h("div", c.loading({ lines: 4 }));
10
+ const progressHost = h("div", c.loading({ lines: 3 }));
11
+
12
+ const root = h("div.lt3-stack-6",
13
+ c.viewHeader({ eyebrow: t("runs.eyebrow"), title: t("runs.title"), sub: t("runs.sub") }),
14
+ h("div.lt3-statrow", progressHost),
15
+ c.panel({ title: t("runs.approvals"), children: approvalHost }),
16
+ c.panel({ title: t("runs.agentRuns"), children: agentHost }),
17
+ c.panel({ title: t("runs.workflowRuns"), children: workflowHost }),
18
+ );
19
+
20
+ await load();
21
+ const poll = setInterval(load, 5000);
22
+ root.addEventListener("DOMNodeRemovedFromDocument", () => clearInterval(poll), { once: true });
23
+ return root;
24
+
25
+ async function load() {
26
+ const [agent, workflow, pending] = await Promise.all([
27
+ api.agentRuntime(),
28
+ api.workflowRuns(),
29
+ api.permissionsPending(),
30
+ ]);
31
+ const agentRuns = Array.isArray(agent.data?.runs) ? agent.data.runs : [];
32
+ const workflowRuns = Array.isArray(workflow.data?.runs) ? workflow.data.runs : [];
33
+ renderProgress(agentRuns, workflowRuns, pending.data || {});
34
+ agentHost.replaceChildren(runTable(ctx, agentRuns, "agent", agent.source));
35
+ workflowHost.replaceChildren(runTable(ctx, workflowRuns, "workflow", workflow.source));
36
+ approvalHost.replaceChildren(approvalList(ctx, workflowRuns, pending.data || {}, workflow.source || pending.source));
37
+ }
38
+
39
+ function renderProgress(agentRuns, workflowRuns, pending) {
40
+ const all = [...agentRuns, ...workflowRuns];
41
+ const active = all.filter((r) => ACTIVE.has(String(r.status || "").toLowerCase())).length;
42
+ const paused = workflowRuns.filter((r) => String(r.status || "").toLowerCase() === "awaiting_approval").length;
43
+ const approvals = Object.keys(pending.pending || {}).length + paused;
44
+ progressHost.replaceChildren(
45
+ c.stat({ label: t("runs.progress"), value: String(active), icon: "progress" }),
46
+ c.stat({ label: t("runs.approvals"), value: String(approvals), icon: "circle-check" }),
47
+ c.stat({ label: t("runs.agentRuns"), value: String(agentRuns.length), icon: "robot" }),
48
+ c.stat({ label: t("runs.workflowRuns"), value: String(workflowRuns.length), icon: "sitemap" }),
49
+ );
50
+ }
51
+
52
+ function runTable(ctx2, rows, kind, source) {
53
+ const { h, c } = ctx2;
54
+ return h("div.lt3-stack-3",
55
+ h("div.lt3-row-2", c.sourceBadge(source)),
56
+ rows.length ? c.table([
57
+ { key: "status", label: t("common.status"), width: "1%", render: (r) => c.statePill(mapStatus(r.status)) },
58
+ { key: "mode", label: t("runs.mode"), width: "1%", render: (r) => c.pill(r.mode || r.execution_mode || "live") },
59
+ { key: "name", label: t("common.name"), render: (r) => h("div", h("b", r.name || r.workflow_name || r.agent_id || r.workflow_id || r.id), h("div.lt3-faint", { style: { "font-family": "var(--lt3-font-mono)", "font-size": "var(--lt3-text-2xs)" } }, r.id || r.run_id || "")) },
60
+ { key: "when", label: t("common.updated"), width: "1%", render: (r) => h("span.lt3-faint", { style: { "white-space": "nowrap" } }, fmt(r.updated_at || r.created_at || r.completed_at)) },
61
+ { key: "timeline", label: t("runs.progress"), render: (r) => miniTimeline(ctx2, r.timeline || []) },
62
+ { key: "act", label: "", width: "1%", render: (r) => ACTIVE.has(String(r.status || "").toLowerCase())
63
+ ? h("button.lt3-btn.lt3-btn--danger.lt3-btn--sm", { on: { click: () => cancelRun(kind, r.id || r.run_id) } }, c.icon("player-stop"), t("common.stop"))
64
+ : null },
65
+ ], rows.slice(0, 40)) : c.emptyState({ icon: "history-off", title: kind === "agent" ? t("runs.agentRuns") : t("runs.workflowRuns"), body: t("common.none") }),
66
+ );
67
+ }
68
+
69
+ function approvalList(ctx2, workflowRuns, pending, source) {
70
+ const workflowApprovals = workflowRuns.filter((r) => String(r.status || "").toLowerCase() === "awaiting_approval");
71
+ const permissionRows = Object.entries(pending.pending || {}).map(([token, rec]) => ({ token, ...rec }));
72
+ const nodes = [];
73
+ nodes.push(h("div.lt3-row-2", c.sourceBadge(source)));
74
+ if (workflowApprovals.length) {
75
+ nodes.push(...workflowApprovals.map((run) => c.card(h("div.lt3-stack-3",
76
+ h("div.lt3-row", { style: { "justify-content": "space-between" } },
77
+ h("div", h("b", run.name || run.workflow_name || run.workflow_id), h("div.lt3-faint", t("runs.approvalPaused")), run.pause?.node ? h("div.lt3-faint", run.pause.node) : null),
78
+ c.statePill("pending"),
79
+ ),
80
+ miniTimeline(ctx2, run.timeline || []),
81
+ h("div.lt3-row-2",
82
+ h("button.lt3-btn.lt3-btn--primary.lt3-btn--sm", { on: { click: () => decideWorkflow(run.id || run.run_id, true) } }, icon("circle-check"), t("common.approve")),
83
+ h("button.lt3-btn.lt3-btn--ghost.lt3-btn--sm", { on: { click: () => decideWorkflow(run.id || run.run_id, false) } }, icon("circle-x"), t("common.deny")),
84
+ ),
85
+ ), { flat: true })));
86
+ }
87
+ if (permissionRows.length) {
88
+ nodes.push(...permissionRows.map((rec) => c.card(h("div.lt3-stack-3",
89
+ h("div", h("b", rec.action_label || rec.action || "permission"), h("div.lt3-faint", rec.path || rec.token), h("div.lt3-faint", { style: { "font-family": "var(--lt3-font-mono)", "font-size": "var(--lt3-text-2xs)" } }, rec.token)),
90
+ h("div.lt3-row-2",
91
+ h("button.lt3-btn.lt3-btn--primary.lt3-btn--sm", { on: { click: () => decidePermission(rec.token, true) } }, icon("circle-check"), t("common.approve")),
92
+ h("button.lt3-btn.lt3-btn--ghost.lt3-btn--sm", { on: { click: () => decidePermission(rec.token, false) } }, icon("circle-x"), t("common.deny")),
93
+ ),
94
+ ), { flat: true })));
95
+ }
96
+ if (nodes.length === 1) nodes.push(c.emptyState({ icon: "circle-check", title: t("runs.approvals"), body: t("common.none") }));
97
+ return h("div.lt3-stack-3", nodes);
98
+ }
99
+
100
+ function miniTimeline(ctx2, timeline) {
101
+ const { h, c } = ctx2;
102
+ if (!timeline.length) return h("span.lt3-faint", t("common.none"));
103
+ return h("div.lt3-stack-2", timeline.slice(-3).map((item) =>
104
+ h("div.lt3-row-2", c.statePill(mapStatus(item.status || item.event)), h("span.lt3-faint", item.event || item.message || item.step || "event"))));
105
+ }
106
+
107
+ async function cancelRun(kind, runId) {
108
+ if (!runId) return;
109
+ const res = kind === "agent" ? await api.stopAgentRun(runId) : await api.stopWorkflowRun(runId);
110
+ toast(resultText(res, t("runs.cancelled")), res.ok ? "ok" : "err");
111
+ load();
112
+ }
113
+ async function decideWorkflow(runId, approved) {
114
+ const res = await api.resumeWorkflowRun(runId, approved);
115
+ toast(resultText(res, t("runs.decided")), res.ok ? "ok" : "err");
116
+ load();
117
+ }
118
+ async function decidePermission(token, approved) {
119
+ const res = approved ? await api.approvePermission(token) : await api.denyPermission(token);
120
+ toast(resultText(res, t("runs.decided")), res.ok ? "ok" : "err");
121
+ load();
122
+ }
123
+ }
124
+
125
+ function mapStatus(status) {
126
+ const s = String(status || "").toLowerCase();
127
+ if (s === "ok" || s === "completed" || s === "success" || s === "resumed") return "ready";
128
+ if (s === "failed" || s === "error" || s === "denied" || s === "rejected") return "failed";
129
+ if (s === "running" || s === "queued" || s === "in_progress" || s === "cancelling") return "active";
130
+ if (s === "awaiting_approval" || s === "pending") return "pending";
131
+ if (s === "cancelled" || s === "interrupted") return "warn";
132
+ return s || "idle";
133
+ }
134
+
135
+ function fmt(ts) {
136
+ if (!ts) return "—";
137
+ try { return new Date(ts).toLocaleString(); } catch { return String(ts); }
138
+ }
139
+
140
+ function resultText(res, okText) {
141
+ if (res && res.ok) return okText;
142
+ const data = (res && res.data) || {};
143
+ return String(data.detail || data.error || res?.error || t("common.unavailable"));
144
+ }
@@ -5,6 +5,8 @@
5
5
  * is talking to a live backend or an unavailable surface.
6
6
  * ========================================================================== */
7
7
 
8
+ import { getI18nLanguage, languageOptions, t } from "../core/i18n.880e1fec.js";
9
+
8
10
  const MODE_DEFS = [
9
11
  { key: "basic", label: "Basic", desc: "Chat, search, and files — the essentials, nothing else." },
10
12
  { key: "advanced", label: "Advanced", desc: "Adds the pipeline, agents, and model runtime surfaces." },
@@ -212,17 +214,14 @@ function workspacePanel({ h, icon, store, c, toast, api }) {
212
214
  };
213
215
  createBtn.addEventListener("click", createOrg);
214
216
 
215
- let savedLang = "en";
216
- try { savedLang = localStorage.getItem("lt3-lang") || "en"; } catch {}
217
217
  const langSelect = h("select.lt3-select", {
218
- "aria-label": "Interface language", value: savedLang,
218
+ "aria-label": t("settings.language"), value: getI18nLanguage(),
219
219
  on: { change: (e) => {
220
- try { localStorage.setItem("lt3-lang", e.target.value); } catch {}
221
- toast(`Interface language set to ${e.target.selectedOptions[0].text} (saved on this device).`, "ok");
220
+ store.setLang(e.target.value);
221
+ toast(t("settings.languageSaved", { language: e.target.selectedOptions[0].text }), "ok");
222
222
  } },
223
223
  },
224
- h("option", { value: "en" }, "English"),
225
- h("option", { value: "ko" }, "한국어"),
224
+ languageOptions().map((lang) => h("option", { value: lang.key }, lang.label)),
226
225
  );
227
226
 
228
227
  return c.panel({
@@ -245,7 +244,7 @@ function workspacePanel({ h, icon, store, c, toast, api }) {
245
244
  h("span.lt3-faint", { style: { "font-size": "var(--lt3-text-xs)" } }, "Creates a shared organization workspace on this server."),
246
245
  ),
247
246
  h("div.lt3-field",
248
- h("label.lt3-label", { for: "lt3-set-lang", style: { "display": "flex", "gap": "var(--lt3-space-2)", "align-items": "center" } }, icon("language"), "Language"),
247
+ h("label.lt3-label", { for: "lt3-set-lang", style: { "display": "flex", "gap": "var(--lt3-space-2)", "align-items": "center" } }, icon("language"), t("settings.language")),
249
248
  h("div", { style: { "max-width": "260px" } }, langSelect),
250
249
  ),
251
250
  ),
@@ -5,6 +5,8 @@
5
5
  * is talking to a live backend or an unavailable surface.
6
6
  * ========================================================================== */
7
7
 
8
+ import { getI18nLanguage, languageOptions, t } from "../core/i18n.js";
9
+
8
10
  const MODE_DEFS = [
9
11
  { key: "basic", label: "Basic", desc: "Chat, search, and files — the essentials, nothing else." },
10
12
  { key: "advanced", label: "Advanced", desc: "Adds the pipeline, agents, and model runtime surfaces." },
@@ -212,17 +214,14 @@ function workspacePanel({ h, icon, store, c, toast, api }) {
212
214
  };
213
215
  createBtn.addEventListener("click", createOrg);
214
216
 
215
- let savedLang = "en";
216
- try { savedLang = localStorage.getItem("lt3-lang") || "en"; } catch {}
217
217
  const langSelect = h("select.lt3-select", {
218
- "aria-label": "Interface language", value: savedLang,
218
+ "aria-label": t("settings.language"), value: getI18nLanguage(),
219
219
  on: { change: (e) => {
220
- try { localStorage.setItem("lt3-lang", e.target.value); } catch {}
221
- toast(`Interface language set to ${e.target.selectedOptions[0].text} (saved on this device).`, "ok");
220
+ store.setLang(e.target.value);
221
+ toast(t("settings.languageSaved", { language: e.target.selectedOptions[0].text }), "ok");
222
222
  } },
223
223
  },
224
- h("option", { value: "en" }, "English"),
225
- h("option", { value: "ko" }, "한국어"),
224
+ languageOptions().map((lang) => h("option", { value: lang.key }, lang.label)),
226
225
  );
227
226
 
228
227
  return c.panel({
@@ -245,7 +244,7 @@ function workspacePanel({ h, icon, store, c, toast, api }) {
245
244
  h("span.lt3-faint", { style: { "font-size": "var(--lt3-text-xs)" } }, "Creates a shared organization workspace on this server."),
246
245
  ),
247
246
  h("div.lt3-field",
248
- h("label.lt3-label", { for: "lt3-set-lang", style: { "display": "flex", "gap": "var(--lt3-space-2)", "align-items": "center" } }, icon("language"), "Language"),
247
+ h("label.lt3-label", { for: "lt3-set-lang", style: { "display": "flex", "gap": "var(--lt3-space-2)", "align-items": "center" } }, icon("language"), t("settings.language")),
249
248
  h("div", { style: { "max-width": "260px" } }, langSelect),
250
249
  ),
251
250
  ),
@@ -0,0 +1,135 @@
1
+ import { t } from "../core/i18n.880e1fec.js";
2
+
3
+ export async function render(ctx) {
4
+ const { h, icon, api, c, toast } = ctx;
5
+ const host = h("div.lt3-stack-6", c.loading({ lines: 5, block: true }));
6
+
7
+ async function load() {
8
+ const [snaps, timeline] = await Promise.all([api.snapshots(), api.timeMachine(80)]);
9
+ const rows = normalize(snaps.data);
10
+ host.replaceChildren(
11
+ c.viewHeader({
12
+ eyebrow: t("snapshots.eyebrow"),
13
+ title: t("snapshots.title"),
14
+ sub: t("snapshots.sub"),
15
+ actions: [c.sourceBadge(snaps.source)],
16
+ }),
17
+ createPanel(),
18
+ comparePanel(rows),
19
+ snapshotTable(rows),
20
+ timelinePanel(timeline),
21
+ );
22
+ }
23
+
24
+ function createPanel() {
25
+ const name = h("input.lt3-input", { type: "text", placeholder: t("snapshots.name"), "aria-label": t("snapshots.name") });
26
+ return c.panel({
27
+ title: t("snapshots.create"),
28
+ children: h("div.lt3-row-2",
29
+ name,
30
+ h("button.lt3-btn.lt3-btn--primary", { on: { click: async () => {
31
+ const res = await api.createSnapshot(name.value.trim() || t("snapshots.title"));
32
+ toast(resultText(res, t("snapshots.created")), res.ok ? "ok" : "err");
33
+ if (res.ok) { name.value = ""; load(); }
34
+ } } }, icon("camera"), t("snapshots.create")),
35
+ ),
36
+ });
37
+ }
38
+
39
+ function comparePanel(rows) {
40
+ const before = select(rows);
41
+ const after = select(rows);
42
+ const result = h("div");
43
+ return c.panel({
44
+ title: t("snapshots.compare"),
45
+ children: h("div.lt3-stack-4",
46
+ h("div.lt3-row-2", before, after, h("button.lt3-btn.lt3-btn--primary", { on: { click: async () => {
47
+ if (!before.value || !after.value) return;
48
+ result.replaceChildren(c.loading({ lines: 2 }));
49
+ const res = await api.compareSnapshots(before.value, after.value);
50
+ const d = res.data || {};
51
+ result.replaceChildren(res.ok
52
+ ? h("dl.lt3-keyval",
53
+ h("dt", "nodes_added"), h("dd", String(d.summary?.nodes_added ?? 0)),
54
+ h("dt", "nodes_removed"), h("dd", String(d.summary?.nodes_removed ?? 0)),
55
+ h("dt", "edges_added"), h("dd", String(d.summary?.edges_added ?? 0)),
56
+ h("dt", "edges_removed"), h("dd", String(d.summary?.edges_removed ?? 0)),
57
+ )
58
+ : c.banner(resultText(res, t("common.unavailable")), "err"));
59
+ } } }, icon("git-compare"), t("snapshots.compare"))),
60
+ result,
61
+ ),
62
+ });
63
+ }
64
+
65
+ function snapshotTable(rows) {
66
+ if (!rows.length) return c.emptyState({ icon: "history", title: t("snapshots.title"), body: t("common.none") });
67
+ return c.panel({
68
+ title: t("snapshots.title"),
69
+ children: c.table([
70
+ { key: "name", label: t("common.name"), render: (r) => h("div", h("b", r.name || r.id), h("div.lt3-faint", { style: { "font-family": "var(--lt3-font-mono)", "font-size": "var(--lt3-text-2xs)" } }, r.id)) },
71
+ { key: "created", label: t("common.created"), width: "1%", render: (r) => h("span.lt3-faint", { style: { "white-space": "nowrap" } }, fmt(r.created_at)) },
72
+ { key: "nodes", label: "nodes", width: "1%", render: (r) => String(r.node_count ?? 0) },
73
+ { key: "edges", label: "edges", width: "1%", render: (r) => String(r.edge_count ?? 0) },
74
+ { key: "actions", label: "", width: "1%", render: (r) => h("div.lt3-row-2",
75
+ h("button.lt3-btn.lt3-btn--subtle.lt3-btn--sm", { on: { click: () => exportSnapshot(r.id) } }, icon("download"), t("snapshots.export")),
76
+ h("button.lt3-btn.lt3-btn--ghost.lt3-btn--sm", { on: { click: () => restoreSnapshot(r.id) } }, icon("restore"), t("snapshots.restore")),
77
+ ) },
78
+ ], rows),
79
+ });
80
+ }
81
+
82
+ function timelinePanel(res) {
83
+ const events = Array.isArray(res.data?.events) ? res.data.events : [];
84
+ return c.panel({
85
+ title: t("snapshots.timeline"),
86
+ actions: [c.sourceBadge(res.source)],
87
+ children: events.length ? c.table([
88
+ { key: "event", label: t("common.status"), render: (e) => h("span", e.event_type || e.area || "event") },
89
+ { key: "area", label: t("common.type"), width: "1%", render: (e) => c.pill(e.area || "workspace") },
90
+ { key: "when", label: t("common.created"), width: "1%", render: (e) => h("span.lt3-faint", { style: { "white-space": "nowrap" } }, fmt(e.timestamp)) },
91
+ ], events.slice(0, 40)) : c.emptyState({ icon: "history-off", title: t("snapshots.timeline"), body: t("common.none") }),
92
+ });
93
+ }
94
+
95
+ async function exportSnapshot(id) {
96
+ const res = await api.snapshotExport(id);
97
+ toast(resultText(res, res.data?.export_path || t("snapshots.export")), res.ok ? "ok" : "err");
98
+ }
99
+ async function restoreSnapshot(id) {
100
+ const res = await api.snapshotRestore(id);
101
+ toast(resultText(res, t("snapshots.restored")), res.ok ? "ok" : "err");
102
+ if (res.ok) load();
103
+ }
104
+
105
+ await load();
106
+ return host;
107
+ }
108
+
109
+ function select(rows) {
110
+ const sel = document.createElement("select");
111
+ sel.className = "lt3-select";
112
+ sel.setAttribute("aria-label", t("snapshots.title"));
113
+ for (const row of rows) {
114
+ const opt = document.createElement("option");
115
+ opt.value = row.id;
116
+ opt.textContent = row.name || row.id;
117
+ sel.append(opt);
118
+ }
119
+ return sel;
120
+ }
121
+
122
+ function normalize(data) {
123
+ return Array.isArray(data?.snapshots) ? data.snapshots : [];
124
+ }
125
+
126
+ function fmt(ts) {
127
+ if (!ts) return "—";
128
+ try { return new Date(ts).toLocaleString(); } catch { return String(ts); }
129
+ }
130
+
131
+ function resultText(res, okText) {
132
+ if (res && res.ok) return okText;
133
+ const data = (res && res.data) || {};
134
+ return String(data.detail || data.error || res?.error || t("common.unavailable"));
135
+ }
@@ -0,0 +1,135 @@
1
+ import { t } from "../core/i18n.js";
2
+
3
+ export async function render(ctx) {
4
+ const { h, icon, api, c, toast } = ctx;
5
+ const host = h("div.lt3-stack-6", c.loading({ lines: 5, block: true }));
6
+
7
+ async function load() {
8
+ const [snaps, timeline] = await Promise.all([api.snapshots(), api.timeMachine(80)]);
9
+ const rows = normalize(snaps.data);
10
+ host.replaceChildren(
11
+ c.viewHeader({
12
+ eyebrow: t("snapshots.eyebrow"),
13
+ title: t("snapshots.title"),
14
+ sub: t("snapshots.sub"),
15
+ actions: [c.sourceBadge(snaps.source)],
16
+ }),
17
+ createPanel(),
18
+ comparePanel(rows),
19
+ snapshotTable(rows),
20
+ timelinePanel(timeline),
21
+ );
22
+ }
23
+
24
+ function createPanel() {
25
+ const name = h("input.lt3-input", { type: "text", placeholder: t("snapshots.name"), "aria-label": t("snapshots.name") });
26
+ return c.panel({
27
+ title: t("snapshots.create"),
28
+ children: h("div.lt3-row-2",
29
+ name,
30
+ h("button.lt3-btn.lt3-btn--primary", { on: { click: async () => {
31
+ const res = await api.createSnapshot(name.value.trim() || t("snapshots.title"));
32
+ toast(resultText(res, t("snapshots.created")), res.ok ? "ok" : "err");
33
+ if (res.ok) { name.value = ""; load(); }
34
+ } } }, icon("camera"), t("snapshots.create")),
35
+ ),
36
+ });
37
+ }
38
+
39
+ function comparePanel(rows) {
40
+ const before = select(rows);
41
+ const after = select(rows);
42
+ const result = h("div");
43
+ return c.panel({
44
+ title: t("snapshots.compare"),
45
+ children: h("div.lt3-stack-4",
46
+ h("div.lt3-row-2", before, after, h("button.lt3-btn.lt3-btn--primary", { on: { click: async () => {
47
+ if (!before.value || !after.value) return;
48
+ result.replaceChildren(c.loading({ lines: 2 }));
49
+ const res = await api.compareSnapshots(before.value, after.value);
50
+ const d = res.data || {};
51
+ result.replaceChildren(res.ok
52
+ ? h("dl.lt3-keyval",
53
+ h("dt", "nodes_added"), h("dd", String(d.summary?.nodes_added ?? 0)),
54
+ h("dt", "nodes_removed"), h("dd", String(d.summary?.nodes_removed ?? 0)),
55
+ h("dt", "edges_added"), h("dd", String(d.summary?.edges_added ?? 0)),
56
+ h("dt", "edges_removed"), h("dd", String(d.summary?.edges_removed ?? 0)),
57
+ )
58
+ : c.banner(resultText(res, t("common.unavailable")), "err"));
59
+ } } }, icon("git-compare"), t("snapshots.compare"))),
60
+ result,
61
+ ),
62
+ });
63
+ }
64
+
65
+ function snapshotTable(rows) {
66
+ if (!rows.length) return c.emptyState({ icon: "history", title: t("snapshots.title"), body: t("common.none") });
67
+ return c.panel({
68
+ title: t("snapshots.title"),
69
+ children: c.table([
70
+ { key: "name", label: t("common.name"), render: (r) => h("div", h("b", r.name || r.id), h("div.lt3-faint", { style: { "font-family": "var(--lt3-font-mono)", "font-size": "var(--lt3-text-2xs)" } }, r.id)) },
71
+ { key: "created", label: t("common.created"), width: "1%", render: (r) => h("span.lt3-faint", { style: { "white-space": "nowrap" } }, fmt(r.created_at)) },
72
+ { key: "nodes", label: "nodes", width: "1%", render: (r) => String(r.node_count ?? 0) },
73
+ { key: "edges", label: "edges", width: "1%", render: (r) => String(r.edge_count ?? 0) },
74
+ { key: "actions", label: "", width: "1%", render: (r) => h("div.lt3-row-2",
75
+ h("button.lt3-btn.lt3-btn--subtle.lt3-btn--sm", { on: { click: () => exportSnapshot(r.id) } }, icon("download"), t("snapshots.export")),
76
+ h("button.lt3-btn.lt3-btn--ghost.lt3-btn--sm", { on: { click: () => restoreSnapshot(r.id) } }, icon("restore"), t("snapshots.restore")),
77
+ ) },
78
+ ], rows),
79
+ });
80
+ }
81
+
82
+ function timelinePanel(res) {
83
+ const events = Array.isArray(res.data?.events) ? res.data.events : [];
84
+ return c.panel({
85
+ title: t("snapshots.timeline"),
86
+ actions: [c.sourceBadge(res.source)],
87
+ children: events.length ? c.table([
88
+ { key: "event", label: t("common.status"), render: (e) => h("span", e.event_type || e.area || "event") },
89
+ { key: "area", label: t("common.type"), width: "1%", render: (e) => c.pill(e.area || "workspace") },
90
+ { key: "when", label: t("common.created"), width: "1%", render: (e) => h("span.lt3-faint", { style: { "white-space": "nowrap" } }, fmt(e.timestamp)) },
91
+ ], events.slice(0, 40)) : c.emptyState({ icon: "history-off", title: t("snapshots.timeline"), body: t("common.none") }),
92
+ });
93
+ }
94
+
95
+ async function exportSnapshot(id) {
96
+ const res = await api.snapshotExport(id);
97
+ toast(resultText(res, res.data?.export_path || t("snapshots.export")), res.ok ? "ok" : "err");
98
+ }
99
+ async function restoreSnapshot(id) {
100
+ const res = await api.snapshotRestore(id);
101
+ toast(resultText(res, t("snapshots.restored")), res.ok ? "ok" : "err");
102
+ if (res.ok) load();
103
+ }
104
+
105
+ await load();
106
+ return host;
107
+ }
108
+
109
+ function select(rows) {
110
+ const sel = document.createElement("select");
111
+ sel.className = "lt3-select";
112
+ sel.setAttribute("aria-label", t("snapshots.title"));
113
+ for (const row of rows) {
114
+ const opt = document.createElement("option");
115
+ opt.value = row.id;
116
+ opt.textContent = row.name || row.id;
117
+ sel.append(opt);
118
+ }
119
+ return sel;
120
+ }
121
+
122
+ function normalize(data) {
123
+ return Array.isArray(data?.snapshots) ? data.snapshots : [];
124
+ }
125
+
126
+ function fmt(ts) {
127
+ if (!ts) return "—";
128
+ try { return new Date(ts).toLocaleString(); } catch { return String(ts); }
129
+ }
130
+
131
+ function resultText(res, okText) {
132
+ if (res && res.ok) return okText;
133
+ const data = (res && res.data) || {};
134
+ return String(data.detail || data.error || res?.error || t("common.unavailable"));
135
+ }
@@ -11,6 +11,7 @@ export async function render(ctx) {
11
11
  const { h, c } = ctx;
12
12
  const defsHost = h("div", c.loading({ lines: 3, block: true }));
13
13
  const runsHost = h("div", c.loading({ lines: 3 }));
14
+ const triggerHost = h("div", c.loading({ lines: 2 }));
14
15
  const defsSrc = h("span", c.sourceBadge("pending"));
15
16
  const runsSrc = h("span", c.sourceBadge("pending"));
16
17
 
@@ -21,6 +22,12 @@ export async function render(ctx) {
21
22
  sub: "Repeatable automation: a trigger fires an agent chain that calls tools, reads and writes memory, and produces a result.",
22
23
  }),
23
24
  stageLegend(ctx),
25
+ c.panel({
26
+ eyebrow: "Triggers",
27
+ title: "Trigger status",
28
+ sub: "Interval and brain-event triggers armed from saved workflow definitions.",
29
+ children: triggerHost,
30
+ }),
24
31
  h("section", c.sectionHead("Workflow definitions", defsSrc), defsHost),
25
32
  c.panel({
26
33
  head: h("div.lt3-row", { style: { "justify-content": "space-between", width: "100%" } },
@@ -30,6 +37,7 @@ export async function render(ctx) {
30
37
  );
31
38
 
32
39
  loadDefs();
40
+ loadTriggers();
33
41
  loadRuns();
34
42
  return root;
35
43
 
@@ -59,6 +67,7 @@ export async function render(ctx) {
59
67
  ),
60
68
  w.description ? h("p.lt3-muted", { style: { margin: 0, "font-size": "var(--lt3-text-sm)" } }, w.description) : null,
61
69
  h("div.lt3-cluster", (nodes.slice(0, 6)).map((n) => h("span.lt3-chip", c.icon(nodeIcon(n.type)), n.name || n.type))),
70
+ triggerControls(ctx2, w, nodes),
62
71
  h("div.lt3-row-2",
63
72
  h("button.lt3-btn.lt3-btn--primary.lt3-btn--sm", { on: { click: () => runDef(ctx2, w) } }, c.icon("player-play"), "Run"),
64
73
  h("span.lt3-faint", { style: { "font-size": "var(--lt3-text-2xs)" } }, `${triggers} trigger${triggers === 1 ? "" : "s"}`),
@@ -85,7 +94,13 @@ export async function render(ctx) {
85
94
  { key: "status", label: "Status", width: "1%", render: (r) => c.statePill(mapStatus(r.status)) },
86
95
  { key: "name", label: "Workflow", render: (r) => h("b", { style: { "font-size": "var(--lt3-text-sm)" } }, r.workflow_name || r.workflow_id || r.id) },
87
96
  { key: "when", label: "When", width: "1%", render: (r) => h("span.lt3-faint", { style: { "white-space": "nowrap", "font-size": "var(--lt3-text-2xs)" } }, fmtTime(r.created_at || r.started_at)) },
88
- { key: "act", label: "", width: "1%", render: (r) => h("button.lt3-btn.lt3-btn--ghost.lt3-btn--sm", { on: { click: () => replay(ctx, r) } }, c.icon("player-track-next"), "Replay") },
97
+ { key: "act", label: "", width: "1%", render: (r) => h("div.lt3-row-2",
98
+ isActiveStatus(r.status) ? h("button.lt3-btn.lt3-btn--danger.lt3-btn--sm", { on: { click: () => stop(ctx, r) } }, c.icon("player-stop"), "Stop") : null,
99
+ String(r.status || "").toLowerCase() === "awaiting_approval"
100
+ ? h("button.lt3-btn.lt3-btn--primary.lt3-btn--sm", { on: { click: () => decide(ctx, r, true) } }, c.icon("circle-check"), "Approve")
101
+ : null,
102
+ h("button.lt3-btn.lt3-btn--ghost.lt3-btn--sm", { on: { click: () => replay(ctx, r) } }, c.icon("player-track-next"), "Replay"),
103
+ ) },
89
104
  ],
90
105
  runs.slice(0, 20),
91
106
  ));
@@ -96,6 +111,71 @@ export async function render(ctx) {
96
111
  const res = await ctx2.api.workflowReplay(id);
97
112
  ctx2.toast(res && res.ok ? `Replay ready for ${id}` : "Replay unavailable", res && res.ok ? "ok" : "err");
98
113
  }
114
+
115
+ async function stop(ctx2, r) {
116
+ const id = r.id || r.run_id;
117
+ const res = await ctx2.api.stopWorkflowRun(id);
118
+ ctx2.toast(res && res.ok ? `Stop requested for ${id}` : "Stop unavailable", res && res.ok ? "ok" : "err");
119
+ loadRuns();
120
+ }
121
+
122
+ async function decide(ctx2, r, approved) {
123
+ const id = r.id || r.run_id;
124
+ const res = await ctx2.api.resumeWorkflowRun(id, approved);
125
+ ctx2.toast(res && res.ok ? `Decision recorded for ${id}` : "Decision unavailable", res && res.ok ? "ok" : "err");
126
+ loadRuns();
127
+ }
128
+
129
+ async function loadTriggers() {
130
+ const res = await ctx.api.workflowTriggers();
131
+ const armed = Array.isArray(res.data?.armed) ? res.data.armed : [];
132
+ triggerHost.replaceChildren(
133
+ h("div.lt3-stack-3",
134
+ h("div.lt3-row-2", c.sourceBadge(res.source), c.statePill(res.data?.running ? "running" : "idle")),
135
+ armed.length ? c.table([
136
+ { key: "name", label: "Workflow", render: (r) => h("b", r.name || r.workflow_id) },
137
+ { key: "kind", label: "Trigger", width: "1%", render: (r) => c.pill(r.kind) },
138
+ { key: "last", label: "Last fired", width: "1%", render: (r) => fmtTime(r.last_fired_at ? Number(r.last_fired_at) * 1000 : null) },
139
+ { key: "events", label: "Recent", render: (r) => (r.recent_events || []).slice(-2).map((e) => e.type || e.trigger).join(", ") || "—" },
140
+ ], armed) : c.emptyState({ icon: "bolt-off", title: "No triggers armed", body: "Set a workflow trigger below to arm it." }),
141
+ ),
142
+ );
143
+ }
144
+
145
+ function triggerControls(ctx2, w, nodes) {
146
+ const trigger = nodes.find((n) => n.type === "trigger") || {};
147
+ const cfg = trigger.config || {};
148
+ const kind = h("select.lt3-select", { "aria-label": "Trigger type" },
149
+ ["manual", "interval", "brain_event"].map((value) => h("option", { value, selected: String(cfg.trigger || "manual") === value }, value)));
150
+ const seconds = h("input.lt3-input", { type: "number", min: "60", step: "60", value: String(cfg.interval_seconds || 300), "aria-label": "Interval seconds" });
151
+ const sourceType = h("input.lt3-input", { type: "text", value: cfg.source_type || "", placeholder: "source_type", "aria-label": "source_type" });
152
+ async function save() {
153
+ const updated = ensureTrigger(nodes, kind.value, Number(seconds.value) || 300, sourceType.value.trim());
154
+ const res = await ctx2.api.updateWorkflow(w.id, { nodes: updated, metadata: { trigger_updated_at: new Date().toISOString() } });
155
+ ctx2.toast(res && res.ok ? "Trigger saved" : "Trigger update unavailable", res && res.ok ? "ok" : "err");
156
+ if (res && res.ok) { loadDefs(); loadTriggers(); }
157
+ }
158
+ return h("div.lt3-stack-2",
159
+ h("div.lt3-eyebrow", "Trigger configuration"),
160
+ h("div.lt3-row-2", kind, seconds, sourceType, h("button.lt3-btn.lt3-btn--subtle.lt3-btn--sm", { on: { click: save } }, c.icon("device-floppy"), "Save")),
161
+ );
162
+ }
163
+ }
164
+
165
+ function ensureTrigger(nodes, triggerKind, intervalSeconds, sourceType) {
166
+ const clone = (nodes || []).map((node) => ({ ...node, config: { ...(node.config || {}) } }));
167
+ let trigger = clone.find((n) => n.type === "trigger");
168
+ if (!trigger) {
169
+ trigger = { id: "trigger", type: "trigger", name: "Trigger", next: clone[0]?.id || "output", config: {} };
170
+ clone.unshift(trigger);
171
+ if (!clone.some((n) => n.id === "output")) clone.push({ id: "output", type: "output", name: "Output", config: {}, next: null });
172
+ }
173
+ trigger.config.trigger = triggerKind;
174
+ delete trigger.config.interval_seconds;
175
+ delete trigger.config.source_type;
176
+ if (triggerKind === "interval") trigger.config.interval_seconds = Math.max(60, intervalSeconds || 300);
177
+ if (triggerKind === "brain_event" && sourceType) trigger.config.source_type = sourceType;
178
+ return clone;
99
179
  }
100
180
 
101
181
  function normalizeDefs(data) {
@@ -118,9 +198,14 @@ function mapStatus(s) {
118
198
  const v = String(s || "").toLowerCase();
119
199
  if (v === "ok" || v === "completed" || v === "success") return "ready";
120
200
  if (v === "failed" || v === "error") return "failed";
121
- if (v === "running") return "active";
201
+ if (v === "running" || v === "queued" || v === "cancelling") return "active";
202
+ if (v === "awaiting_approval") return "pending";
203
+ if (v === "cancelled" || v === "interrupted") return "warn";
122
204
  return v || "idle";
123
205
  }
206
+ function isActiveStatus(status) {
207
+ return ["running", "queued", "in_progress", "cancelling"].includes(String(status || "").toLowerCase());
208
+ }
124
209
  function fmtTime(ts) {
125
210
  if (!ts) return "—";
126
211
  try { const d = new Date(ts); return Number.isNaN(d.getTime()) ? String(ts) : d.toLocaleString(undefined, { month: "short", day: "numeric", hour: "2-digit", minute: "2-digit" }); }