ltcai 3.5.0 → 4.0.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/README.md +73 -35
- package/docs/CARRYOVER_AUDIT_v3.6.0.md +61 -0
- package/docs/CHANGELOG.md +32 -0
- package/docs/HANDOVER_v3.6.0.md +46 -0
- package/docs/RUNTIME_HOOK_COVERAGE_v3.6.0.md +49 -0
- package/docs/V4_BRAIN_ARCHITECTURE.md +322 -0
- package/docs/V4_DIGITAL_BRAIN_RECOVERY.md +509 -0
- package/docs/V4_IMPLEMENTATION_PLAN.md +470 -0
- package/docs/architecture.md +13 -12
- package/docs/kg-schema.md +102 -53
- package/docs/privacy.md +18 -2
- package/docs/security-model.md +17 -0
- package/kg_schema.py +139 -10
- package/knowledge_graph.py +874 -26
- package/knowledge_graph_api.py +11 -127
- package/latticeai/__init__.py +1 -1
- package/latticeai/api/admin.py +1 -1
- package/latticeai/api/agents.py +7 -1
- package/latticeai/api/auth.py +27 -4
- package/latticeai/api/browser.py +217 -0
- package/latticeai/api/chat.py +112 -76
- package/latticeai/api/health.py +1 -1
- package/latticeai/api/hooks.py +1 -1
- package/latticeai/api/knowledge_graph.py +146 -0
- package/latticeai/api/local_files.py +1 -1
- package/latticeai/api/mcp.py +23 -11
- package/latticeai/api/memory.py +1 -1
- package/latticeai/api/models.py +1 -1
- package/latticeai/api/network.py +81 -0
- package/latticeai/api/portability.py +93 -0
- package/latticeai/api/realtime.py +1 -1
- package/latticeai/api/search.py +26 -2
- package/latticeai/api/security_dashboard.py +2 -3
- package/latticeai/api/setup.py +2 -2
- package/latticeai/api/static_routes.py +2 -4
- package/latticeai/api/tools.py +3 -0
- package/latticeai/api/workflow_designer.py +46 -0
- package/latticeai/api/workspace.py +71 -49
- package/latticeai/app_factory.py +1710 -0
- package/latticeai/brain/__init__.py +18 -0
- package/latticeai/brain/context.py +213 -0
- package/latticeai/brain/conversations.py +236 -0
- package/latticeai/brain/identity.py +175 -0
- package/latticeai/brain/memory.py +102 -0
- package/latticeai/brain/network.py +205 -0
- package/latticeai/core/agent.py +31 -7
- package/latticeai/core/audit.py +0 -7
- package/latticeai/core/config.py +1 -1
- package/latticeai/core/context_builder.py +1 -2
- package/latticeai/core/enterprise.py +1 -1
- package/latticeai/core/graph_curator.py +2 -2
- package/latticeai/core/marketplace.py +1 -1
- package/latticeai/core/mcp_registry.py +791 -0
- package/latticeai/core/model_compat.py +1 -1
- package/latticeai/core/model_resolution.py +0 -1
- package/latticeai/core/multi_agent.py +238 -4
- package/latticeai/core/security.py +1 -1
- package/latticeai/core/sessions.py +37 -7
- package/latticeai/core/workflow_engine.py +114 -2
- package/latticeai/core/workspace_os.py +58 -10
- package/latticeai/models/__init__.py +7 -0
- package/latticeai/models/router.py +779 -0
- package/latticeai/server_app.py +29 -1504
- package/latticeai/services/agent_runtime.py +1 -0
- package/latticeai/services/app_context.py +75 -14
- package/latticeai/services/ingestion.py +318 -0
- package/latticeai/services/kg_portability.py +207 -0
- package/latticeai/services/memory_service.py +39 -11
- package/latticeai/services/model_runtime.py +2 -5
- package/latticeai/services/platform_runtime.py +100 -23
- package/latticeai/services/search_service.py +17 -8
- package/latticeai/services/tool_dispatch.py +12 -2
- package/latticeai/services/triggers.py +241 -0
- package/latticeai/services/upload_service.py +37 -12
- package/latticeai/services/workspace_service.py +31 -0
- package/llm_router.py +29 -772
- package/ltcai_cli.py +1 -2
- package/mcp_registry.py +25 -788
- package/p_reinforce.py +124 -14
- package/package.json +11 -8
- package/scripts/build_vsix.mjs +72 -0
- package/scripts/bump_version.py +99 -0
- package/scripts/generate_diagrams.py +0 -1
- package/scripts/lint_v3.mjs +82 -18
- package/scripts/validate_release_artifacts.py +0 -1
- package/scripts/wheel_smoke.py +142 -0
- package/server.py +11 -7
- package/setup_wizard.py +1142 -0
- package/static/account.html +2 -4
- package/static/admin.html +3 -5
- package/static/chat.html +3 -6
- package/static/graph.html +2 -4
- package/static/sw.js +81 -52
- package/static/v3/asset-manifest.json +20 -19
- package/static/v3/css/{lattice.base.e4cdd05d.css → lattice.base.49deefb5.css} +1 -1
- package/static/v3/css/lattice.base.css +1 -1
- package/static/v3/css/{lattice.components.9b49d614.css → lattice.components.cde18231.css} +1 -1
- package/static/v3/css/lattice.components.css +1 -1
- package/static/v3/css/{lattice.shell.8fcc9d33.css → lattice.shell.29d36d85.css} +1 -1
- package/static/v3/css/lattice.shell.css +1 -1
- package/static/v3/css/{lattice.tokens.e7018963.css → lattice.tokens.304cbc40.css} +3 -0
- package/static/v3/css/lattice.tokens.css +3 -0
- package/static/v3/css/{lattice.views.22f69117.css → lattice.views.0a18b6c5.css} +2 -2
- package/static/v3/css/lattice.views.css +2 -2
- package/static/v3/index.html +3 -4
- package/static/v3/js/{app.d086489d.js → app.356e6452.js} +1 -1
- package/static/v3/js/core/{api.12b568ad.js → api.7a308b89.js} +39 -1
- package/static/v3/js/core/api.js +38 -0
- package/static/v3/js/core/{routes.d214b399.js → routes.7222343d.js} +22 -22
- package/static/v3/js/core/routes.js +22 -22
- package/static/v3/js/core/{shell.d05266f5.js → shell.a1657f20.js} +4 -4
- package/static/v3/js/core/shell.js +1 -1
- package/static/v3/js/core/{store.34ebd5e6.js → store.204a08b2.js} +1 -1
- package/static/v3/js/core/store.js +1 -1
- package/static/v3/js/views/graph-canvas.17c15d65.js +509 -0
- package/static/v3/js/views/graph-canvas.js +509 -0
- package/static/v3/js/views/{hybrid-search.b22b97e0.js → hybrid-search.2fb63ed9.js} +1 -2
- package/static/v3/js/views/hybrid-search.js +1 -2
- package/static/v3/js/views/knowledge-graph.5e40cbeb.js +509 -0
- package/static/v3/js/views/knowledge-graph.js +326 -54
- package/static/vendor/chart.umd.min.js +20 -0
- package/static/vendor/fonts/inter-latin-300-normal.woff2 +0 -0
- package/static/vendor/fonts/inter-latin-400-normal.woff2 +0 -0
- package/static/vendor/fonts/inter-latin-500-normal.woff2 +0 -0
- package/static/vendor/fonts/inter-latin-600-normal.woff2 +0 -0
- package/static/vendor/fonts/inter-latin-700-normal.woff2 +0 -0
- package/static/vendor/fonts/inter-latin-800-normal.woff2 +0 -0
- package/static/vendor/fonts/inter.css +44 -0
- package/static/vendor/icons/tabler-icons.min.css +4 -0
- package/static/vendor/icons/tabler-icons.woff2 +0 -0
- package/static/vendor/marked.min.js +69 -0
- package/static/workspace.html +2 -2
- package/telegram_bot.py +1 -2
- package/tools/commands.py +4 -2
- package/tools/computer.py +1 -1
- package/tools/documents.py +1 -3
- package/tools/filesystem.py +0 -4
- package/tools/knowledge.py +1 -3
- package/tools/network.py +1 -3
- package/codex_telegram_bot.py +0 -195
- package/docs/assets/v3.4.0/agent-run.png +0 -0
- package/docs/assets/v3.4.0/agents.png +0 -0
- package/docs/assets/v3.4.0/before/chat-before.png +0 -0
- package/docs/assets/v3.4.0/before/files-before.png +0 -0
- package/docs/assets/v3.4.0/chat.png +0 -0
- package/docs/assets/v3.4.0/connect-folder.png +0 -0
- package/docs/assets/v3.4.0/files.png +0 -0
- package/docs/assets/v3.4.0/home.png +0 -0
- package/docs/assets/v3.4.0/hooks-dispatch.png +0 -0
- package/docs/assets/v3.4.0/knowledge-graph.png +0 -0
- package/docs/assets/v3.4.0/local-agent.png +0 -0
- package/docs/assets/v3.4.0/memory.png +0 -0
- package/docs/assets/v3.4.0/settings.png +0 -0
- package/docs/assets/v3.4.0/vision-input.png +0 -0
- package/docs/assets/v3.4.0/workflows.png +0 -0
- package/docs/assets/v3.4.1/e2e_runtime_log.txt +0 -42
- package/docs/assets/v3.4.1/hooks-dispatch.png +0 -0
- package/docs/assets/v3.4.1/local-agent.png +0 -0
- package/docs/images/admin-dashboard.png +0 -0
- package/docs/images/architecture.png +0 -0
- package/docs/images/enterprise.png +0 -0
- package/docs/images/graph.png +0 -0
- package/docs/images/hero.gif +0 -0
- package/docs/images/knowledge-graph.png +0 -0
- package/docs/images/lattice-ai-demo.gif +0 -0
- package/docs/images/lattice-ai-hero.png +0 -0
- package/docs/images/logo.svg +0 -33
- package/docs/images/mobile-responsive.png +0 -0
- package/docs/images/model-recommendation.png +0 -0
- package/docs/images/onboarding.png +0 -0
- package/docs/images/organization.png +0 -0
- package/docs/images/pipeline.png +0 -0
- package/docs/images/screenshot-admin.png +0 -0
- package/docs/images/screenshot-chat.png +0 -0
- package/docs/images/screenshot-graph.png +0 -0
- package/docs/images/skills.png +0 -0
- package/docs/images/workspace-dark.png +0 -0
- package/docs/images/workspace-light.png +0 -0
- package/docs/images/workspace.png +0 -0
- package/requirements.txt +0 -16
- package/static/v3/js/views/knowledge-graph.a14ea7e7.js +0 -237
|
@@ -10,11 +10,11 @@ export const MODE_RANK = { basic: 0, advanced: 1, admin: 2 };
|
|
|
10
10
|
|
|
11
11
|
/** Nav groups in display order. */
|
|
12
12
|
export const GROUPS = [
|
|
13
|
-
{ id: "
|
|
14
|
-
{ id: "
|
|
15
|
-
{ id: "
|
|
16
|
-
{ id: "
|
|
17
|
-
{ id: "
|
|
13
|
+
{ id: "brain", label: "Brain" },
|
|
14
|
+
{ id: "ask", label: "Ask" },
|
|
15
|
+
{ id: "capture", label: "Capture" },
|
|
16
|
+
{ id: "act", label: "Act" },
|
|
17
|
+
{ id: "library", label: "Library" },
|
|
18
18
|
{ id: "system", label: "System" },
|
|
19
19
|
{ id: "admin", label: "Administration", adminOnly: true },
|
|
20
20
|
];
|
|
@@ -25,37 +25,37 @@ export const GROUPS = [
|
|
|
25
25
|
*/
|
|
26
26
|
export const ROUTES = [
|
|
27
27
|
// Workspace
|
|
28
|
-
{ key: "home", label: "
|
|
29
|
-
{ key: "chat", label: "Chat", icon: "message-2", group: "
|
|
28
|
+
{ key: "home", label: "Overview", icon: "layout-dashboard", group: "system", minMode: "basic", view: "home", title: "Overview", desc: "Your digital brain at a glance." },
|
|
29
|
+
{ key: "chat", label: "Chat", icon: "message-2", group: "ask", minMode: "basic", view: "chat", title: "Chat", desc: "Grounded conversation over your brain — memories, knowledge, and notes assembled with provenance." },
|
|
30
30
|
|
|
31
31
|
// Data
|
|
32
|
-
{ key: "files", label: "Files", icon: "folders", group: "
|
|
32
|
+
{ key: "files", label: "Files", icon: "folders", group: "capture", minMode: "basic", view: "files", title: "Files", desc: "Connected sources and indexed documents." },
|
|
33
33
|
|
|
34
34
|
// Retrieval (the product identity)
|
|
35
|
-
{ key: "hybrid-search", label: "Search", icon: "arrows-join", group: "
|
|
36
|
-
{ key: "knowledge-graph", label: "Knowledge", icon: "chart-dots-3", group: "
|
|
37
|
-
{ key: "memory", label: "Memory", icon: "brain", group: "
|
|
35
|
+
{ key: "hybrid-search", label: "Search", icon: "arrows-join", group: "brain", minMode: "basic", view: "hybrid-search", title: "Hybrid Search", desc: "Graph structure fused with vector similarity." },
|
|
36
|
+
{ key: "knowledge-graph", label: "Knowledge Graph", icon: "chart-dots-3", group: "brain", minMode: "basic", view: "knowledge-graph", title: "Knowledge Graph", desc: "Your digital brain — every source converges here. Explore, ingest, and export." },
|
|
37
|
+
{ key: "memory", label: "Memory", icon: "brain", group: "brain", minMode: "basic", view: "memory", title: "Memory", desc: "Long-term workspace, project, agent, and conversation memory." },
|
|
38
38
|
|
|
39
39
|
// Compute
|
|
40
|
-
{ key: "models", label: "Models", icon: "cpu", group: "
|
|
41
|
-
{ key: "agents", label: "Agents", icon: "robot", group: "
|
|
42
|
-
{ key: "workflows", label: "Workflows", icon: "sitemap", group: "
|
|
40
|
+
{ key: "models", label: "Models", icon: "cpu", group: "library", minMode: "basic", view: "models", title: "Models", desc: "Local MLX models and embeddings." },
|
|
41
|
+
{ key: "agents", label: "Agents", icon: "robot", group: "act", minMode: "advanced", view: "agents", title: "Agents", desc: "Multi-agent roles, runs, and handoffs." },
|
|
42
|
+
{ key: "workflows", label: "Workflows", icon: "sitemap", group: "act", minMode: "advanced", view: "workflows", title: "Workflow Agents", desc: "Trigger → agent chain → tools → memory → result." },
|
|
43
43
|
|
|
44
44
|
// Platform (the agent ecosystem)
|
|
45
|
-
{ key: "skills", label: "Skills", icon: "puzzle", group: "
|
|
46
|
-
{ key: "hooks", label: "Hooks", icon: "webhook", group: "
|
|
47
|
-
{ key: "mcp", label: "MCP", icon: "plug-connected", group: "
|
|
45
|
+
{ key: "skills", label: "Skills", icon: "puzzle", group: "library", minMode: "advanced", view: "skills", title: "Skills", desc: "Install, enable, and manage skills." },
|
|
46
|
+
{ key: "hooks", label: "Hooks", icon: "webhook", group: "act", minMode: "advanced", view: "hooks", title: "Hooks", desc: "Lifecycle hooks across runs, tools, and workflows." },
|
|
47
|
+
{ key: "mcp", label: "MCP", icon: "plug-connected", group: "library", minMode: "advanced", view: "mcp", title: "MCP Manager", desc: "Connected MCP servers, available tools, and health." },
|
|
48
48
|
|
|
49
49
|
// System
|
|
50
50
|
{ key: "settings", label: "Settings", icon: "settings", group: "system", minMode: "basic", view: "settings", title: "Settings", desc: "Appearance, workspace, and integrations." },
|
|
51
51
|
|
|
52
52
|
// Deep-linkable legacy/experimental surfaces. They remain renderable for
|
|
53
53
|
// compatibility, but are not promoted in the production navigation.
|
|
54
|
-
{ key: "pipeline", label: "Pipeline", icon: "git-branch", group: "
|
|
55
|
-
{ key: "planning", label: "Planning", icon: "target-arrow", group: "
|
|
56
|
-
{ key: "my-computer", label: "My Computer", icon: "device-desktop-analytics", group: "
|
|
57
|
-
{ key: "marketplace", label: "Marketplace", icon: "building-store", group: "
|
|
58
|
-
{ key: "tools", label: "Tools", icon: "tools", group: "
|
|
54
|
+
{ key: "pipeline", label: "Pipeline", icon: "git-branch", group: "capture", minMode: "advanced", view: "pipeline", title: "Pipeline", desc: "Ingest, embed, and graph-build flows.", hidden: true },
|
|
55
|
+
{ key: "planning", label: "Planning", icon: "target-arrow", group: "act", minMode: "advanced", view: "planning", title: "Autonomous Planning", desc: "Goal → plan → execute → review → replan.", hidden: true },
|
|
56
|
+
{ key: "my-computer", label: "My Computer", icon: "device-desktop-analytics", group: "system", minMode: "advanced", view: "my-computer", title: "My Computer", desc: "Local hardware, memory, and runtime.", hidden: true },
|
|
57
|
+
{ key: "marketplace", label: "Marketplace", icon: "building-store", group: "library", minMode: "advanced", view: "marketplace", title: "Marketplace", desc: "Agent templates, agents, plugins, and skills.", hidden: true },
|
|
58
|
+
{ key: "tools", label: "Tools", icon: "tools", group: "act", minMode: "advanced", view: "tools", title: "Tool Registry", desc: "Local, workspace, and MCP tools with governance.", hidden: true },
|
|
59
59
|
|
|
60
60
|
// Admin
|
|
61
61
|
{ key: "admin/users", label: "Users", icon: "users", group: "admin", minMode: "admin", view: "admin-users", title: "Users", desc: "Workspace members and access.", admin: true },
|
|
@@ -10,11 +10,11 @@ export const MODE_RANK = { basic: 0, advanced: 1, admin: 2 };
|
|
|
10
10
|
|
|
11
11
|
/** Nav groups in display order. */
|
|
12
12
|
export const GROUPS = [
|
|
13
|
-
{ id: "
|
|
14
|
-
{ id: "
|
|
15
|
-
{ id: "
|
|
16
|
-
{ id: "
|
|
17
|
-
{ id: "
|
|
13
|
+
{ id: "brain", label: "Brain" },
|
|
14
|
+
{ id: "ask", label: "Ask" },
|
|
15
|
+
{ id: "capture", label: "Capture" },
|
|
16
|
+
{ id: "act", label: "Act" },
|
|
17
|
+
{ id: "library", label: "Library" },
|
|
18
18
|
{ id: "system", label: "System" },
|
|
19
19
|
{ id: "admin", label: "Administration", adminOnly: true },
|
|
20
20
|
];
|
|
@@ -25,37 +25,37 @@ export const GROUPS = [
|
|
|
25
25
|
*/
|
|
26
26
|
export const ROUTES = [
|
|
27
27
|
// Workspace
|
|
28
|
-
{ key: "home", label: "
|
|
29
|
-
{ key: "chat", label: "Chat", icon: "message-2", group: "
|
|
28
|
+
{ key: "home", label: "Overview", icon: "layout-dashboard", group: "system", minMode: "basic", view: "home", title: "Overview", desc: "Your digital brain at a glance." },
|
|
29
|
+
{ key: "chat", label: "Chat", icon: "message-2", group: "ask", minMode: "basic", view: "chat", title: "Chat", desc: "Grounded conversation over your brain — memories, knowledge, and notes assembled with provenance." },
|
|
30
30
|
|
|
31
31
|
// Data
|
|
32
|
-
{ key: "files", label: "Files", icon: "folders", group: "
|
|
32
|
+
{ key: "files", label: "Files", icon: "folders", group: "capture", minMode: "basic", view: "files", title: "Files", desc: "Connected sources and indexed documents." },
|
|
33
33
|
|
|
34
34
|
// Retrieval (the product identity)
|
|
35
|
-
{ key: "hybrid-search", label: "Search", icon: "arrows-join", group: "
|
|
36
|
-
{ key: "knowledge-graph", label: "Knowledge", icon: "chart-dots-3", group: "
|
|
37
|
-
{ key: "memory", label: "Memory", icon: "brain", group: "
|
|
35
|
+
{ key: "hybrid-search", label: "Search", icon: "arrows-join", group: "brain", minMode: "basic", view: "hybrid-search", title: "Hybrid Search", desc: "Graph structure fused with vector similarity." },
|
|
36
|
+
{ key: "knowledge-graph", label: "Knowledge Graph", icon: "chart-dots-3", group: "brain", minMode: "basic", view: "knowledge-graph", title: "Knowledge Graph", desc: "Your digital brain — every source converges here. Explore, ingest, and export." },
|
|
37
|
+
{ key: "memory", label: "Memory", icon: "brain", group: "brain", minMode: "basic", view: "memory", title: "Memory", desc: "Long-term workspace, project, agent, and conversation memory." },
|
|
38
38
|
|
|
39
39
|
// Compute
|
|
40
|
-
{ key: "models", label: "Models", icon: "cpu", group: "
|
|
41
|
-
{ key: "agents", label: "Agents", icon: "robot", group: "
|
|
42
|
-
{ key: "workflows", label: "Workflows", icon: "sitemap", group: "
|
|
40
|
+
{ key: "models", label: "Models", icon: "cpu", group: "library", minMode: "basic", view: "models", title: "Models", desc: "Local MLX models and embeddings." },
|
|
41
|
+
{ key: "agents", label: "Agents", icon: "robot", group: "act", minMode: "advanced", view: "agents", title: "Agents", desc: "Multi-agent roles, runs, and handoffs." },
|
|
42
|
+
{ key: "workflows", label: "Workflows", icon: "sitemap", group: "act", minMode: "advanced", view: "workflows", title: "Workflow Agents", desc: "Trigger → agent chain → tools → memory → result." },
|
|
43
43
|
|
|
44
44
|
// Platform (the agent ecosystem)
|
|
45
|
-
{ key: "skills", label: "Skills", icon: "puzzle", group: "
|
|
46
|
-
{ key: "hooks", label: "Hooks", icon: "webhook", group: "
|
|
47
|
-
{ key: "mcp", label: "MCP", icon: "plug-connected", group: "
|
|
45
|
+
{ key: "skills", label: "Skills", icon: "puzzle", group: "library", minMode: "advanced", view: "skills", title: "Skills", desc: "Install, enable, and manage skills." },
|
|
46
|
+
{ key: "hooks", label: "Hooks", icon: "webhook", group: "act", minMode: "advanced", view: "hooks", title: "Hooks", desc: "Lifecycle hooks across runs, tools, and workflows." },
|
|
47
|
+
{ key: "mcp", label: "MCP", icon: "plug-connected", group: "library", minMode: "advanced", view: "mcp", title: "MCP Manager", desc: "Connected MCP servers, available tools, and health." },
|
|
48
48
|
|
|
49
49
|
// System
|
|
50
50
|
{ key: "settings", label: "Settings", icon: "settings", group: "system", minMode: "basic", view: "settings", title: "Settings", desc: "Appearance, workspace, and integrations." },
|
|
51
51
|
|
|
52
52
|
// Deep-linkable legacy/experimental surfaces. They remain renderable for
|
|
53
53
|
// compatibility, but are not promoted in the production navigation.
|
|
54
|
-
{ key: "pipeline", label: "Pipeline", icon: "git-branch", group: "
|
|
55
|
-
{ key: "planning", label: "Planning", icon: "target-arrow", group: "
|
|
56
|
-
{ key: "my-computer", label: "My Computer", icon: "device-desktop-analytics", group: "
|
|
57
|
-
{ key: "marketplace", label: "Marketplace", icon: "building-store", group: "
|
|
58
|
-
{ key: "tools", label: "Tools", icon: "tools", group: "
|
|
54
|
+
{ key: "pipeline", label: "Pipeline", icon: "git-branch", group: "capture", minMode: "advanced", view: "pipeline", title: "Pipeline", desc: "Ingest, embed, and graph-build flows.", hidden: true },
|
|
55
|
+
{ key: "planning", label: "Planning", icon: "target-arrow", group: "act", minMode: "advanced", view: "planning", title: "Autonomous Planning", desc: "Goal → plan → execute → review → replan.", hidden: true },
|
|
56
|
+
{ key: "my-computer", label: "My Computer", icon: "device-desktop-analytics", group: "system", minMode: "advanced", view: "my-computer", title: "My Computer", desc: "Local hardware, memory, and runtime.", hidden: true },
|
|
57
|
+
{ key: "marketplace", label: "Marketplace", icon: "building-store", group: "library", minMode: "advanced", view: "marketplace", title: "Marketplace", desc: "Agent templates, agents, plugins, and skills.", hidden: true },
|
|
58
|
+
{ key: "tools", label: "Tools", icon: "tools", group: "act", minMode: "advanced", view: "tools", title: "Tool Registry", desc: "Local, workspace, and MCP tools with governance.", hidden: true },
|
|
59
59
|
|
|
60
60
|
// Admin
|
|
61
61
|
{ key: "admin/users", label: "Users", icon: "users", group: "admin", minMode: "admin", view: "admin-users", title: "Users", desc: "Workspace members and access.", admin: true },
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
* ========================================================================== */
|
|
7
7
|
|
|
8
8
|
import { h, icon, $, $$ } from "./dom.a2773eb0.js";
|
|
9
|
-
import { store } from "./store.
|
|
10
|
-
import { api } from "./api.
|
|
9
|
+
import { store } from "./store.204a08b2.js";
|
|
10
|
+
import { api } from "./api.7a308b89.js";
|
|
11
11
|
import * as c from "./components.f25b3b93.js";
|
|
12
12
|
import { createRouter } from "./router.584570f2.js";
|
|
13
|
-
import { GROUPS, ROUTES, ROUTE_BY_KEY, MODE_RANK, visibleRoutes, loadView } from "./routes.
|
|
13
|
+
import { GROUPS, ROUTES, ROUTE_BY_KEY, MODE_RANK, visibleRoutes, loadView } from "./routes.7222343d.js";
|
|
14
14
|
|
|
15
15
|
const MODES = [
|
|
16
16
|
{ key: "basic", label: "Basic", icon: "circle" },
|
|
@@ -36,7 +36,7 @@ export function boot(rootEl) {
|
|
|
36
36
|
cacheEls(rootEl);
|
|
37
37
|
store.subscribe(onStateChange);
|
|
38
38
|
|
|
39
|
-
router = createRouter({ onRoute: renderRoute, fallback: "
|
|
39
|
+
router = createRouter({ onRoute: renderRoute, fallback: "knowledge-graph" });
|
|
40
40
|
wireGlobalKeys();
|
|
41
41
|
router.start();
|
|
42
42
|
|
|
@@ -36,7 +36,7 @@ export function boot(rootEl) {
|
|
|
36
36
|
cacheEls(rootEl);
|
|
37
37
|
store.subscribe(onStateChange);
|
|
38
38
|
|
|
39
|
-
router = createRouter({ onRoute: renderRoute, fallback: "
|
|
39
|
+
router = createRouter({ onRoute: renderRoute, fallback: "knowledge-graph" });
|
|
40
40
|
wireGlobalKeys();
|
|
41
41
|
router.start();
|
|
42
42
|
|