@oh-my-pi/pi-coding-agent 6.8.5 → 6.9.69
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +51 -0
- package/package.json +6 -6
- package/src/cli/stats-cli.ts +191 -0
- package/src/core/agent-session.ts +103 -1
- package/src/core/extensions/index.ts +2 -0
- package/src/core/extensions/runner.ts +31 -0
- package/src/core/extensions/types.ts +24 -0
- package/src/core/messages.ts +48 -0
- package/src/core/sdk.ts +0 -2
- package/src/core/session-manager.ts +10 -1
- package/src/core/settings-manager.ts +0 -105
- package/src/core/tools/bash.ts +5 -7
- package/src/core/tools/index.ts +1 -5
- package/src/core/tools/patch/applicator.ts +115 -17
- package/src/core/tools/patch/index.ts +1 -1
- package/src/core/tools/patch/normalize.ts +185 -10
- package/src/core/tools/python.ts +444 -86
- package/src/core/tools/task/executor.ts +2 -6
- package/src/core/tools/task/index.ts +30 -12
- package/src/core/tools/task/render.ts +163 -30
- package/src/core/tools/task/template.ts +37 -0
- package/src/core/tools/task/types.ts +6 -2
- package/src/core/tools/task/worker.ts +1 -1
- package/src/index.ts +2 -2
- package/src/main.ts +12 -0
- package/src/modes/interactive/components/python-execution.ts +180 -0
- package/src/modes/interactive/components/settings-defs.ts +0 -70
- package/src/modes/interactive/components/settings-selector.ts +0 -1
- package/src/modes/interactive/components/welcome.ts +1 -0
- package/src/modes/interactive/controllers/command-controller.ts +46 -0
- package/src/modes/interactive/controllers/event-controller.ts +0 -11
- package/src/modes/interactive/controllers/input-controller.ts +28 -1
- package/src/modes/interactive/controllers/selector-controller.ts +0 -9
- package/src/modes/interactive/interactive-mode.ts +10 -58
- package/src/modes/interactive/theme/dark.json +2 -9
- package/src/modes/interactive/theme/defaults/alabaster.json +2 -8
- package/src/modes/interactive/theme/defaults/amethyst.json +2 -9
- package/src/modes/interactive/theme/defaults/anthracite.json +2 -9
- package/src/modes/interactive/theme/defaults/basalt.json +89 -88
- package/src/modes/interactive/theme/defaults/birch.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-abyss.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-arctic.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-aurora.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-catppuccin.json +2 -1
- package/src/modes/interactive/theme/defaults/dark-cavern.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-copper.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-cosmos.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-dracula.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-eclipse.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-ember.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-equinox.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-forest.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-github.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-gruvbox.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-lavender.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-lunar.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-midnight.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-monochrome.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-monokai.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-nebula.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-nord.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-ocean.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-one.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-rainforest.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-reef.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-retro.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-rose-pine.json +2 -1
- package/src/modes/interactive/theme/defaults/dark-sakura.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-slate.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-solarized.json +2 -1
- package/src/modes/interactive/theme/defaults/dark-solstice.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-starfall.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-sunset.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-swamp.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-synthwave.json +2 -1
- package/src/modes/interactive/theme/defaults/dark-taiga.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-terminal.json +3 -2
- package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +2 -9
- package/src/modes/interactive/theme/defaults/dark-tundra.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-twilight.json +2 -8
- package/src/modes/interactive/theme/defaults/dark-volcanic.json +2 -8
- package/src/modes/interactive/theme/defaults/graphite.json +2 -9
- package/src/modes/interactive/theme/defaults/light-arctic.json +2 -1
- package/src/modes/interactive/theme/defaults/light-aurora-day.json +2 -8
- package/src/modes/interactive/theme/defaults/light-canyon.json +2 -8
- package/src/modes/interactive/theme/defaults/light-catppuccin.json +2 -1
- package/src/modes/interactive/theme/defaults/light-cirrus.json +2 -8
- package/src/modes/interactive/theme/defaults/light-coral.json +3 -2
- package/src/modes/interactive/theme/defaults/light-cyberpunk.json +2 -9
- package/src/modes/interactive/theme/defaults/light-dawn.json +2 -8
- package/src/modes/interactive/theme/defaults/light-dunes.json +2 -8
- package/src/modes/interactive/theme/defaults/light-eucalyptus.json +3 -2
- package/src/modes/interactive/theme/defaults/light-forest.json +2 -9
- package/src/modes/interactive/theme/defaults/light-frost.json +3 -2
- package/src/modes/interactive/theme/defaults/light-github.json +2 -1
- package/src/modes/interactive/theme/defaults/light-glacier.json +2 -8
- package/src/modes/interactive/theme/defaults/light-gruvbox.json +2 -9
- package/src/modes/interactive/theme/defaults/light-haze.json +2 -8
- package/src/modes/interactive/theme/defaults/light-honeycomb.json +3 -2
- package/src/modes/interactive/theme/defaults/light-lagoon.json +2 -8
- package/src/modes/interactive/theme/defaults/light-lavender.json +3 -2
- package/src/modes/interactive/theme/defaults/light-meadow.json +2 -8
- package/src/modes/interactive/theme/defaults/light-mint.json +3 -2
- package/src/modes/interactive/theme/defaults/light-monochrome.json +2 -1
- package/src/modes/interactive/theme/defaults/light-ocean.json +2 -9
- package/src/modes/interactive/theme/defaults/light-one.json +2 -8
- package/src/modes/interactive/theme/defaults/light-opal.json +2 -8
- package/src/modes/interactive/theme/defaults/light-orchard.json +2 -8
- package/src/modes/interactive/theme/defaults/light-paper.json +3 -2
- package/src/modes/interactive/theme/defaults/light-prism.json +2 -8
- package/src/modes/interactive/theme/defaults/light-retro.json +2 -9
- package/src/modes/interactive/theme/defaults/light-sand.json +3 -2
- package/src/modes/interactive/theme/defaults/light-savanna.json +2 -8
- package/src/modes/interactive/theme/defaults/light-solarized.json +2 -1
- package/src/modes/interactive/theme/defaults/light-soleil.json +2 -8
- package/src/modes/interactive/theme/defaults/light-sunset.json +2 -9
- package/src/modes/interactive/theme/defaults/light-synthwave.json +2 -9
- package/src/modes/interactive/theme/defaults/light-tokyo-night.json +2 -9
- package/src/modes/interactive/theme/defaults/light-wetland.json +2 -8
- package/src/modes/interactive/theme/defaults/light-zenith.json +2 -8
- package/src/modes/interactive/theme/defaults/limestone.json +2 -8
- package/src/modes/interactive/theme/defaults/mahogany.json +2 -9
- package/src/modes/interactive/theme/defaults/marble.json +2 -8
- package/src/modes/interactive/theme/defaults/obsidian.json +89 -88
- package/src/modes/interactive/theme/defaults/onyx.json +89 -88
- package/src/modes/interactive/theme/defaults/pearl.json +2 -8
- package/src/modes/interactive/theme/defaults/porcelain.json +89 -88
- package/src/modes/interactive/theme/defaults/quartz.json +2 -8
- package/src/modes/interactive/theme/defaults/sandstone.json +2 -8
- package/src/modes/interactive/theme/defaults/titanium.json +88 -87
- package/src/modes/interactive/theme/light.json +2 -8
- package/src/modes/interactive/theme/theme-schema.json +5 -0
- package/src/modes/interactive/theme/theme.ts +7 -0
- package/src/modes/interactive/types.ts +5 -15
- package/src/modes/interactive/utils/ui-helpers.ts +20 -0
- package/src/prompts/system/system-prompt.md +8 -0
- package/src/prompts/tools/python.md +40 -2
- package/src/prompts/tools/task.md +8 -13
- package/src/core/custom-commands/bundled/wt/index.ts +0 -435
- package/src/core/tools/git.ts +0 -213
- package/src/core/voice-controller.ts +0 -135
- package/src/core/voice-supervisor.ts +0 -976
- package/src/core/voice.ts +0 -314
- package/src/lib/worktree/collapse.ts +0 -180
- package/src/lib/worktree/constants.ts +0 -14
- package/src/lib/worktree/errors.ts +0 -23
- package/src/lib/worktree/git.ts +0 -60
- package/src/lib/worktree/index.ts +0 -15
- package/src/lib/worktree/operations.ts +0 -216
- package/src/lib/worktree/session.ts +0 -114
- package/src/lib/worktree/stats.ts +0 -67
- package/src/modes/interactive/utils/voice-manager.ts +0 -96
- package/src/prompts/tools/git.md +0 -9
- package/src/prompts/voice-summary.md +0 -12
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"dim": "dimPurple",
|
|
38
38
|
"text": "",
|
|
39
39
|
"thinkingText": "dimMagenta",
|
|
40
|
-
|
|
41
40
|
"selectedBg": "selectedBg",
|
|
42
41
|
"userMessageBg": "userMsgBg",
|
|
43
42
|
"userMessageText": "",
|
|
@@ -49,7 +48,6 @@
|
|
|
49
48
|
"toolErrorBg": "toolErrorBg",
|
|
50
49
|
"toolTitle": "electricBlue",
|
|
51
50
|
"toolOutput": "dimCyan",
|
|
52
|
-
|
|
53
51
|
"mdHeading": "neonMagenta",
|
|
54
52
|
"mdLink": "electricBlue",
|
|
55
53
|
"mdLinkUrl": "dimPurple",
|
|
@@ -60,13 +58,10 @@
|
|
|
60
58
|
"mdQuoteBorder": "dimPurple",
|
|
61
59
|
"mdHr": "darkBlue",
|
|
62
60
|
"mdListBullet": "neonPink",
|
|
63
|
-
|
|
64
61
|
"toolDiffAdded": "neonGreen",
|
|
65
62
|
"toolDiffRemoved": "#FF6F61",
|
|
66
63
|
"toolDiffContext": "dimCyan",
|
|
67
|
-
|
|
68
64
|
"link": "electricBlue",
|
|
69
|
-
|
|
70
65
|
"syntaxComment": "dimPurple",
|
|
71
66
|
"syntaxKeyword": "neonMagenta",
|
|
72
67
|
"syntaxFunction": "electricCyan",
|
|
@@ -76,16 +71,13 @@
|
|
|
76
71
|
"syntaxType": "violet",
|
|
77
72
|
"syntaxOperator": "neonMagenta",
|
|
78
73
|
"syntaxPunctuation": "dimCyan",
|
|
79
|
-
|
|
80
74
|
"thinkingOff": "darkBlue",
|
|
81
75
|
"thinkingMinimal": "dimPurple",
|
|
82
76
|
"thinkingLow": "electricCyan",
|
|
83
77
|
"thinkingMedium": "electricBlue",
|
|
84
78
|
"thinkingHigh": "violet",
|
|
85
79
|
"thinkingXhigh": "neonMagenta",
|
|
86
|
-
|
|
87
80
|
"bashMode": "acidYellow",
|
|
88
|
-
|
|
89
81
|
"statusLineBg": "#091833",
|
|
90
82
|
"statusLineSep": 236,
|
|
91
83
|
"statusLineModel": "#EA00D9",
|
|
@@ -99,7 +91,8 @@
|
|
|
99
91
|
"statusLineUntracked": "#FF007A",
|
|
100
92
|
"statusLineOutput": "#EA00D9",
|
|
101
93
|
"statusLineCost": "#FF6F61",
|
|
102
|
-
"statusLineSubagents": "accent"
|
|
94
|
+
"statusLineSubagents": "accent",
|
|
95
|
+
"pythonMode": "#f0c040"
|
|
103
96
|
},
|
|
104
97
|
"export": {
|
|
105
98
|
"pageBg": "#091833",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"dim": "currentLine",
|
|
33
33
|
"text": "",
|
|
34
34
|
"thinkingText": "comment",
|
|
35
|
-
|
|
36
35
|
"selectedBg": "selectedBg",
|
|
37
36
|
"userMessageBg": "userMsgBg",
|
|
38
37
|
"userMessageText": "",
|
|
@@ -45,7 +44,6 @@
|
|
|
45
44
|
"toolText": "",
|
|
46
45
|
"toolTitle": "cyan",
|
|
47
46
|
"toolOutput": "comment",
|
|
48
|
-
|
|
49
47
|
"mdHeading": "purple",
|
|
50
48
|
"mdLink": "cyan",
|
|
51
49
|
"mdLinkUrl": "comment",
|
|
@@ -56,13 +54,10 @@
|
|
|
56
54
|
"mdQuoteBorder": "currentLine",
|
|
57
55
|
"mdHr": "currentLine",
|
|
58
56
|
"mdListBullet": "pink",
|
|
59
|
-
|
|
60
57
|
"toolDiffAdded": "green",
|
|
61
58
|
"toolDiffRemoved": "red",
|
|
62
59
|
"toolDiffContext": "comment",
|
|
63
|
-
|
|
64
60
|
"link": "cyan",
|
|
65
|
-
|
|
66
61
|
"syntaxComment": "comment",
|
|
67
62
|
"syntaxKeyword": "pink",
|
|
68
63
|
"syntaxFunction": "green",
|
|
@@ -72,16 +67,13 @@
|
|
|
72
67
|
"syntaxType": "cyan",
|
|
73
68
|
"syntaxOperator": "pink",
|
|
74
69
|
"syntaxPunctuation": "foreground",
|
|
75
|
-
|
|
76
70
|
"thinkingOff": "currentLine",
|
|
77
71
|
"thinkingMinimal": "comment",
|
|
78
72
|
"thinkingLow": "cyan",
|
|
79
73
|
"thinkingMedium": "purple",
|
|
80
74
|
"thinkingHigh": "pink",
|
|
81
75
|
"thinkingXhigh": "orange",
|
|
82
|
-
|
|
83
76
|
"bashMode": "green",
|
|
84
|
-
|
|
85
77
|
"statusLineBg": "background",
|
|
86
78
|
"statusLineSep": "currentLine",
|
|
87
79
|
"statusLineModel": "purple",
|
|
@@ -95,7 +87,8 @@
|
|
|
95
87
|
"statusLineUntracked": "pink",
|
|
96
88
|
"statusLineOutput": "pink",
|
|
97
89
|
"statusLineCost": "pink",
|
|
98
|
-
"statusLineSubagents": "purple"
|
|
90
|
+
"statusLineSubagents": "purple",
|
|
91
|
+
"pythonMode": "yellow"
|
|
99
92
|
},
|
|
100
93
|
"export": {
|
|
101
94
|
"pageBg": "#1e1f29",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"dim": "dim",
|
|
28
28
|
"text": "",
|
|
29
29
|
"thinkingText": "muted",
|
|
30
|
-
|
|
31
30
|
"selectedBg": "#1a1724",
|
|
32
31
|
"userMessageBg": "#0f0d14",
|
|
33
32
|
"userMessageText": "",
|
|
@@ -39,7 +38,6 @@
|
|
|
39
38
|
"toolErrorBg": "#1b0f12",
|
|
40
39
|
"toolTitle": "",
|
|
41
40
|
"toolOutput": "muted",
|
|
42
|
-
|
|
43
41
|
"mdHeading": "corona",
|
|
44
42
|
"mdLink": "astral",
|
|
45
43
|
"mdLinkUrl": "dim",
|
|
@@ -50,11 +48,9 @@
|
|
|
50
48
|
"mdQuoteBorder": "obsidian",
|
|
51
49
|
"mdHr": "obsidian",
|
|
52
50
|
"mdListBullet": "corona",
|
|
53
|
-
|
|
54
51
|
"toolDiffAdded": "success",
|
|
55
52
|
"toolDiffRemoved": "error",
|
|
56
53
|
"toolDiffContext": "muted",
|
|
57
|
-
|
|
58
54
|
"syntaxComment": "dim",
|
|
59
55
|
"syntaxKeyword": "violet",
|
|
60
56
|
"syntaxFunction": "corona",
|
|
@@ -64,16 +60,13 @@
|
|
|
64
60
|
"syntaxType": "success",
|
|
65
61
|
"syntaxOperator": "silver",
|
|
66
62
|
"syntaxPunctuation": "silver",
|
|
67
|
-
|
|
68
63
|
"thinkingOff": "obsidian",
|
|
69
64
|
"thinkingMinimal": "dim",
|
|
70
65
|
"thinkingLow": "astral",
|
|
71
66
|
"thinkingMedium": "violet",
|
|
72
67
|
"thinkingHigh": "ember",
|
|
73
68
|
"thinkingXhigh": "corona",
|
|
74
|
-
|
|
75
69
|
"bashMode": "astral",
|
|
76
|
-
|
|
77
70
|
"statusLineBg": "#0b0b10",
|
|
78
71
|
"statusLineSep": "#2a2635",
|
|
79
72
|
"statusLineModel": "violet",
|
|
@@ -87,7 +80,8 @@
|
|
|
87
80
|
"statusLineUntracked": "astral",
|
|
88
81
|
"statusLineOutput": "silver",
|
|
89
82
|
"statusLineCost": "corona",
|
|
90
|
-
"statusLineSubagents": "corona"
|
|
83
|
+
"statusLineSubagents": "corona",
|
|
84
|
+
"pythonMode": "#f0c040"
|
|
91
85
|
},
|
|
92
86
|
"export": {
|
|
93
87
|
"pageBg": "#08070d",
|
|
@@ -84,11 +84,12 @@
|
|
|
84
84
|
"statusLineUntracked": 39,
|
|
85
85
|
"statusLineOutput": 205,
|
|
86
86
|
"statusLineCost": 205,
|
|
87
|
-
"statusLineSubagents": "accent"
|
|
87
|
+
"statusLineSubagents": "accent",
|
|
88
|
+
"pythonMode": "yellow"
|
|
88
89
|
},
|
|
89
90
|
"export": {
|
|
90
91
|
"pageBg": "#21252b",
|
|
91
92
|
"cardBg": "#282c34",
|
|
92
93
|
"infoBg": "#23272e"
|
|
93
94
|
}
|
|
94
|
-
}
|
|
95
|
+
}
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"dim": "dim",
|
|
27
27
|
"text": "",
|
|
28
28
|
"thinkingText": "muted",
|
|
29
|
-
|
|
30
29
|
"selectedBg": "#1a1e25",
|
|
31
30
|
"userMessageBg": "#14171d",
|
|
32
31
|
"userMessageText": "",
|
|
@@ -38,7 +37,6 @@
|
|
|
38
37
|
"toolErrorBg": "#201416",
|
|
39
38
|
"toolTitle": "",
|
|
40
39
|
"toolOutput": "muted",
|
|
41
|
-
|
|
42
40
|
"mdHeading": "warm",
|
|
43
41
|
"mdLink": "cool",
|
|
44
42
|
"mdLinkUrl": "dim",
|
|
@@ -49,11 +47,9 @@
|
|
|
49
47
|
"mdQuoteBorder": "slate",
|
|
50
48
|
"mdHr": "slate",
|
|
51
49
|
"mdListBullet": "warm",
|
|
52
|
-
|
|
53
50
|
"toolDiffAdded": "success",
|
|
54
51
|
"toolDiffRemoved": "error",
|
|
55
52
|
"toolDiffContext": "muted",
|
|
56
|
-
|
|
57
53
|
"syntaxComment": "dim",
|
|
58
54
|
"syntaxKeyword": "violet",
|
|
59
55
|
"syntaxFunction": "warm",
|
|
@@ -63,16 +59,13 @@
|
|
|
63
59
|
"syntaxType": "success",
|
|
64
60
|
"syntaxOperator": "light",
|
|
65
61
|
"syntaxPunctuation": "light",
|
|
66
|
-
|
|
67
62
|
"thinkingOff": "charcoal",
|
|
68
63
|
"thinkingMinimal": "dim",
|
|
69
64
|
"thinkingLow": "cool",
|
|
70
65
|
"thinkingMedium": "violet",
|
|
71
66
|
"thinkingHigh": "warm",
|
|
72
67
|
"thinkingXhigh": "light",
|
|
73
|
-
|
|
74
68
|
"bashMode": "cool",
|
|
75
|
-
|
|
76
69
|
"statusLineBg": "#0f1115",
|
|
77
70
|
"statusLineSep": "#2a2e36",
|
|
78
71
|
"statusLineModel": "violet",
|
|
@@ -86,7 +79,8 @@
|
|
|
86
79
|
"statusLineUntracked": "cool",
|
|
87
80
|
"statusLineOutput": "light",
|
|
88
81
|
"statusLineCost": "warm",
|
|
89
|
-
"statusLineSubagents": "warm"
|
|
82
|
+
"statusLineSubagents": "warm",
|
|
83
|
+
"pythonMode": "#f0c040"
|
|
90
84
|
},
|
|
91
85
|
"export": {
|
|
92
86
|
"pageBg": "#0f1115",
|
|
@@ -31,7 +31,6 @@
|
|
|
31
31
|
"dim": "mist",
|
|
32
32
|
"text": "",
|
|
33
33
|
"thinkingText": "stone",
|
|
34
|
-
|
|
35
34
|
"selectedBg": "#1E2E26",
|
|
36
35
|
"userMessageBg": "forest",
|
|
37
36
|
"userMessageText": "",
|
|
@@ -43,7 +42,6 @@
|
|
|
43
42
|
"toolErrorBg": "#2B1F1E",
|
|
44
43
|
"toolTitle": "",
|
|
45
44
|
"toolOutput": "stone",
|
|
46
|
-
|
|
47
45
|
"mdHeading": "amber",
|
|
48
46
|
"mdLink": "sage",
|
|
49
47
|
"mdLinkUrl": "mist",
|
|
@@ -54,13 +52,10 @@
|
|
|
54
52
|
"mdQuoteBorder": "shadow",
|
|
55
53
|
"mdHr": "shadow",
|
|
56
54
|
"mdListBullet": "moss",
|
|
57
|
-
|
|
58
55
|
"toolDiffAdded": "fern",
|
|
59
56
|
"toolDiffRemoved": "#C44C3C",
|
|
60
57
|
"toolDiffContext": "stone",
|
|
61
|
-
|
|
62
58
|
"link": "sage",
|
|
63
|
-
|
|
64
59
|
"syntaxComment": "#6B8E70",
|
|
65
60
|
"syntaxKeyword": "pine",
|
|
66
61
|
"syntaxFunction": "clay",
|
|
@@ -70,16 +65,13 @@
|
|
|
70
65
|
"syntaxType": "moss",
|
|
71
66
|
"syntaxOperator": "#9FA99A",
|
|
72
67
|
"syntaxPunctuation": "#9FA99A",
|
|
73
|
-
|
|
74
68
|
"thinkingOff": "shadow",
|
|
75
69
|
"thinkingMinimal": "mist",
|
|
76
70
|
"thinkingLow": "pine",
|
|
77
71
|
"thinkingMedium": "hunter",
|
|
78
72
|
"thinkingHigh": "fern",
|
|
79
73
|
"thinkingXhigh": "moss",
|
|
80
|
-
|
|
81
74
|
"bashMode": "sage",
|
|
82
|
-
|
|
83
75
|
"statusLineBg": "#0A120E",
|
|
84
76
|
"statusLineSep": "#3A4A40",
|
|
85
77
|
"statusLineModel": "clay",
|
|
@@ -93,7 +85,8 @@
|
|
|
93
85
|
"statusLineUntracked": "lichen",
|
|
94
86
|
"statusLineOutput": "walnut",
|
|
95
87
|
"statusLineCost": "earth",
|
|
96
|
-
"statusLineSubagents": "moss"
|
|
88
|
+
"statusLineSubagents": "moss",
|
|
89
|
+
"pythonMode": "amber"
|
|
97
90
|
},
|
|
98
91
|
"export": {
|
|
99
92
|
"pageBg": "#0A120E",
|
|
@@ -39,7 +39,6 @@
|
|
|
39
39
|
"dim": "textDim",
|
|
40
40
|
"text": "",
|
|
41
41
|
"thinkingText": "textMuted",
|
|
42
|
-
|
|
43
42
|
"selectedBg": "#1c2128",
|
|
44
43
|
"userMessageBg": "bgElevated",
|
|
45
44
|
"userMessageText": "",
|
|
@@ -52,7 +51,6 @@
|
|
|
52
51
|
"toolText": "",
|
|
53
52
|
"toolTitle": "",
|
|
54
53
|
"toolOutput": "textMuted",
|
|
55
|
-
|
|
56
54
|
"mdHeading": "blue",
|
|
57
55
|
"mdLink": "blue",
|
|
58
56
|
"mdLinkUrl": "textDim",
|
|
@@ -63,13 +61,10 @@
|
|
|
63
61
|
"mdQuoteBorder": "borderMuted",
|
|
64
62
|
"mdHr": "border",
|
|
65
63
|
"mdListBullet": "yellowLight",
|
|
66
|
-
|
|
67
64
|
"toolDiffAdded": "greenLight",
|
|
68
65
|
"toolDiffRemoved": "redLight",
|
|
69
66
|
"toolDiffContext": "textMuted",
|
|
70
|
-
|
|
71
67
|
"link": "blue",
|
|
72
|
-
|
|
73
68
|
"syntaxComment": "textMuted",
|
|
74
69
|
"syntaxKeyword": "redLight",
|
|
75
70
|
"syntaxFunction": "purple",
|
|
@@ -79,16 +74,13 @@
|
|
|
79
74
|
"syntaxType": "purple",
|
|
80
75
|
"syntaxOperator": "redLight",
|
|
81
76
|
"syntaxPunctuation": "text",
|
|
82
|
-
|
|
83
77
|
"thinkingOff": "borderMuted",
|
|
84
78
|
"thinkingMinimal": "textDim",
|
|
85
79
|
"thinkingLow": "blueMuted",
|
|
86
80
|
"thinkingMedium": "blue",
|
|
87
81
|
"thinkingHigh": "purple",
|
|
88
82
|
"thinkingXhigh": "#eddeff",
|
|
89
|
-
|
|
90
83
|
"bashMode": "blue",
|
|
91
|
-
|
|
92
84
|
"statusLineBg": "#010409",
|
|
93
85
|
"statusLineSep": "#30363d",
|
|
94
86
|
"statusLineModel": "purple",
|
|
@@ -102,7 +94,8 @@
|
|
|
102
94
|
"statusLineUntracked": "blue",
|
|
103
95
|
"statusLineOutput": "purple",
|
|
104
96
|
"statusLineCost": "purple",
|
|
105
|
-
"statusLineSubagents": "yellowLight"
|
|
97
|
+
"statusLineSubagents": "yellowLight",
|
|
98
|
+
"pythonMode": "yellow"
|
|
106
99
|
},
|
|
107
100
|
"export": {
|
|
108
101
|
"pageBg": "#010409",
|
|
@@ -46,7 +46,6 @@
|
|
|
46
46
|
"dim": "bg4",
|
|
47
47
|
"text": "",
|
|
48
48
|
"thinkingText": "gray",
|
|
49
|
-
|
|
50
49
|
"selectedBg": "selectedBg",
|
|
51
50
|
"userMessageBg": "userMsgBg",
|
|
52
51
|
"userMessageText": "",
|
|
@@ -59,7 +58,6 @@
|
|
|
59
58
|
"toolText": "",
|
|
60
59
|
"toolTitle": "",
|
|
61
60
|
"toolOutput": "gray",
|
|
62
|
-
|
|
63
61
|
"mdHeading": "yellow",
|
|
64
62
|
"mdLink": "aqua",
|
|
65
63
|
"mdLinkUrl": "bg4",
|
|
@@ -70,13 +68,10 @@
|
|
|
70
68
|
"mdQuoteBorder": "bg2",
|
|
71
69
|
"mdHr": "bg2",
|
|
72
70
|
"mdListBullet": "orange",
|
|
73
|
-
|
|
74
71
|
"toolDiffAdded": "green",
|
|
75
72
|
"toolDiffRemoved": "red",
|
|
76
73
|
"toolDiffContext": "gray",
|
|
77
|
-
|
|
78
74
|
"link": "aqua",
|
|
79
|
-
|
|
80
75
|
"syntaxComment": "gray",
|
|
81
76
|
"syntaxKeyword": "red",
|
|
82
77
|
"syntaxFunction": "yellow",
|
|
@@ -86,16 +81,13 @@
|
|
|
86
81
|
"syntaxType": "aqua",
|
|
87
82
|
"syntaxOperator": "orange",
|
|
88
83
|
"syntaxPunctuation": "fg2",
|
|
89
|
-
|
|
90
84
|
"thinkingOff": "bg2",
|
|
91
85
|
"thinkingMinimal": "bg4",
|
|
92
86
|
"thinkingLow": "neutralBlue",
|
|
93
87
|
"thinkingMedium": "blue",
|
|
94
88
|
"thinkingHigh": "neutralPurple",
|
|
95
89
|
"thinkingXhigh": "purple",
|
|
96
|
-
|
|
97
90
|
"bashMode": "aqua",
|
|
98
|
-
|
|
99
91
|
"statusLineBg": "#1d2021",
|
|
100
92
|
"statusLineSep": "bg3",
|
|
101
93
|
"statusLineModel": "purple",
|
|
@@ -109,7 +101,8 @@
|
|
|
109
101
|
"statusLineUntracked": "blue",
|
|
110
102
|
"statusLineOutput": "purple",
|
|
111
103
|
"statusLineCost": "purple",
|
|
112
|
-
"statusLineSubagents": "orange"
|
|
104
|
+
"statusLineSubagents": "orange",
|
|
105
|
+
"pythonMode": "yellow"
|
|
113
106
|
},
|
|
114
107
|
"export": {
|
|
115
108
|
"pageBg": "#1d2021",
|
|
@@ -84,11 +84,12 @@
|
|
|
84
84
|
"statusLineUntracked": 39,
|
|
85
85
|
"statusLineOutput": 205,
|
|
86
86
|
"statusLineCost": 205,
|
|
87
|
-
"statusLineSubagents": "accent"
|
|
87
|
+
"statusLineSubagents": "accent",
|
|
88
|
+
"pythonMode": "yellow"
|
|
88
89
|
},
|
|
89
90
|
"export": {
|
|
90
91
|
"pageBg": "#1e1f29",
|
|
91
92
|
"cardBg": "#252630",
|
|
92
93
|
"infoBg": "#202b28"
|
|
93
94
|
}
|
|
94
|
-
}
|
|
95
|
+
}
|
|
@@ -25,7 +25,6 @@
|
|
|
25
25
|
"dim": "dim",
|
|
26
26
|
"text": "",
|
|
27
27
|
"thinkingText": "muted",
|
|
28
|
-
|
|
29
28
|
"selectedBg": "#141720",
|
|
30
29
|
"userMessageBg": "#0d0f15",
|
|
31
30
|
"userMessageText": "",
|
|
@@ -37,7 +36,6 @@
|
|
|
37
36
|
"toolErrorBg": "#1b1114",
|
|
38
37
|
"toolTitle": "",
|
|
39
38
|
"toolOutput": "muted",
|
|
40
|
-
|
|
41
39
|
"mdHeading": "moonlight",
|
|
42
40
|
"mdLink": "ice",
|
|
43
41
|
"mdLinkUrl": "dim",
|
|
@@ -48,11 +46,9 @@
|
|
|
48
46
|
"mdQuoteBorder": "crater",
|
|
49
47
|
"mdHr": "crater",
|
|
50
48
|
"mdListBullet": "glow",
|
|
51
|
-
|
|
52
49
|
"toolDiffAdded": "success",
|
|
53
50
|
"toolDiffRemoved": "error",
|
|
54
51
|
"toolDiffContext": "muted",
|
|
55
|
-
|
|
56
52
|
"syntaxComment": "dim",
|
|
57
53
|
"syntaxKeyword": "ice",
|
|
58
54
|
"syntaxFunction": "moonlight",
|
|
@@ -62,16 +58,13 @@
|
|
|
62
58
|
"syntaxType": "success",
|
|
63
59
|
"syntaxOperator": "moonlight",
|
|
64
60
|
"syntaxPunctuation": "moonlight",
|
|
65
|
-
|
|
66
61
|
"thinkingOff": "night",
|
|
67
62
|
"thinkingMinimal": "dim",
|
|
68
63
|
"thinkingLow": "ice",
|
|
69
64
|
"thinkingMedium": "glow",
|
|
70
65
|
"thinkingHigh": "moonlight",
|
|
71
66
|
"thinkingXhigh": "#eef3f8",
|
|
72
|
-
|
|
73
67
|
"bashMode": "ice",
|
|
74
|
-
|
|
75
68
|
"statusLineBg": "#0a0c11",
|
|
76
69
|
"statusLineSep": "#2b2f3a",
|
|
77
70
|
"statusLineModel": "glow",
|
|
@@ -85,7 +78,8 @@
|
|
|
85
78
|
"statusLineUntracked": "ice",
|
|
86
79
|
"statusLineOutput": "moonlight",
|
|
87
80
|
"statusLineCost": "glow",
|
|
88
|
-
"statusLineSubagents": "moonlight"
|
|
81
|
+
"statusLineSubagents": "moonlight",
|
|
82
|
+
"pythonMode": "#f0c040"
|
|
89
83
|
},
|
|
90
84
|
"export": {
|
|
91
85
|
"pageBg": "#0a0c11",
|
|
@@ -84,11 +84,12 @@
|
|
|
84
84
|
"statusLineUntracked": 39,
|
|
85
85
|
"statusLineOutput": 205,
|
|
86
86
|
"statusLineCost": 205,
|
|
87
|
-
"statusLineSubagents": "accent"
|
|
87
|
+
"statusLineSubagents": "accent",
|
|
88
|
+
"pythonMode": "yellow"
|
|
88
89
|
},
|
|
89
90
|
"export": {
|
|
90
91
|
"pageBg": "#000000",
|
|
91
92
|
"cardBg": "#050f16",
|
|
92
93
|
"infoBg": "#001008"
|
|
93
94
|
}
|
|
94
|
-
}
|
|
95
|
+
}
|
|
@@ -28,7 +28,6 @@
|
|
|
28
28
|
"dim": "gray5",
|
|
29
29
|
"text": "",
|
|
30
30
|
"thinkingText": "gray5",
|
|
31
|
-
|
|
32
31
|
"selectedBg": "gray3",
|
|
33
32
|
"userMessageBg": "gray2",
|
|
34
33
|
"userMessageText": "",
|
|
@@ -41,7 +40,6 @@
|
|
|
41
40
|
"toolText": "",
|
|
42
41
|
"toolTitle": "gray8",
|
|
43
42
|
"toolOutput": "gray6",
|
|
44
|
-
|
|
45
43
|
"mdHeading": "gray9",
|
|
46
44
|
"mdLink": "accent",
|
|
47
45
|
"mdLinkUrl": "gray5",
|
|
@@ -52,13 +50,10 @@
|
|
|
52
50
|
"mdQuoteBorder": "gray4",
|
|
53
51
|
"mdHr": "gray4",
|
|
54
52
|
"mdListBullet": "accent",
|
|
55
|
-
|
|
56
53
|
"toolDiffAdded": "successGreen",
|
|
57
54
|
"toolDiffRemoved": "errorRed",
|
|
58
55
|
"toolDiffContext": "gray6",
|
|
59
|
-
|
|
60
56
|
"link": "accent",
|
|
61
|
-
|
|
62
57
|
"syntaxComment": "gray5",
|
|
63
58
|
"syntaxKeyword": "gray8",
|
|
64
59
|
"syntaxFunction": "gray9",
|
|
@@ -68,16 +63,13 @@
|
|
|
68
63
|
"syntaxType": "gray8",
|
|
69
64
|
"syntaxOperator": "gray7",
|
|
70
65
|
"syntaxPunctuation": "gray6",
|
|
71
|
-
|
|
72
66
|
"thinkingOff": "gray3",
|
|
73
67
|
"thinkingMinimal": "gray4",
|
|
74
68
|
"thinkingLow": "gray5",
|
|
75
69
|
"thinkingMedium": "gray6",
|
|
76
70
|
"thinkingHigh": "gray7",
|
|
77
71
|
"thinkingXhigh": "gray8",
|
|
78
|
-
|
|
79
72
|
"bashMode": "accent",
|
|
80
|
-
|
|
81
73
|
"statusLineBg": "#0d0d0d",
|
|
82
74
|
"statusLineSep": "gray4",
|
|
83
75
|
"statusLineModel": "gray7",
|
|
@@ -91,7 +83,8 @@
|
|
|
91
83
|
"statusLineUntracked": "gray6",
|
|
92
84
|
"statusLineOutput": "gray7",
|
|
93
85
|
"statusLineCost": "gray7",
|
|
94
|
-
"statusLineSubagents": "accent"
|
|
86
|
+
"statusLineSubagents": "accent",
|
|
87
|
+
"pythonMode": "#f0c040"
|
|
95
88
|
},
|
|
96
89
|
"export": {
|
|
97
90
|
"pageBg": "#0d0d0d",
|
|
@@ -32,7 +32,6 @@
|
|
|
32
32
|
"dim": "monokaiComment",
|
|
33
33
|
"text": "",
|
|
34
34
|
"thinkingText": "monokaiComment",
|
|
35
|
-
|
|
36
35
|
"selectedBg": "monokaiDarkGray",
|
|
37
36
|
"userMessageBg": "userMsgBg",
|
|
38
37
|
"userMessageText": "",
|
|
@@ -45,7 +44,6 @@
|
|
|
45
44
|
"toolText": "",
|
|
46
45
|
"toolTitle": "monokaiOrange",
|
|
47
46
|
"toolOutput": "monokaiGray",
|
|
48
|
-
|
|
49
47
|
"mdHeading": "monokaiOrange",
|
|
50
48
|
"mdLink": "monokaiCyan",
|
|
51
49
|
"mdLinkUrl": "monokaiComment",
|
|
@@ -56,13 +54,10 @@
|
|
|
56
54
|
"mdQuoteBorder": "monokaiDarkGray",
|
|
57
55
|
"mdHr": "monokaiDarkGray",
|
|
58
56
|
"mdListBullet": "monokaiOrange",
|
|
59
|
-
|
|
60
57
|
"toolDiffAdded": "monokaiGreen",
|
|
61
58
|
"toolDiffRemoved": "monokaiPink",
|
|
62
59
|
"toolDiffContext": "monokaiGray",
|
|
63
|
-
|
|
64
60
|
"link": "monokaiCyan",
|
|
65
|
-
|
|
66
61
|
"syntaxComment": "monokaiComment",
|
|
67
62
|
"syntaxKeyword": "monokaiPink",
|
|
68
63
|
"syntaxFunction": "monokaiGreen",
|
|
@@ -72,16 +67,13 @@
|
|
|
72
67
|
"syntaxType": "monokaiCyan",
|
|
73
68
|
"syntaxOperator": "monokaiPink",
|
|
74
69
|
"syntaxPunctuation": "monokaiText",
|
|
75
|
-
|
|
76
70
|
"thinkingOff": "monokaiDarkGray",
|
|
77
71
|
"thinkingMinimal": "monokaiComment",
|
|
78
72
|
"thinkingLow": "monokaiCyan",
|
|
79
73
|
"thinkingMedium": "monokaiPurple",
|
|
80
74
|
"thinkingHigh": "monokaiPink",
|
|
81
75
|
"thinkingXhigh": "monokaiOrange",
|
|
82
|
-
|
|
83
76
|
"bashMode": "monokaiGreen",
|
|
84
|
-
|
|
85
77
|
"statusLineBg": "#1a1b17",
|
|
86
78
|
"statusLineSep": "#49483e",
|
|
87
79
|
"statusLineModel": "monokaiPurple",
|
|
@@ -95,7 +87,8 @@
|
|
|
95
87
|
"statusLineUntracked": "monokaiCyan",
|
|
96
88
|
"statusLineOutput": "monokaiPink",
|
|
97
89
|
"statusLineCost": "monokaiPink",
|
|
98
|
-
"statusLineSubagents": "monokaiOrange"
|
|
90
|
+
"statusLineSubagents": "monokaiOrange",
|
|
91
|
+
"pythonMode": "#f0c040"
|
|
99
92
|
},
|
|
100
93
|
"export": {
|
|
101
94
|
"pageBg": "#1a1b17",
|
|
@@ -26,7 +26,6 @@
|
|
|
26
26
|
"dim": "dim",
|
|
27
27
|
"text": "",
|
|
28
28
|
"thinkingText": "muted",
|
|
29
|
-
|
|
30
29
|
"selectedBg": "#1b1427",
|
|
31
30
|
"userMessageBg": "#0f0b18",
|
|
32
31
|
"userMessageText": "",
|
|
@@ -38,7 +37,6 @@
|
|
|
38
37
|
"toolErrorBg": "#1c1115",
|
|
39
38
|
"toolTitle": "",
|
|
40
39
|
"toolOutput": "muted",
|
|
41
|
-
|
|
42
40
|
"mdHeading": "star",
|
|
43
41
|
"mdLink": "teal",
|
|
44
42
|
"mdLinkUrl": "dim",
|
|
@@ -49,11 +47,9 @@
|
|
|
49
47
|
"mdQuoteBorder": "nebula",
|
|
50
48
|
"mdHr": "nebula",
|
|
51
49
|
"mdListBullet": "magenta",
|
|
52
|
-
|
|
53
50
|
"toolDiffAdded": "success",
|
|
54
51
|
"toolDiffRemoved": "error",
|
|
55
52
|
"toolDiffContext": "muted",
|
|
56
|
-
|
|
57
53
|
"syntaxComment": "dim",
|
|
58
54
|
"syntaxKeyword": "violet",
|
|
59
55
|
"syntaxFunction": "magenta",
|
|
@@ -63,16 +59,13 @@
|
|
|
63
59
|
"syntaxType": "success",
|
|
64
60
|
"syntaxOperator": "star",
|
|
65
61
|
"syntaxPunctuation": "star",
|
|
66
|
-
|
|
67
62
|
"thinkingOff": "nebula",
|
|
68
63
|
"thinkingMinimal": "dim",
|
|
69
64
|
"thinkingLow": "teal",
|
|
70
65
|
"thinkingMedium": "violet",
|
|
71
66
|
"thinkingHigh": "magenta",
|
|
72
67
|
"thinkingXhigh": "star",
|
|
73
|
-
|
|
74
68
|
"bashMode": "teal",
|
|
75
|
-
|
|
76
69
|
"statusLineBg": "#0a0a13",
|
|
77
70
|
"statusLineSep": "#2a2336",
|
|
78
71
|
"statusLineModel": "magenta",
|
|
@@ -86,7 +79,8 @@
|
|
|
86
79
|
"statusLineUntracked": "teal",
|
|
87
80
|
"statusLineOutput": "star",
|
|
88
81
|
"statusLineCost": "magenta",
|
|
89
|
-
"statusLineSubagents": "magenta"
|
|
82
|
+
"statusLineSubagents": "magenta",
|
|
83
|
+
"pythonMode": "#f0c040"
|
|
90
84
|
},
|
|
91
85
|
"export": {
|
|
92
86
|
"pageBg": "#0a0912",
|