@cryptiklemur/lattice 1.25.1 → 1.26.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.
@@ -9,6 +9,7 @@ import { GlobalSkills } from "./GlobalSkills";
9
9
  import { Editor } from "./Editor";
10
10
  import { GlobalRules } from "./GlobalRules";
11
11
  import { GlobalMemory } from "./GlobalMemory";
12
+ import { GlobalPlugins } from "./GlobalPlugins";
12
13
  import { Notifications } from "./Notifications";
13
14
  import { BudgetSettings } from "./BudgetSettings";
14
15
  import type { SettingsSection } from "../../stores/sidebar";
@@ -21,6 +22,7 @@ var SECTION_CONFIG: Record<string, { title: string }> = {
21
22
  environment: { title: "Environment" },
22
23
  mcp: { title: "MCP Servers" },
23
24
  skills: { title: "Skills" },
25
+ plugins: { title: "Plugins" },
24
26
  nodes: { title: "Mesh Nodes" },
25
27
  editor: { title: "Editor" },
26
28
  rules: { title: "Rules" },
@@ -35,6 +37,7 @@ function renderSection(section: SettingsSection) {
35
37
  if (section === "environment") return <Environment />;
36
38
  if (section === "mcp") return <GlobalMcp />;
37
39
  if (section === "skills") return <GlobalSkills />;
40
+ if (section === "plugins") return <GlobalPlugins />;
38
41
  if (section === "nodes") return <MeshStatus />;
39
42
  if (section === "editor") return <Editor />;
40
43
  if (section === "rules") return <GlobalRules />;
@@ -1,4 +1,4 @@
1
- import { ArrowLeft, Palette, FileText, Terminal, Plug, Puzzle, Network, Settings, ScrollText, Shield, Brain, MonitorCog, Bell, Wallet } from "lucide-react";
1
+ import { ArrowLeft, Palette, FileText, Terminal, Plug, Puzzle, Blocks, Network, Settings, ScrollText, Shield, Brain, MonitorCog, Bell, Wallet } from "lucide-react";
2
2
  import { useSidebar } from "../../hooks/useSidebar";
3
3
  import type { SettingsSection, ProjectSettingsSection } from "../../stores/sidebar";
4
4
 
@@ -31,6 +31,7 @@ var SETTINGS_NAV = [
31
31
  items: [
32
32
  { id: "mcp" as SettingsSection, label: "MCP Servers", icon: <Plug size={14} /> },
33
33
  { id: "skills" as SettingsSection, label: "Skills", icon: <Puzzle size={14} /> },
34
+ { id: "plugins" as SettingsSection, label: "Plugins", icon: <Blocks size={14} /> },
34
35
  ],
35
36
  },
36
37
  {
@@ -56,6 +57,7 @@ var PROJECT_SETTINGS_NAV = [
56
57
  items: [
57
58
  { id: "mcp" as ProjectSettingsSection, label: "MCP Servers", icon: <Plug size={14} /> },
58
59
  { id: "skills" as ProjectSettingsSection, label: "Skills", icon: <Puzzle size={14} /> },
60
+ { id: "plugins" as ProjectSettingsSection, label: "Plugins", icon: <Blocks size={14} /> },
59
61
  ],
60
62
  },
61
63
  {
@@ -8,7 +8,7 @@ export type { ProjectSettingsSection };
8
8
 
9
9
  export type SettingsSection =
10
10
  | "appearance" | "claude" | "environment"
11
- | "mcp" | "skills" | "nodes" | "editor"
11
+ | "mcp" | "skills" | "plugins" | "nodes" | "editor"
12
12
  | "rules" | "memory" | "notifications" | "budget";
13
13
 
14
14
  export type SidebarMode = "project" | "settings";
@@ -35,7 +35,7 @@ export interface SidebarState {
35
35
  confirmRemoveSlug: string | null;
36
36
  }
37
37
 
38
- const SETTINGS_SECTIONS: SettingsSection[] = ["appearance", "claude", "environment", "mcp", "skills", "nodes", "editor", "rules", "memory", "notifications", "budget"];
38
+ const SETTINGS_SECTIONS: SettingsSection[] = ["appearance", "claude", "environment", "mcp", "skills", "plugins", "nodes", "editor", "rules", "memory", "notifications", "budget"];
39
39
 
40
40
  interface ParsedUrl {
41
41
  projectSlug: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cryptiklemur/lattice",
3
- "version": "1.25.1",
3
+ "version": "1.26.1",
4
4
  "description": "Multi-machine agentic dashboard for Claude Code. Monitor sessions, manage MCP servers and skills, orchestrate across mesh-networked nodes.",
5
5
  "license": "MIT",
6
6
  "author": "Aaron Scherer <me@aaronscherer.me>",
@@ -34,6 +34,7 @@ import "./handlers/memory";
34
34
  import "./handlers/editor";
35
35
  import "./handlers/analytics";
36
36
  import "./handlers/bookmarks";
37
+ import "./handlers/plugins";
37
38
  import { startScheduler } from "./features/scheduler";
38
39
  import { loadNotes } from "./features/sticky-notes";
39
40
  import { loadBookmarks } from "./project/bookmarks";