@cryptiklemur/lattice 0.0.0 → 1.2.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/.github/workflows/release.yml +4 -4
- package/.releaserc.json +2 -1
- package/client/src/components/auth/PassphrasePrompt.tsx +70 -70
- package/client/src/components/mesh/NodeBadge.tsx +24 -24
- package/client/src/components/mesh/PairingDialog.tsx +281 -281
- package/client/src/components/panels/FileBrowser.tsx +241 -241
- package/client/src/components/panels/StickyNotes.tsx +187 -187
- package/client/src/components/project-settings/ProjectMemory.tsx +471 -0
- package/client/src/components/project-settings/ProjectSettingsView.tsx +6 -0
- package/client/src/components/settings/Appearance.tsx +151 -151
- package/client/src/components/settings/MeshStatus.tsx +145 -145
- package/client/src/components/settings/SettingsView.tsx +57 -57
- package/client/src/components/setup/SetupWizard.tsx +750 -750
- package/client/src/components/sidebar/AddProjectModal.tsx +432 -0
- package/client/src/components/sidebar/ProjectRail.tsx +8 -4
- package/client/src/components/sidebar/SettingsSidebar.tsx +2 -1
- package/client/src/components/ui/ErrorBoundary.tsx +56 -56
- package/client/src/hooks/useSidebar.ts +16 -0
- package/client/src/router.tsx +453 -391
- package/client/src/stores/sidebar.ts +28 -0
- package/client/vite.config.ts +20 -20
- package/package.json +1 -1
- package/server/src/daemon.ts +1 -0
- package/server/src/handlers/chat.ts +194 -194
- package/server/src/handlers/fs.ts +159 -0
- package/server/src/handlers/memory.ts +179 -0
- package/server/src/handlers/settings.ts +114 -109
- package/shared/src/messages.ts +97 -2
- package/shared/src/project-settings.ts +1 -1
- package/themes/amoled.json +20 -20
- package/themes/ayu-light.json +9 -9
- package/themes/catppuccin-latte.json +9 -9
- package/themes/catppuccin-mocha.json +9 -9
- package/themes/clay-light.json +10 -10
- package/themes/clay.json +10 -10
- package/themes/dracula.json +9 -9
- package/themes/everforest-light.json +9 -9
- package/themes/everforest.json +9 -9
- package/themes/github-light.json +9 -9
- package/themes/gruvbox-dark.json +9 -9
- package/themes/gruvbox-light.json +9 -9
- package/themes/monokai.json +9 -9
- package/themes/nord-light.json +9 -9
- package/themes/nord.json +9 -9
- package/themes/one-dark.json +9 -9
- package/themes/one-light.json +9 -9
- package/themes/rose-pine-dawn.json +9 -9
- package/themes/rose-pine.json +9 -9
- package/themes/solarized-dark.json +9 -9
- package/themes/solarized-light.json +9 -9
- package/themes/tokyo-night-light.json +9 -9
- package/themes/tokyo-night.json +9 -9
- package/.serena/project.yml +0 -138
package/themes/clay.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Clay Dark",
|
|
3
|
-
"author": "Clay",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "1F1B1B", "base01": "2A2525", "base02": "352F2F", "base03": "7D7370",
|
|
6
|
-
"base04": "A09590", "base05": "C2BAB4", "base06": "E5DED8", "base07": "FFFFFF",
|
|
7
|
-
"base08": "F74728", "base09": "FE7150", "base0A": "E5A040", "base0B": "09E5A3",
|
|
8
|
-
"base0C": "4EC9B0", "base0D": "6BA0E5", "base0E": "D085CC", "base0F": "D09558",
|
|
9
|
-
"accent2": "5857FC"
|
|
10
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Clay Dark",
|
|
3
|
+
"author": "Clay",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "1F1B1B", "base01": "2A2525", "base02": "352F2F", "base03": "7D7370",
|
|
6
|
+
"base04": "A09590", "base05": "C2BAB4", "base06": "E5DED8", "base07": "FFFFFF",
|
|
7
|
+
"base08": "F74728", "base09": "FE7150", "base0A": "E5A040", "base0B": "09E5A3",
|
|
8
|
+
"base0C": "4EC9B0", "base0D": "6BA0E5", "base0E": "D085CC", "base0F": "D09558",
|
|
9
|
+
"accent2": "5857FC"
|
|
10
|
+
}
|
package/themes/dracula.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Dracula",
|
|
3
|
-
"author": "Jamy Golden",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "282a36", "base01": "363447", "base02": "44475a", "base03": "6272a4",
|
|
6
|
-
"base04": "9ea8c7", "base05": "f8f8f2", "base06": "f0f1f4", "base07": "ffffff",
|
|
7
|
-
"base08": "ff5555", "base09": "ffb86c", "base0A": "f1fa8c", "base0B": "50fa7b",
|
|
8
|
-
"base0C": "8be9fd", "base0D": "80bfff", "base0E": "ff79c6", "base0F": "bd93f9"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Dracula",
|
|
3
|
+
"author": "Jamy Golden",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "282a36", "base01": "363447", "base02": "44475a", "base03": "6272a4",
|
|
6
|
+
"base04": "9ea8c7", "base05": "f8f8f2", "base06": "f0f1f4", "base07": "ffffff",
|
|
7
|
+
"base08": "ff5555", "base09": "ffb86c", "base0A": "f1fa8c", "base0B": "50fa7b",
|
|
8
|
+
"base0C": "8be9fd", "base0D": "80bfff", "base0E": "ff79c6", "base0F": "bd93f9"
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Everforest Light",
|
|
3
|
-
"author": "Sainnhe Park",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "fdf6e3", "base01": "f4f0d9", "base02": "e6e2cc", "base03": "a6b0a0",
|
|
6
|
-
"base04": "829181", "base05": "5c6a72", "base06": "3a464c", "base07": "272e33",
|
|
7
|
-
"base08": "f85552", "base09": "f57d26", "base0A": "dfa000", "base0B": "8da101",
|
|
8
|
-
"base0C": "35a77c", "base0D": "3a94c5", "base0E": "df69ba", "base0F": "9da9a0"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Everforest Light",
|
|
3
|
+
"author": "Sainnhe Park",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "fdf6e3", "base01": "f4f0d9", "base02": "e6e2cc", "base03": "a6b0a0",
|
|
6
|
+
"base04": "829181", "base05": "5c6a72", "base06": "3a464c", "base07": "272e33",
|
|
7
|
+
"base08": "f85552", "base09": "f57d26", "base0A": "dfa000", "base0B": "8da101",
|
|
8
|
+
"base0C": "35a77c", "base0D": "3a94c5", "base0E": "df69ba", "base0F": "9da9a0"
|
|
9
|
+
}
|
package/themes/everforest.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Everforest",
|
|
3
|
-
"author": "Sainnhe Park",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "272e33", "base01": "2e383c", "base02": "414b50", "base03": "859289",
|
|
6
|
-
"base04": "9da9a0", "base05": "d3c6aa", "base06": "edeada", "base07": "fffbef",
|
|
7
|
-
"base08": "e67e80", "base09": "e69875", "base0A": "dbbc7f", "base0B": "a7c080",
|
|
8
|
-
"base0C": "83c092", "base0D": "7fbbb3", "base0E": "d699b6", "base0F": "9da9a0"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Everforest",
|
|
3
|
+
"author": "Sainnhe Park",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "272e33", "base01": "2e383c", "base02": "414b50", "base03": "859289",
|
|
6
|
+
"base04": "9da9a0", "base05": "d3c6aa", "base06": "edeada", "base07": "fffbef",
|
|
7
|
+
"base08": "e67e80", "base09": "e69875", "base0A": "dbbc7f", "base0B": "a7c080",
|
|
8
|
+
"base0C": "83c092", "base0D": "7fbbb3", "base0E": "d699b6", "base0F": "9da9a0"
|
|
9
|
+
}
|
package/themes/github-light.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "GitHub Light",
|
|
3
|
-
"author": "GitHub",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "ffffff", "base01": "f6f8fa", "base02": "d8dee4", "base03": "afb8c1",
|
|
6
|
-
"base04": "6e7781", "base05": "424a53", "base06": "24292f", "base07": "1b1f24",
|
|
7
|
-
"base08": "cf222e", "base09": "bc4c00", "base0A": "9a6700", "base0B": "1a7f37",
|
|
8
|
-
"base0C": "0969da", "base0D": "0550ae", "base0E": "8250df", "base0F": "6e7781"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "GitHub Light",
|
|
3
|
+
"author": "GitHub",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "ffffff", "base01": "f6f8fa", "base02": "d8dee4", "base03": "afb8c1",
|
|
6
|
+
"base04": "6e7781", "base05": "424a53", "base06": "24292f", "base07": "1b1f24",
|
|
7
|
+
"base08": "cf222e", "base09": "bc4c00", "base0A": "9a6700", "base0B": "1a7f37",
|
|
8
|
+
"base0C": "0969da", "base0D": "0550ae", "base0E": "8250df", "base0F": "6e7781"
|
|
9
|
+
}
|
package/themes/gruvbox-dark.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Gruvbox Dark",
|
|
3
|
-
"author": "Dawid Kurek, morhetz",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "282828", "base01": "3c3836", "base02": "504945", "base03": "665c54",
|
|
6
|
-
"base04": "bdae93", "base05": "d5c4a1", "base06": "ebdbb2", "base07": "fbf1c7",
|
|
7
|
-
"base08": "fb4934", "base09": "fe8019", "base0A": "fabd2f", "base0B": "b8bb26",
|
|
8
|
-
"base0C": "8ec07c", "base0D": "83a598", "base0E": "d3869b", "base0F": "d65d0e"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Gruvbox Dark",
|
|
3
|
+
"author": "Dawid Kurek, morhetz",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "282828", "base01": "3c3836", "base02": "504945", "base03": "665c54",
|
|
6
|
+
"base04": "bdae93", "base05": "d5c4a1", "base06": "ebdbb2", "base07": "fbf1c7",
|
|
7
|
+
"base08": "fb4934", "base09": "fe8019", "base0A": "fabd2f", "base0B": "b8bb26",
|
|
8
|
+
"base0C": "8ec07c", "base0D": "83a598", "base0E": "d3869b", "base0F": "d65d0e"
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Gruvbox Light",
|
|
3
|
-
"author": "Dawid Kurek, morhetz",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "fbf1c7", "base01": "ebdbb2", "base02": "d5c4a1", "base03": "a89984",
|
|
6
|
-
"base04": "7c6f64", "base05": "504945", "base06": "3c3836", "base07": "282828",
|
|
7
|
-
"base08": "9d0006", "base09": "af3a03", "base0A": "b57614", "base0B": "79740e",
|
|
8
|
-
"base0C": "427b58", "base0D": "076678", "base0E": "8f3f71", "base0F": "d65d0e"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Gruvbox Light",
|
|
3
|
+
"author": "Dawid Kurek, morhetz",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "fbf1c7", "base01": "ebdbb2", "base02": "d5c4a1", "base03": "a89984",
|
|
6
|
+
"base04": "7c6f64", "base05": "504945", "base06": "3c3836", "base07": "282828",
|
|
7
|
+
"base08": "9d0006", "base09": "af3a03", "base0A": "b57614", "base0B": "79740e",
|
|
8
|
+
"base0C": "427b58", "base0D": "076678", "base0E": "8f3f71", "base0F": "d65d0e"
|
|
9
|
+
}
|
package/themes/monokai.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Monokai",
|
|
3
|
-
"author": "Wimer Hazenberg",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "272822", "base01": "383830", "base02": "49483e", "base03": "75715e",
|
|
6
|
-
"base04": "a59f85", "base05": "f8f8f2", "base06": "f5f4f1", "base07": "f9f8f5",
|
|
7
|
-
"base08": "f92672", "base09": "fd971f", "base0A": "f4bf75", "base0B": "a6e22e",
|
|
8
|
-
"base0C": "a1efe4", "base0D": "66d9ef", "base0E": "ae81ff", "base0F": "cc6633"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Monokai",
|
|
3
|
+
"author": "Wimer Hazenberg",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "272822", "base01": "383830", "base02": "49483e", "base03": "75715e",
|
|
6
|
+
"base04": "a59f85", "base05": "f8f8f2", "base06": "f5f4f1", "base07": "f9f8f5",
|
|
7
|
+
"base08": "f92672", "base09": "fd971f", "base0A": "f4bf75", "base0B": "a6e22e",
|
|
8
|
+
"base0C": "a1efe4", "base0D": "66d9ef", "base0E": "ae81ff", "base0F": "cc6633"
|
|
9
|
+
}
|
package/themes/nord-light.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Nord Light",
|
|
3
|
-
"author": "threddast",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "E5E9F0", "base01": "C2D0E7", "base02": "B8C5DB", "base03": "AEBACF",
|
|
6
|
-
"base04": "60728C", "base05": "2E3440", "base06": "3B4252", "base07": "29838D",
|
|
7
|
-
"base08": "99324B", "base09": "AC4426", "base0A": "9A7500", "base0B": "4F894C",
|
|
8
|
-
"base0C": "398EAC", "base0D": "3B6EA8", "base0E": "97365B", "base0F": "5272AF"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Nord Light",
|
|
3
|
+
"author": "threddast",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "E5E9F0", "base01": "C2D0E7", "base02": "B8C5DB", "base03": "AEBACF",
|
|
6
|
+
"base04": "60728C", "base05": "2E3440", "base06": "3B4252", "base07": "29838D",
|
|
7
|
+
"base08": "99324B", "base09": "AC4426", "base0A": "9A7500", "base0B": "4F894C",
|
|
8
|
+
"base0C": "398EAC", "base0D": "3B6EA8", "base0E": "97365B", "base0F": "5272AF"
|
|
9
|
+
}
|
package/themes/nord.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Nord",
|
|
3
|
-
"author": "arcticicestudio",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "2E3440", "base01": "3B4252", "base02": "434C5E", "base03": "4C566A",
|
|
6
|
-
"base04": "D8DEE9", "base05": "E5E9F0", "base06": "ECEFF4", "base07": "8FBCBB",
|
|
7
|
-
"base08": "BF616A", "base09": "D08770", "base0A": "EBCB8B", "base0B": "A3BE8C",
|
|
8
|
-
"base0C": "88C0D0", "base0D": "81A1C1", "base0E": "B48EAD", "base0F": "5E81AC"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Nord",
|
|
3
|
+
"author": "arcticicestudio",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "2E3440", "base01": "3B4252", "base02": "434C5E", "base03": "4C566A",
|
|
6
|
+
"base04": "D8DEE9", "base05": "E5E9F0", "base06": "ECEFF4", "base07": "8FBCBB",
|
|
7
|
+
"base08": "BF616A", "base09": "D08770", "base0A": "EBCB8B", "base0B": "A3BE8C",
|
|
8
|
+
"base0C": "88C0D0", "base0D": "81A1C1", "base0E": "B48EAD", "base0F": "5E81AC"
|
|
9
|
+
}
|
package/themes/one-dark.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "One Dark",
|
|
3
|
-
"author": "Lalit Magant",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "282c34", "base01": "353b45", "base02": "3e4451", "base03": "545862",
|
|
6
|
-
"base04": "565c64", "base05": "abb2bf", "base06": "b6bdca", "base07": "c8ccd4",
|
|
7
|
-
"base08": "e06c75", "base09": "d19a66", "base0A": "e5c07b", "base0B": "98c379",
|
|
8
|
-
"base0C": "56b6c2", "base0D": "61afef", "base0E": "c678dd", "base0F": "be5046"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "One Dark",
|
|
3
|
+
"author": "Lalit Magant",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "282c34", "base01": "353b45", "base02": "3e4451", "base03": "545862",
|
|
6
|
+
"base04": "565c64", "base05": "abb2bf", "base06": "b6bdca", "base07": "c8ccd4",
|
|
7
|
+
"base08": "e06c75", "base09": "d19a66", "base0A": "e5c07b", "base0B": "98c379",
|
|
8
|
+
"base0C": "56b6c2", "base0D": "61afef", "base0E": "c678dd", "base0F": "be5046"
|
|
9
|
+
}
|
package/themes/one-light.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "One Light",
|
|
3
|
-
"author": "Daniel Pfeifer",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "FAFAFA", "base01": "F0F0F1", "base02": "E5E5E6", "base03": "A0A1A7",
|
|
6
|
-
"base04": "696C77", "base05": "383A42", "base06": "202227", "base07": "090A0B",
|
|
7
|
-
"base08": "CA1243", "base09": "D75F00", "base0A": "C18401", "base0B": "50A14F",
|
|
8
|
-
"base0C": "0184BC", "base0D": "4078F2", "base0E": "A626A4", "base0F": "986801"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "One Light",
|
|
3
|
+
"author": "Daniel Pfeifer",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "FAFAFA", "base01": "F0F0F1", "base02": "E5E5E6", "base03": "A0A1A7",
|
|
6
|
+
"base04": "696C77", "base05": "383A42", "base06": "202227", "base07": "090A0B",
|
|
7
|
+
"base08": "CA1243", "base09": "D75F00", "base0A": "C18401", "base0B": "50A14F",
|
|
8
|
+
"base0C": "0184BC", "base0D": "4078F2", "base0E": "A626A4", "base0F": "986801"
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Rosé Pine Dawn",
|
|
3
|
-
"author": "Emilia Dunfelt",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "faf4ed", "base01": "fffaf3", "base02": "dfdad9", "base03": "9893a5",
|
|
6
|
-
"base04": "797593", "base05": "575279", "base06": "26233a", "base07": "191724",
|
|
7
|
-
"base08": "b4637a", "base09": "ea9d34", "base0A": "d7827e", "base0B": "286983",
|
|
8
|
-
"base0C": "56949f", "base0D": "907aa9", "base0E": "ea9d34", "base0F": "cecacd"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Rosé Pine Dawn",
|
|
3
|
+
"author": "Emilia Dunfelt",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "faf4ed", "base01": "fffaf3", "base02": "dfdad9", "base03": "9893a5",
|
|
6
|
+
"base04": "797593", "base05": "575279", "base06": "26233a", "base07": "191724",
|
|
7
|
+
"base08": "b4637a", "base09": "ea9d34", "base0A": "d7827e", "base0B": "286983",
|
|
8
|
+
"base0C": "56949f", "base0D": "907aa9", "base0E": "ea9d34", "base0F": "cecacd"
|
|
9
|
+
}
|
package/themes/rose-pine.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Rosé Pine",
|
|
3
|
-
"author": "Emilia Dunfelt",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "191724", "base01": "1f1d2e", "base02": "26233a", "base03": "6e6a86",
|
|
6
|
-
"base04": "908caa", "base05": "e0def4", "base06": "e0def4", "base07": "524f67",
|
|
7
|
-
"base08": "eb6f92", "base09": "f6c177", "base0A": "ebbcba", "base0B": "31748f",
|
|
8
|
-
"base0C": "9ccfd8", "base0D": "c4a7e7", "base0E": "f6c177", "base0F": "524f67"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Rosé Pine",
|
|
3
|
+
"author": "Emilia Dunfelt",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "191724", "base01": "1f1d2e", "base02": "26233a", "base03": "6e6a86",
|
|
6
|
+
"base04": "908caa", "base05": "e0def4", "base06": "e0def4", "base07": "524f67",
|
|
7
|
+
"base08": "eb6f92", "base09": "f6c177", "base0A": "ebbcba", "base0B": "31748f",
|
|
8
|
+
"base0C": "9ccfd8", "base0D": "c4a7e7", "base0E": "f6c177", "base0F": "524f67"
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Solarized Dark",
|
|
3
|
-
"author": "Ethan Schoonover",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "002b36", "base01": "073642", "base02": "586e75", "base03": "657b83",
|
|
6
|
-
"base04": "839496", "base05": "93a1a1", "base06": "eee8d5", "base07": "fdf6e3",
|
|
7
|
-
"base08": "dc322f", "base09": "cb4b16", "base0A": "b58900", "base0B": "859900",
|
|
8
|
-
"base0C": "2aa198", "base0D": "268bd2", "base0E": "6c71c4", "base0F": "d33682"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Solarized Dark",
|
|
3
|
+
"author": "Ethan Schoonover",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "002b36", "base01": "073642", "base02": "586e75", "base03": "657b83",
|
|
6
|
+
"base04": "839496", "base05": "93a1a1", "base06": "eee8d5", "base07": "fdf6e3",
|
|
7
|
+
"base08": "dc322f", "base09": "cb4b16", "base0A": "b58900", "base0B": "859900",
|
|
8
|
+
"base0C": "2aa198", "base0D": "268bd2", "base0E": "6c71c4", "base0F": "d33682"
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Solarized Light",
|
|
3
|
-
"author": "Ethan Schoonover",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "fdf6e3", "base01": "eee8d5", "base02": "d3cbb7", "base03": "93a1a1",
|
|
6
|
-
"base04": "839496", "base05": "586e75", "base06": "073642", "base07": "002b36",
|
|
7
|
-
"base08": "dc322f", "base09": "cb4b16", "base0A": "b58900", "base0B": "859900",
|
|
8
|
-
"base0C": "2aa198", "base0D": "268bd2", "base0E": "6c71c4", "base0F": "d33682"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Solarized Light",
|
|
3
|
+
"author": "Ethan Schoonover",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "fdf6e3", "base01": "eee8d5", "base02": "d3cbb7", "base03": "93a1a1",
|
|
6
|
+
"base04": "839496", "base05": "586e75", "base06": "073642", "base07": "002b36",
|
|
7
|
+
"base08": "dc322f", "base09": "cb4b16", "base0A": "b58900", "base0B": "859900",
|
|
8
|
+
"base0C": "2aa198", "base0D": "268bd2", "base0E": "6c71c4", "base0F": "d33682"
|
|
9
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Tokyo Night Light",
|
|
3
|
-
"author": "folke",
|
|
4
|
-
"variant": "light",
|
|
5
|
-
"base00": "D5D6DB", "base01": "CBCCD1", "base02": "DFE0E5", "base03": "9699A3",
|
|
6
|
-
"base04": "4C505E", "base05": "343B59", "base06": "1A1B26", "base07": "1A1B26",
|
|
7
|
-
"base08": "8C4351", "base09": "965027", "base0A": "8F5E15", "base0B": "33635C",
|
|
8
|
-
"base0C": "0F4B6E", "base0D": "34548A", "base0E": "5A4A78", "base0F": "655259"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Tokyo Night Light",
|
|
3
|
+
"author": "folke",
|
|
4
|
+
"variant": "light",
|
|
5
|
+
"base00": "D5D6DB", "base01": "CBCCD1", "base02": "DFE0E5", "base03": "9699A3",
|
|
6
|
+
"base04": "4C505E", "base05": "343B59", "base06": "1A1B26", "base07": "1A1B26",
|
|
7
|
+
"base08": "8C4351", "base09": "965027", "base0A": "8F5E15", "base0B": "33635C",
|
|
8
|
+
"base0C": "0F4B6E", "base0D": "34548A", "base0E": "5A4A78", "base0F": "655259"
|
|
9
|
+
}
|
package/themes/tokyo-night.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Tokyo Night",
|
|
3
|
-
"author": "Michaël Ball",
|
|
4
|
-
"variant": "dark",
|
|
5
|
-
"base00": "1A1B26", "base01": "16161E", "base02": "2F3549", "base03": "444B6A",
|
|
6
|
-
"base04": "787C99", "base05": "A9B1D6", "base06": "CBCCD1", "base07": "D5D6DB",
|
|
7
|
-
"base08": "C0CAF5", "base09": "A9B1D6", "base0A": "0DB9D7", "base0B": "9ECE6A",
|
|
8
|
-
"base0C": "B4F9F8", "base0D": "2AC3DE", "base0E": "BB9AF7", "base0F": "F7768E"
|
|
9
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "Tokyo Night",
|
|
3
|
+
"author": "Michaël Ball",
|
|
4
|
+
"variant": "dark",
|
|
5
|
+
"base00": "1A1B26", "base01": "16161E", "base02": "2F3549", "base03": "444B6A",
|
|
6
|
+
"base04": "787C99", "base05": "A9B1D6", "base06": "CBCCD1", "base07": "D5D6DB",
|
|
7
|
+
"base08": "C0CAF5", "base09": "A9B1D6", "base0A": "0DB9D7", "base0B": "9ECE6A",
|
|
8
|
+
"base0C": "B4F9F8", "base0D": "2AC3DE", "base0E": "BB9AF7", "base0F": "F7768E"
|
|
9
|
+
}
|
package/.serena/project.yml
DELETED
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
# the name by which the project can be referenced within Serena
|
|
2
|
-
project_name: "lattice"
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
# list of languages for which language servers are started; choose from:
|
|
6
|
-
# al bash clojure cpp csharp
|
|
7
|
-
# csharp_omnisharp dart elixir elm erlang
|
|
8
|
-
# fortran fsharp go groovy haskell
|
|
9
|
-
# java julia kotlin lua markdown
|
|
10
|
-
# matlab nix pascal perl php
|
|
11
|
-
# php_phpactor powershell python python_jedi r
|
|
12
|
-
# rego ruby ruby_solargraph rust scala
|
|
13
|
-
# swift terraform toml typescript typescript_vts
|
|
14
|
-
# vue yaml zig
|
|
15
|
-
# (This list may be outdated. For the current list, see values of Language enum here:
|
|
16
|
-
# https://github.com/oraios/serena/blob/main/src/solidlsp/ls_config.py
|
|
17
|
-
# For some languages, there are alternative language servers, e.g. csharp_omnisharp, ruby_solargraph.)
|
|
18
|
-
# Note:
|
|
19
|
-
# - For C, use cpp
|
|
20
|
-
# - For JavaScript, use typescript
|
|
21
|
-
# - For Free Pascal/Lazarus, use pascal
|
|
22
|
-
# Special requirements:
|
|
23
|
-
# Some languages require additional setup/installations.
|
|
24
|
-
# See here for details: https://oraios.github.io/serena/01-about/020_programming-languages.html#language-servers
|
|
25
|
-
# When using multiple languages, the first language server that supports a given file will be used for that file.
|
|
26
|
-
# The first language is the default language and the respective language server will be used as a fallback.
|
|
27
|
-
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
|
|
28
|
-
languages:
|
|
29
|
-
- typescript
|
|
30
|
-
|
|
31
|
-
# the encoding used by text files in the project
|
|
32
|
-
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
|
|
33
|
-
encoding: "utf-8"
|
|
34
|
-
|
|
35
|
-
# line ending convention to use when writing source files.
|
|
36
|
-
# Possible values: unset (use global setting), "lf", "crlf", or "native" (platform default)
|
|
37
|
-
# This does not affect Serena's own files (e.g. memories and configuration files), which always use native line endings.
|
|
38
|
-
line_ending:
|
|
39
|
-
|
|
40
|
-
# The language backend to use for this project.
|
|
41
|
-
# If not set, the global setting from serena_config.yml is used.
|
|
42
|
-
# Valid values: LSP, JetBrains
|
|
43
|
-
# Note: the backend is fixed at startup. If a project with a different backend
|
|
44
|
-
# is activated post-init, an error will be returned.
|
|
45
|
-
language_backend:
|
|
46
|
-
|
|
47
|
-
# whether to use project's .gitignore files to ignore files
|
|
48
|
-
ignore_all_files_in_gitignore: true
|
|
49
|
-
|
|
50
|
-
# list of additional paths to ignore in this project.
|
|
51
|
-
# Same syntax as gitignore, so you can use * and **.
|
|
52
|
-
# Note: global ignored_paths from serena_config.yml are also applied additively.
|
|
53
|
-
ignored_paths: []
|
|
54
|
-
|
|
55
|
-
# whether the project is in read-only mode
|
|
56
|
-
# If set to true, all editing tools will be disabled and attempts to use them will result in an error
|
|
57
|
-
# Added on 2025-04-18
|
|
58
|
-
read_only: false
|
|
59
|
-
|
|
60
|
-
# list of tool names to exclude.
|
|
61
|
-
# This extends the existing exclusions (e.g. from the global configuration)
|
|
62
|
-
#
|
|
63
|
-
# Below is the complete list of tools for convenience.
|
|
64
|
-
# To make sure you have the latest list of tools, and to view their descriptions,
|
|
65
|
-
# execute `uv run scripts/print_tool_overview.py`.
|
|
66
|
-
#
|
|
67
|
-
# * `activate_project`: Activates a project by name.
|
|
68
|
-
# * `check_onboarding_performed`: Checks whether project onboarding was already performed.
|
|
69
|
-
# * `create_text_file`: Creates/overwrites a file in the project directory.
|
|
70
|
-
# * `delete_lines`: Deletes a range of lines within a file.
|
|
71
|
-
# * `delete_memory`: Deletes a memory from Serena's project-specific memory store.
|
|
72
|
-
# * `execute_shell_command`: Executes a shell command.
|
|
73
|
-
# * `find_referencing_code_snippets`: Finds code snippets in which the symbol at the given location is referenced.
|
|
74
|
-
# * `find_referencing_symbols`: Finds symbols that reference the symbol at the given location (optionally filtered by type).
|
|
75
|
-
# * `find_symbol`: Performs a global (or local) search for symbols with/containing a given name/substring (optionally filtered by type).
|
|
76
|
-
# * `get_current_config`: Prints the current configuration of the agent, including the active and available projects, tools, contexts, and modes.
|
|
77
|
-
# * `get_symbols_overview`: Gets an overview of the top-level symbols defined in a given file.
|
|
78
|
-
# * `initial_instructions`: Gets the initial instructions for the current project.
|
|
79
|
-
# Should only be used in settings where the system prompt cannot be set,
|
|
80
|
-
# e.g. in clients you have no control over, like Claude Desktop.
|
|
81
|
-
# * `insert_after_symbol`: Inserts content after the end of the definition of a given symbol.
|
|
82
|
-
# * `insert_at_line`: Inserts content at a given line in a file.
|
|
83
|
-
# * `insert_before_symbol`: Inserts content before the beginning of the definition of a given symbol.
|
|
84
|
-
# * `list_dir`: Lists files and directories in the given directory (optionally with recursion).
|
|
85
|
-
# * `list_memories`: Lists memories in Serena's project-specific memory store.
|
|
86
|
-
# * `onboarding`: Performs onboarding (identifying the project structure and essential tasks, e.g. for testing or building).
|
|
87
|
-
# * `prepare_for_new_conversation`: Provides instructions for preparing for a new conversation (in order to continue with the necessary context).
|
|
88
|
-
# * `read_file`: Reads a file within the project directory.
|
|
89
|
-
# * `read_memory`: Reads the memory with the given name from Serena's project-specific memory store.
|
|
90
|
-
# * `remove_project`: Removes a project from the Serena configuration.
|
|
91
|
-
# * `replace_lines`: Replaces a range of lines within a file with new content.
|
|
92
|
-
# * `replace_symbol_body`: Replaces the full definition of a symbol.
|
|
93
|
-
# * `restart_language_server`: Restarts the language server, may be necessary when edits not through Serena happen.
|
|
94
|
-
# * `search_for_pattern`: Performs a search for a pattern in the project.
|
|
95
|
-
# * `summarize_changes`: Provides instructions for summarizing the changes made to the codebase.
|
|
96
|
-
# * `switch_modes`: Activates modes by providing a list of their names
|
|
97
|
-
# * `think_about_collected_information`: Thinking tool for pondering the completeness of collected information.
|
|
98
|
-
# * `think_about_task_adherence`: Thinking tool for determining whether the agent is still on track with the current task.
|
|
99
|
-
# * `think_about_whether_you_are_done`: Thinking tool for determining whether the task is truly completed.
|
|
100
|
-
# * `write_memory`: Writes a named memory (for future reference) to Serena's project-specific memory store.
|
|
101
|
-
excluded_tools: []
|
|
102
|
-
|
|
103
|
-
# list of tools to include that would otherwise be disabled (particularly optional tools that are disabled by default).
|
|
104
|
-
# This extends the existing inclusions (e.g. from the global configuration).
|
|
105
|
-
included_optional_tools: []
|
|
106
|
-
|
|
107
|
-
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
|
|
108
|
-
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
|
|
109
|
-
fixed_tools: []
|
|
110
|
-
|
|
111
|
-
# list of mode names to that are always to be included in the set of active modes
|
|
112
|
-
# The full set of modes to be activated is base_modes + default_modes.
|
|
113
|
-
# If the setting is undefined, the base_modes from the global configuration (serena_config.yml) apply.
|
|
114
|
-
# Otherwise, this setting overrides the global configuration.
|
|
115
|
-
# Set this to [] to disable base modes for this project.
|
|
116
|
-
# Set this to a list of mode names to always include the respective modes for this project.
|
|
117
|
-
base_modes:
|
|
118
|
-
|
|
119
|
-
# list of mode names that are to be activated by default.
|
|
120
|
-
# The full set of modes to be activated is base_modes + default_modes.
|
|
121
|
-
# If the setting is undefined, the default_modes from the global configuration (serena_config.yml) apply.
|
|
122
|
-
# Otherwise, this overrides the setting from the global configuration (serena_config.yml).
|
|
123
|
-
# This setting can, in turn, be overridden by CLI parameters (--mode).
|
|
124
|
-
default_modes:
|
|
125
|
-
|
|
126
|
-
# initial prompt for the project. It will always be given to the LLM upon activating the project
|
|
127
|
-
# (contrary to the memories, which are loaded on demand).
|
|
128
|
-
initial_prompt: ""
|
|
129
|
-
|
|
130
|
-
# time budget (seconds) per tool call for the retrieval of additional symbol information
|
|
131
|
-
# such as docstrings or parameter information.
|
|
132
|
-
# This overrides the corresponding setting in the global configuration; see the documentation there.
|
|
133
|
-
# If null or missing, use the setting from the global configuration.
|
|
134
|
-
symbol_info_budget:
|
|
135
|
-
|
|
136
|
-
# list of regex patterns which, when matched, mark a memory entry as read‑only.
|
|
137
|
-
# Extends the list from the global configuration, merging the two lists.
|
|
138
|
-
read_only_memory_patterns: []
|