@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.
Files changed (155) hide show
  1. package/CHANGELOG.md +51 -0
  2. package/package.json +6 -6
  3. package/src/cli/stats-cli.ts +191 -0
  4. package/src/core/agent-session.ts +103 -1
  5. package/src/core/extensions/index.ts +2 -0
  6. package/src/core/extensions/runner.ts +31 -0
  7. package/src/core/extensions/types.ts +24 -0
  8. package/src/core/messages.ts +48 -0
  9. package/src/core/sdk.ts +0 -2
  10. package/src/core/session-manager.ts +10 -1
  11. package/src/core/settings-manager.ts +0 -105
  12. package/src/core/tools/bash.ts +5 -7
  13. package/src/core/tools/index.ts +1 -5
  14. package/src/core/tools/patch/applicator.ts +115 -17
  15. package/src/core/tools/patch/index.ts +1 -1
  16. package/src/core/tools/patch/normalize.ts +185 -10
  17. package/src/core/tools/python.ts +444 -86
  18. package/src/core/tools/task/executor.ts +2 -6
  19. package/src/core/tools/task/index.ts +30 -12
  20. package/src/core/tools/task/render.ts +163 -30
  21. package/src/core/tools/task/template.ts +37 -0
  22. package/src/core/tools/task/types.ts +6 -2
  23. package/src/core/tools/task/worker.ts +1 -1
  24. package/src/index.ts +2 -2
  25. package/src/main.ts +12 -0
  26. package/src/modes/interactive/components/python-execution.ts +180 -0
  27. package/src/modes/interactive/components/settings-defs.ts +0 -70
  28. package/src/modes/interactive/components/settings-selector.ts +0 -1
  29. package/src/modes/interactive/components/welcome.ts +1 -0
  30. package/src/modes/interactive/controllers/command-controller.ts +46 -0
  31. package/src/modes/interactive/controllers/event-controller.ts +0 -11
  32. package/src/modes/interactive/controllers/input-controller.ts +28 -1
  33. package/src/modes/interactive/controllers/selector-controller.ts +0 -9
  34. package/src/modes/interactive/interactive-mode.ts +10 -58
  35. package/src/modes/interactive/theme/dark.json +2 -9
  36. package/src/modes/interactive/theme/defaults/alabaster.json +2 -8
  37. package/src/modes/interactive/theme/defaults/amethyst.json +2 -9
  38. package/src/modes/interactive/theme/defaults/anthracite.json +2 -9
  39. package/src/modes/interactive/theme/defaults/basalt.json +89 -88
  40. package/src/modes/interactive/theme/defaults/birch.json +2 -8
  41. package/src/modes/interactive/theme/defaults/dark-abyss.json +2 -8
  42. package/src/modes/interactive/theme/defaults/dark-arctic.json +2 -9
  43. package/src/modes/interactive/theme/defaults/dark-aurora.json +3 -2
  44. package/src/modes/interactive/theme/defaults/dark-catppuccin.json +2 -1
  45. package/src/modes/interactive/theme/defaults/dark-cavern.json +2 -8
  46. package/src/modes/interactive/theme/defaults/dark-copper.json +3 -2
  47. package/src/modes/interactive/theme/defaults/dark-cosmos.json +2 -8
  48. package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +2 -9
  49. package/src/modes/interactive/theme/defaults/dark-dracula.json +2 -9
  50. package/src/modes/interactive/theme/defaults/dark-eclipse.json +2 -8
  51. package/src/modes/interactive/theme/defaults/dark-ember.json +3 -2
  52. package/src/modes/interactive/theme/defaults/dark-equinox.json +2 -8
  53. package/src/modes/interactive/theme/defaults/dark-forest.json +2 -9
  54. package/src/modes/interactive/theme/defaults/dark-github.json +2 -9
  55. package/src/modes/interactive/theme/defaults/dark-gruvbox.json +2 -9
  56. package/src/modes/interactive/theme/defaults/dark-lavender.json +3 -2
  57. package/src/modes/interactive/theme/defaults/dark-lunar.json +2 -8
  58. package/src/modes/interactive/theme/defaults/dark-midnight.json +3 -2
  59. package/src/modes/interactive/theme/defaults/dark-monochrome.json +2 -9
  60. package/src/modes/interactive/theme/defaults/dark-monokai.json +2 -9
  61. package/src/modes/interactive/theme/defaults/dark-nebula.json +2 -8
  62. package/src/modes/interactive/theme/defaults/dark-nord.json +2 -9
  63. package/src/modes/interactive/theme/defaults/dark-ocean.json +2 -9
  64. package/src/modes/interactive/theme/defaults/dark-one.json +2 -9
  65. package/src/modes/interactive/theme/defaults/dark-rainforest.json +2 -8
  66. package/src/modes/interactive/theme/defaults/dark-reef.json +2 -8
  67. package/src/modes/interactive/theme/defaults/dark-retro.json +2 -9
  68. package/src/modes/interactive/theme/defaults/dark-rose-pine.json +2 -1
  69. package/src/modes/interactive/theme/defaults/dark-sakura.json +3 -2
  70. package/src/modes/interactive/theme/defaults/dark-slate.json +3 -2
  71. package/src/modes/interactive/theme/defaults/dark-solarized.json +2 -1
  72. package/src/modes/interactive/theme/defaults/dark-solstice.json +2 -8
  73. package/src/modes/interactive/theme/defaults/dark-starfall.json +2 -8
  74. package/src/modes/interactive/theme/defaults/dark-sunset.json +2 -9
  75. package/src/modes/interactive/theme/defaults/dark-swamp.json +2 -8
  76. package/src/modes/interactive/theme/defaults/dark-synthwave.json +2 -1
  77. package/src/modes/interactive/theme/defaults/dark-taiga.json +2 -8
  78. package/src/modes/interactive/theme/defaults/dark-terminal.json +3 -2
  79. package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +2 -9
  80. package/src/modes/interactive/theme/defaults/dark-tundra.json +2 -8
  81. package/src/modes/interactive/theme/defaults/dark-twilight.json +2 -8
  82. package/src/modes/interactive/theme/defaults/dark-volcanic.json +2 -8
  83. package/src/modes/interactive/theme/defaults/graphite.json +2 -9
  84. package/src/modes/interactive/theme/defaults/light-arctic.json +2 -1
  85. package/src/modes/interactive/theme/defaults/light-aurora-day.json +2 -8
  86. package/src/modes/interactive/theme/defaults/light-canyon.json +2 -8
  87. package/src/modes/interactive/theme/defaults/light-catppuccin.json +2 -1
  88. package/src/modes/interactive/theme/defaults/light-cirrus.json +2 -8
  89. package/src/modes/interactive/theme/defaults/light-coral.json +3 -2
  90. package/src/modes/interactive/theme/defaults/light-cyberpunk.json +2 -9
  91. package/src/modes/interactive/theme/defaults/light-dawn.json +2 -8
  92. package/src/modes/interactive/theme/defaults/light-dunes.json +2 -8
  93. package/src/modes/interactive/theme/defaults/light-eucalyptus.json +3 -2
  94. package/src/modes/interactive/theme/defaults/light-forest.json +2 -9
  95. package/src/modes/interactive/theme/defaults/light-frost.json +3 -2
  96. package/src/modes/interactive/theme/defaults/light-github.json +2 -1
  97. package/src/modes/interactive/theme/defaults/light-glacier.json +2 -8
  98. package/src/modes/interactive/theme/defaults/light-gruvbox.json +2 -9
  99. package/src/modes/interactive/theme/defaults/light-haze.json +2 -8
  100. package/src/modes/interactive/theme/defaults/light-honeycomb.json +3 -2
  101. package/src/modes/interactive/theme/defaults/light-lagoon.json +2 -8
  102. package/src/modes/interactive/theme/defaults/light-lavender.json +3 -2
  103. package/src/modes/interactive/theme/defaults/light-meadow.json +2 -8
  104. package/src/modes/interactive/theme/defaults/light-mint.json +3 -2
  105. package/src/modes/interactive/theme/defaults/light-monochrome.json +2 -1
  106. package/src/modes/interactive/theme/defaults/light-ocean.json +2 -9
  107. package/src/modes/interactive/theme/defaults/light-one.json +2 -8
  108. package/src/modes/interactive/theme/defaults/light-opal.json +2 -8
  109. package/src/modes/interactive/theme/defaults/light-orchard.json +2 -8
  110. package/src/modes/interactive/theme/defaults/light-paper.json +3 -2
  111. package/src/modes/interactive/theme/defaults/light-prism.json +2 -8
  112. package/src/modes/interactive/theme/defaults/light-retro.json +2 -9
  113. package/src/modes/interactive/theme/defaults/light-sand.json +3 -2
  114. package/src/modes/interactive/theme/defaults/light-savanna.json +2 -8
  115. package/src/modes/interactive/theme/defaults/light-solarized.json +2 -1
  116. package/src/modes/interactive/theme/defaults/light-soleil.json +2 -8
  117. package/src/modes/interactive/theme/defaults/light-sunset.json +2 -9
  118. package/src/modes/interactive/theme/defaults/light-synthwave.json +2 -9
  119. package/src/modes/interactive/theme/defaults/light-tokyo-night.json +2 -9
  120. package/src/modes/interactive/theme/defaults/light-wetland.json +2 -8
  121. package/src/modes/interactive/theme/defaults/light-zenith.json +2 -8
  122. package/src/modes/interactive/theme/defaults/limestone.json +2 -8
  123. package/src/modes/interactive/theme/defaults/mahogany.json +2 -9
  124. package/src/modes/interactive/theme/defaults/marble.json +2 -8
  125. package/src/modes/interactive/theme/defaults/obsidian.json +89 -88
  126. package/src/modes/interactive/theme/defaults/onyx.json +89 -88
  127. package/src/modes/interactive/theme/defaults/pearl.json +2 -8
  128. package/src/modes/interactive/theme/defaults/porcelain.json +89 -88
  129. package/src/modes/interactive/theme/defaults/quartz.json +2 -8
  130. package/src/modes/interactive/theme/defaults/sandstone.json +2 -8
  131. package/src/modes/interactive/theme/defaults/titanium.json +88 -87
  132. package/src/modes/interactive/theme/light.json +2 -8
  133. package/src/modes/interactive/theme/theme-schema.json +5 -0
  134. package/src/modes/interactive/theme/theme.ts +7 -0
  135. package/src/modes/interactive/types.ts +5 -15
  136. package/src/modes/interactive/utils/ui-helpers.ts +20 -0
  137. package/src/prompts/system/system-prompt.md +8 -0
  138. package/src/prompts/tools/python.md +40 -2
  139. package/src/prompts/tools/task.md +8 -13
  140. package/src/core/custom-commands/bundled/wt/index.ts +0 -435
  141. package/src/core/tools/git.ts +0 -213
  142. package/src/core/voice-controller.ts +0 -135
  143. package/src/core/voice-supervisor.ts +0 -976
  144. package/src/core/voice.ts +0 -314
  145. package/src/lib/worktree/collapse.ts +0 -180
  146. package/src/lib/worktree/constants.ts +0 -14
  147. package/src/lib/worktree/errors.ts +0 -23
  148. package/src/lib/worktree/git.ts +0 -60
  149. package/src/lib/worktree/index.ts +0 -15
  150. package/src/lib/worktree/operations.ts +0 -216
  151. package/src/lib/worktree/session.ts +0 -114
  152. package/src/lib/worktree/stats.ts +0 -67
  153. package/src/modes/interactive/utils/voice-manager.ts +0 -96
  154. package/src/prompts/tools/git.md +0 -9
  155. package/src/prompts/voice-summary.md +0 -12
@@ -31,7 +31,6 @@
31
31
  "dim": "nord3",
32
32
  "text": "",
33
33
  "thinkingText": "nord3",
34
-
35
34
  "selectedBg": "nord1",
36
35
  "userMessageBg": "nord1",
37
36
  "userMessageText": "",
@@ -44,7 +43,6 @@
44
43
  "toolText": "",
45
44
  "toolTitle": "nord8",
46
45
  "toolOutput": "nord3",
47
-
48
46
  "mdHeading": "nord8",
49
47
  "mdLink": "nord8",
50
48
  "mdLinkUrl": "nord3",
@@ -55,13 +53,10 @@
55
53
  "mdQuoteBorder": "nord3",
56
54
  "mdHr": "nord2",
57
55
  "mdListBullet": "nord9",
58
-
59
56
  "toolDiffAdded": "nord14",
60
57
  "toolDiffRemoved": "nord11",
61
58
  "toolDiffContext": "nord3",
62
-
63
59
  "link": "nord8",
64
-
65
60
  "syntaxComment": "nord3",
66
61
  "syntaxKeyword": "nord9",
67
62
  "syntaxFunction": "nord8",
@@ -71,16 +66,13 @@
71
66
  "syntaxType": "nord7",
72
67
  "syntaxOperator": "nord9",
73
68
  "syntaxPunctuation": "nord6",
74
-
75
69
  "thinkingOff": "nord2",
76
70
  "thinkingMinimal": "nord3",
77
71
  "thinkingLow": "nord10",
78
72
  "thinkingMedium": "nord9",
79
73
  "thinkingHigh": "nord15",
80
74
  "thinkingXhigh": "nord7",
81
-
82
75
  "bashMode": "nord8",
83
-
84
76
  "statusLineBg": "nord0",
85
77
  "statusLineSep": "nord3",
86
78
  "statusLineModel": "nord15",
@@ -94,7 +86,8 @@
94
86
  "statusLineUntracked": "nord8",
95
87
  "statusLineOutput": "nord12",
96
88
  "statusLineCost": "nord12",
97
- "statusLineSubagents": "nord8"
89
+ "statusLineSubagents": "nord8",
90
+ "pythonMode": "#f0c040"
98
91
  },
99
92
  "export": {
100
93
  "pageBg": "nord0",
@@ -35,7 +35,6 @@
35
35
  "dim": "dimTeal",
36
36
  "text": "",
37
37
  "thinkingText": "mutedTeal",
38
-
39
38
  "selectedBg": "midWater",
40
39
  "userMessageBg": "userMsgBg",
41
40
  "userMessageText": "",
@@ -48,7 +47,6 @@
48
47
  "toolText": "",
49
48
  "toolTitle": "",
50
49
  "toolOutput": "mutedTeal",
51
-
52
50
  "mdHeading": "coral",
53
51
  "mdLink": "aquamarine",
54
52
  "mdLinkUrl": "dimTeal",
@@ -59,13 +57,10 @@
59
57
  "mdQuoteBorder": "darkBorder",
60
58
  "mdHr": "darkBorder",
61
59
  "mdListBullet": "coral",
62
-
63
60
  "toolDiffAdded": "seafoamGreen",
64
61
  "toolDiffRemoved": "brightCoral",
65
62
  "toolDiffContext": "mutedTeal",
66
-
67
63
  "link": "aquamarine",
68
-
69
64
  "syntaxComment": "#5A7B99",
70
65
  "syntaxKeyword": "#6FFFE9",
71
66
  "syntaxFunction": "#FFD166",
@@ -75,16 +70,13 @@
75
70
  "syntaxType": "#5BC0BE",
76
71
  "syntaxOperator": "#778DA9",
77
72
  "syntaxPunctuation": "#778DA9",
78
-
79
73
  "thinkingOff": "darkBorder",
80
74
  "thinkingMinimal": "dimTeal",
81
75
  "thinkingLow": "oceanBlue",
82
76
  "thinkingMedium": "teal",
83
77
  "thinkingHigh": "aquamarine",
84
78
  "thinkingXhigh": "#D4A5FF",
85
-
86
79
  "bashMode": "aquamarine",
87
-
88
80
  "statusLineBg": "abyssBlack",
89
81
  "statusLineSep": 236,
90
82
  "statusLineModel": "coral",
@@ -98,7 +90,8 @@
98
90
  "statusLineUntracked": 87,
99
91
  "statusLineOutput": 204,
100
92
  "statusLineCost": 204,
101
- "statusLineSubagents": "coral"
93
+ "statusLineSubagents": "coral",
94
+ "pythonMode": "#f0c040"
102
95
  },
103
96
  "export": {
104
97
  "pageBg": "abyssBlack",
@@ -35,7 +35,6 @@
35
35
  "text": "",
36
36
  "thinkingText": "mono2",
37
37
  "selectedBg": "selectedBg",
38
-
39
38
  "userMessageBg": "userMsgBg",
40
39
  "userMessageText": "",
41
40
  "customMessageBg": "customMsgBg",
@@ -47,7 +46,6 @@
47
46
  "toolText": "",
48
47
  "toolTitle": "",
49
48
  "toolOutput": "mono2",
50
-
51
49
  "mdHeading": "hue62",
52
50
  "mdLink": "hue2",
53
51
  "mdLinkUrl": "mono3",
@@ -58,13 +56,10 @@
58
56
  "mdQuoteBorder": "mono3",
59
57
  "mdHr": "mono3",
60
58
  "mdListBullet": "hue62",
61
-
62
59
  "toolDiffAdded": "hue4",
63
60
  "toolDiffRemoved": "hue5",
64
61
  "toolDiffContext": "mono2",
65
-
66
62
  "link": "hue2",
67
-
68
63
  "syntaxComment": "mono3",
69
64
  "syntaxKeyword": "hue3",
70
65
  "syntaxFunction": "hue2",
@@ -74,16 +69,13 @@
74
69
  "syntaxType": "hue62",
75
70
  "syntaxOperator": "hue1",
76
71
  "syntaxPunctuation": "mono1",
77
-
78
72
  "thinkingOff": "mono3",
79
73
  "thinkingMinimal": "mono2",
80
74
  "thinkingLow": "hue2",
81
75
  "thinkingMedium": "syntaxAccent",
82
76
  "thinkingHigh": "hue3",
83
77
  "thinkingXhigh": "#e5b9ff",
84
-
85
78
  "bashMode": "hue1",
86
-
87
79
  "statusLineBg": "#1e2227",
88
80
  "statusLineSep": "#3e4451",
89
81
  "statusLineModel": "hue3",
@@ -97,7 +89,8 @@
97
89
  "statusLineUntracked": "hue2",
98
90
  "statusLineOutput": "hue3",
99
91
  "statusLineCost": "hue5",
100
- "statusLineSubagents": "hue62"
92
+ "statusLineSubagents": "hue62",
93
+ "pythonMode": "#f0c040"
101
94
  },
102
95
  "export": {
103
96
  "pageBg": "#1e2227",
@@ -27,7 +27,6 @@
27
27
  "dim": "dimLeaf",
28
28
  "text": "",
29
29
  "thinkingText": "mutedLeaf",
30
-
31
30
  "selectedBg": "jungleGreen",
32
31
  "userMessageBg": "deepGreen",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#231515",
40
39
  "toolTitle": "",
41
40
  "toolOutput": "mutedLeaf",
42
-
43
41
  "mdHeading": "fireflyGold",
44
42
  "mdLink": "orchidPurple",
45
43
  "mdLinkUrl": "dimLeaf",
@@ -50,11 +48,9 @@
50
48
  "mdQuoteBorder": "barkBorder",
51
49
  "mdHr": "vineGreen",
52
50
  "mdListBullet": "treefrogOrange",
53
-
54
51
  "toolDiffAdded": "successGreen",
55
52
  "toolDiffRemoved": "errorRed",
56
53
  "toolDiffContext": "mutedLeaf",
57
-
58
54
  "syntaxComment": "dimLeaf",
59
55
  "syntaxKeyword": "orchidPurple",
60
56
  "syntaxFunction": "treefrogOrange",
@@ -64,16 +60,13 @@
64
60
  "syntaxType": "orchidPurple",
65
61
  "syntaxOperator": "mutedLeaf",
66
62
  "syntaxPunctuation": "mutedLeaf",
67
-
68
63
  "thinkingOff": "vineGreen",
69
64
  "thinkingMinimal": "dimLeaf",
70
65
  "thinkingLow": "barkBorder",
71
66
  "thinkingMedium": "orchidPurple",
72
67
  "thinkingHigh": "treefrogOrange",
73
68
  "thinkingXhigh": "fireflyGold",
74
-
75
69
  "bashMode": "orchidPurple",
76
-
77
70
  "statusLineBg": "#080C0A",
78
71
  "statusLineSep": "barkBorder",
79
72
  "statusLineModel": "orchidPurple",
@@ -87,7 +80,8 @@
87
80
  "statusLineUntracked": "orchidPurple",
88
81
  "statusLineOutput": "treefrogOrange",
89
82
  "statusLineCost": "fireflyGold",
90
- "statusLineSubagents": "orchidPurple"
83
+ "statusLineSubagents": "orchidPurple",
84
+ "pythonMode": "#f0c040"
91
85
  },
92
86
  "export": {
93
87
  "pageBg": "#080C0A",
@@ -27,7 +27,6 @@
27
27
  "dim": "dimSea",
28
28
  "text": "",
29
29
  "thinkingText": "mutedSea",
30
-
31
30
  "selectedBg": "reefBlue",
32
31
  "userMessageBg": "abyssBlue",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#231418",
40
39
  "toolTitle": "",
41
40
  "toolOutput": "mutedSea",
42
-
43
41
  "mdHeading": "fishYellow",
44
42
  "mdLink": "coralPink",
45
43
  "mdLinkUrl": "dimSea",
@@ -50,11 +48,9 @@
50
48
  "mdQuoteBorder": "borderBlue",
51
49
  "mdHr": "reefBlue",
52
50
  "mdListBullet": "coralPink",
53
-
54
51
  "toolDiffAdded": "kelpGreen",
55
52
  "toolDiffRemoved": "errorRed",
56
53
  "toolDiffContext": "mutedSea",
57
-
58
54
  "syntaxComment": "dimSea",
59
55
  "syntaxKeyword": "anemonePurple",
60
56
  "syntaxFunction": "coralPink",
@@ -64,16 +60,13 @@
64
60
  "syntaxType": "anemonePurple",
65
61
  "syntaxOperator": "mutedSea",
66
62
  "syntaxPunctuation": "mutedSea",
67
-
68
63
  "thinkingOff": "reefBlue",
69
64
  "thinkingMinimal": "dimSea",
70
65
  "thinkingLow": "borderBlue",
71
66
  "thinkingMedium": "anemonePurple",
72
67
  "thinkingHigh": "coralPink",
73
68
  "thinkingXhigh": "fishYellow",
74
-
75
69
  "bashMode": "coralPink",
76
-
77
70
  "statusLineBg": "#070B10",
78
71
  "statusLineSep": "borderBlue",
79
72
  "statusLineModel": "anemonePurple",
@@ -87,7 +80,8 @@
87
80
  "statusLineUntracked": "anemonePurple",
88
81
  "statusLineOutput": "coralPink",
89
82
  "statusLineCost": "fishYellow",
90
- "statusLineSubagents": "anemonePurple"
83
+ "statusLineSubagents": "anemonePurple",
84
+ "pythonMode": "#f0c040"
91
85
  },
92
86
  "export": {
93
87
  "pageBg": "#070B10",
@@ -27,7 +27,6 @@
27
27
  "dim": "phosphorVeryDim",
28
28
  "text": "",
29
29
  "thinkingText": "phosphorDim",
30
-
31
30
  "selectedBg": "#1f1a10",
32
31
  "userMessageBg": "crtDarkBg",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#1a0f0f",
40
39
  "toolTitle": "phosphorBright",
41
40
  "toolOutput": "phosphorDim",
42
-
43
41
  "mdHeading": "phosphorBright",
44
42
  "mdLink": "glowBlue",
45
43
  "mdLinkUrl": "phosphorVeryDim",
@@ -50,13 +48,10 @@
50
48
  "mdQuoteBorder": "phosphorVeryDim",
51
49
  "mdHr": "phosphorVeryDim",
52
50
  "mdListBullet": "phosphorBright",
53
-
54
51
  "toolDiffAdded": "successGreen",
55
52
  "toolDiffRemoved": "errorRed",
56
53
  "toolDiffContext": "phosphorDim",
57
-
58
54
  "link": "glowBlue",
59
-
60
55
  "syntaxComment": "phosphorVeryDim",
61
56
  "syntaxKeyword": "phosphorBright",
62
57
  "syntaxFunction": "phosphor",
@@ -66,16 +61,13 @@
66
61
  "syntaxType": "phosphor",
67
62
  "syntaxOperator": "phosphorDim",
68
63
  "syntaxPunctuation": "phosphorDim",
69
-
70
64
  "thinkingOff": "phosphorVeryDim",
71
65
  "thinkingMinimal": "phosphorVeryDim",
72
66
  "thinkingLow": "phosphorDim",
73
67
  "thinkingMedium": "phosphor",
74
68
  "thinkingHigh": "phosphorBright",
75
69
  "thinkingXhigh": "crtGlow",
76
-
77
70
  "bashMode": "glowBlue",
78
-
79
71
  "statusLineBg": "crtBlack",
80
72
  "statusLineSep": 238,
81
73
  "statusLineModel": "phosphorBright",
@@ -89,7 +81,8 @@
89
81
  "statusLineUntracked": 39,
90
82
  "statusLineOutput": 209,
91
83
  "statusLineCost": 209,
92
- "statusLineSubagents": "phosphorBright"
84
+ "statusLineSubagents": "phosphorBright",
85
+ "pythonMode": "#f0c040"
93
86
  },
94
87
  "export": {
95
88
  "pageBg": "crtBlack",
@@ -85,7 +85,8 @@
85
85
  "statusLineUntracked": "love",
86
86
  "statusLineOutput": "pine",
87
87
  "statusLineCost": "rose",
88
- "statusLineSubagents": "iris"
88
+ "statusLineSubagents": "iris",
89
+ "pythonMode": "gold"
89
90
  },
90
91
  "export": {
91
92
  "pageBg": "base",
@@ -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": "#1e181a",
91
92
  "cardBg": "#262022",
92
93
  "infoBg": "#222622"
93
94
  }
94
- }
95
+ }
@@ -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": "#2e3440",
91
92
  "cardBg": "#434c5e",
92
93
  "infoBg": "#374050"
93
94
  }
94
- }
95
+ }
@@ -86,7 +86,8 @@
86
86
  "statusLineUntracked": "blue",
87
87
  "statusLineOutput": "magenta",
88
88
  "statusLineCost": "orange",
89
- "statusLineSubagents": "blue"
89
+ "statusLineSubagents": "blue",
90
+ "pythonMode": "yellow"
90
91
  },
91
92
  "export": {
92
93
  "pageBg": "base03",
@@ -26,7 +26,6 @@
26
26
  "dim": "dim",
27
27
  "text": "",
28
28
  "thinkingText": "muted",
29
-
30
29
  "selectedBg": "#10182b",
31
30
  "userMessageBg": "#0c1222",
32
31
  "userMessageText": "",
@@ -38,7 +37,6 @@
38
37
  "toolErrorBg": "#1a1016",
39
38
  "toolTitle": "",
40
39
  "toolOutput": "muted",
41
-
42
40
  "mdHeading": "ice",
43
41
  "mdLink": "frost",
44
42
  "mdLinkUrl": "dim",
@@ -49,11 +47,9 @@
49
47
  "mdQuoteBorder": "deepBlue",
50
48
  "mdHr": "deepBlue",
51
49
  "mdListBullet": "aurora",
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": "ice",
@@ -63,16 +59,13 @@
63
59
  "syntaxType": "success",
64
60
  "syntaxOperator": "ice",
65
61
  "syntaxPunctuation": "ice",
66
-
67
62
  "thinkingOff": "midnight",
68
63
  "thinkingMinimal": "dim",
69
64
  "thinkingLow": "frost",
70
65
  "thinkingMedium": "aurora",
71
66
  "thinkingHigh": "ice",
72
67
  "thinkingXhigh": "#e4edf9",
73
-
74
68
  "bashMode": "aurora",
75
-
76
69
  "statusLineBg": "#0a101f",
77
70
  "statusLineSep": "#2a334a",
78
71
  "statusLineModel": "violet",
@@ -86,7 +79,8 @@
86
79
  "statusLineUntracked": "frost",
87
80
  "statusLineOutput": "ice",
88
81
  "statusLineCost": "aurora",
89
- "statusLineSubagents": "aurora"
82
+ "statusLineSubagents": "aurora",
83
+ "pythonMode": "#f0c040"
90
84
  },
91
85
  "export": {
92
86
  "pageBg": "#0a0f1c",
@@ -27,7 +27,6 @@
27
27
  "dim": "dim",
28
28
  "text": "",
29
29
  "thinkingText": "muted",
30
-
31
30
  "selectedBg": "#1a1e2a",
32
31
  "userMessageBg": "#0f1218",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#1c1115",
40
39
  "toolTitle": "",
41
40
  "toolOutput": "muted",
42
-
43
41
  "mdHeading": "spark",
44
42
  "mdLink": "blue",
45
43
  "mdLinkUrl": "dim",
@@ -50,11 +48,9 @@
50
48
  "mdQuoteBorder": "sky",
51
49
  "mdHr": "sky",
52
50
  "mdListBullet": "gold",
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": "gold",
@@ -64,16 +60,13 @@
64
60
  "syntaxType": "success",
65
61
  "syntaxOperator": "spark",
66
62
  "syntaxPunctuation": "spark",
67
-
68
63
  "thinkingOff": "night",
69
64
  "thinkingMinimal": "dim",
70
65
  "thinkingLow": "blue",
71
66
  "thinkingMedium": "violet",
72
67
  "thinkingHigh": "ember",
73
68
  "thinkingXhigh": "gold",
74
-
75
69
  "bashMode": "blue",
76
-
77
70
  "statusLineBg": "#0a0c10",
78
71
  "statusLineSep": "#2a2f3a",
79
72
  "statusLineModel": "gold",
@@ -87,7 +80,8 @@
87
80
  "statusLineUntracked": "blue",
88
81
  "statusLineOutput": "spark",
89
82
  "statusLineCost": "gold",
90
- "statusLineSubagents": "gold"
83
+ "statusLineSubagents": "gold",
84
+ "pythonMode": "gold"
91
85
  },
92
86
  "export": {
93
87
  "pageBg": "#0a0c10",
@@ -33,7 +33,6 @@
33
33
  "dim": "dimViolet",
34
34
  "text": "",
35
35
  "thinkingText": "duskGray",
36
-
37
36
  "selectedBg": "#2d2436",
38
37
  "userMessageBg": "#251a1f",
39
38
  "userMessageText": "",
@@ -46,7 +45,6 @@
46
45
  "toolText": "",
47
46
  "toolTitle": "",
48
47
  "toolOutput": "duskGray",
49
-
50
48
  "mdHeading": "golden",
51
49
  "mdLink": "violet",
52
50
  "mdLinkUrl": "dimViolet",
@@ -57,13 +55,10 @@
57
55
  "mdQuoteBorder": "twilightGray",
58
56
  "mdHr": "twilightGray",
59
57
  "mdListBullet": "accentGlow",
60
-
61
58
  "toolDiffAdded": "#89d281",
62
59
  "toolDiffRemoved": "emberRed",
63
60
  "toolDiffContext": "duskGray",
64
-
65
61
  "link": "violet",
66
-
67
62
  "syntaxComment": "#7a6f85",
68
63
  "syntaxKeyword": "violet",
69
64
  "syntaxFunction": "golden",
@@ -73,16 +68,13 @@
73
68
  "syntaxType": "magenta",
74
69
  "syntaxOperator": "#c9bdd0",
75
70
  "syntaxPunctuation": "#b3a8ba",
76
-
77
71
  "thinkingOff": "twilightGray",
78
72
  "thinkingMinimal": "dimViolet",
79
73
  "thinkingLow": "deepPurple",
80
74
  "thinkingMedium": "violet",
81
75
  "thinkingHigh": "magenta",
82
76
  "thinkingXhigh": "softPink",
83
-
84
77
  "bashMode": "horizonGlow",
85
-
86
78
  "statusLineBg": "#0f0a14",
87
79
  "statusLineSep": 237,
88
80
  "statusLineModel": "softPink",
@@ -96,7 +88,8 @@
96
88
  "statusLineUntracked": 213,
97
89
  "statusLineOutput": 205,
98
90
  "statusLineCost": 205,
99
- "statusLineSubagents": "golden"
91
+ "statusLineSubagents": "golden",
92
+ "pythonMode": "amber"
100
93
  },
101
94
  "export": {
102
95
  "pageBg": "#120d18",
@@ -26,7 +26,6 @@
26
26
  "dim": "dimMoss",
27
27
  "text": "",
28
28
  "thinkingText": "mossLight",
29
-
30
29
  "selectedBg": "peatGreen",
31
30
  "userMessageBg": "bogGreen",
32
31
  "userMessageText": "",
@@ -38,7 +37,6 @@
38
37
  "toolErrorBg": "#221313",
39
38
  "toolTitle": "",
40
39
  "toolOutput": "mossLight",
41
-
42
40
  "mdHeading": "fireflyGold",
43
41
  "mdLink": "swampCyan",
44
42
  "mdLinkUrl": "dimMoss",
@@ -49,11 +47,9 @@
49
47
  "mdQuoteBorder": "mossGray",
50
48
  "mdHr": "peatGreen",
51
49
  "mdListBullet": "fireflyGold",
52
-
53
50
  "toolDiffAdded": "algaeGreen",
54
51
  "toolDiffRemoved": "errorRed",
55
52
  "toolDiffContext": "mossLight",
56
-
57
53
  "syntaxComment": "dimMoss",
58
54
  "syntaxKeyword": "swampCyan",
59
55
  "syntaxFunction": "fireflyGold",
@@ -63,16 +59,13 @@
63
59
  "syntaxType": "swampCyan",
64
60
  "syntaxOperator": "mossLight",
65
61
  "syntaxPunctuation": "mossLight",
66
-
67
62
  "thinkingOff": "peatGreen",
68
63
  "thinkingMinimal": "dimMoss",
69
64
  "thinkingLow": "mossGray",
70
65
  "thinkingMedium": "swampCyan",
71
66
  "thinkingHigh": "fireflyGold",
72
67
  "thinkingXhigh": "algaeGreen",
73
-
74
68
  "bashMode": "swampCyan",
75
-
76
69
  "statusLineBg": "#080D0C",
77
70
  "statusLineSep": "mossGray",
78
71
  "statusLineModel": "fireflyGold",
@@ -86,7 +79,8 @@
86
79
  "statusLineUntracked": "mossLight",
87
80
  "statusLineOutput": "swampCyan",
88
81
  "statusLineCost": "fireflyGold",
89
- "statusLineSubagents": "fireflyGold"
82
+ "statusLineSubagents": "fireflyGold",
83
+ "pythonMode": "#f0c040"
90
84
  },
91
85
  "export": {
92
86
  "pageBg": "#080D0C",
@@ -92,7 +92,8 @@
92
92
  "statusLineUntracked": "hotPink",
93
93
  "statusLineOutput": "neonMagenta",
94
94
  "statusLineCost": "vaporPink",
95
- "statusLineSubagents": "hotPink"
95
+ "statusLineSubagents": "hotPink",
96
+ "pythonMode": "gold"
96
97
  },
97
98
  "export": {
98
99
  "pageBg": "#0c0c0c",
@@ -27,7 +27,6 @@
27
27
  "dim": "dimWolf",
28
28
  "text": "",
29
29
  "thinkingText": "wolfGray",
30
-
31
30
  "selectedBg": "shadowPine",
32
31
  "userMessageBg": "deepPine",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#201313",
40
39
  "toolTitle": "",
41
40
  "toolOutput": "wolfGray",
42
-
43
41
  "mdHeading": "snowWhite",
44
42
  "mdLink": "frostBlue",
45
43
  "mdLinkUrl": "dimWolf",
@@ -50,11 +48,9 @@
50
48
  "mdQuoteBorder": "spruce",
51
49
  "mdHr": "shadowPine",
52
50
  "mdListBullet": "auroraGreen",
53
-
54
51
  "toolDiffAdded": "lichenGreen",
55
52
  "toolDiffRemoved": "errorRed",
56
53
  "toolDiffContext": "wolfGray",
57
-
58
54
  "syntaxComment": "dimWolf",
59
55
  "syntaxKeyword": "frostBlue",
60
56
  "syntaxFunction": "emberAmber",
@@ -64,16 +60,13 @@
64
60
  "syntaxType": "frostBlue",
65
61
  "syntaxOperator": "wolfGray",
66
62
  "syntaxPunctuation": "wolfGray",
67
-
68
63
  "thinkingOff": "shadowPine",
69
64
  "thinkingMinimal": "dimWolf",
70
65
  "thinkingLow": "spruce",
71
66
  "thinkingMedium": "frostBlue",
72
67
  "thinkingHigh": "auroraGreen",
73
68
  "thinkingXhigh": "snowWhite",
74
-
75
69
  "bashMode": "auroraGreen",
76
-
77
70
  "statusLineBg": "#080C0A",
78
71
  "statusLineSep": "spruce",
79
72
  "statusLineModel": "snowWhite",
@@ -87,7 +80,8 @@
87
80
  "statusLineUntracked": "snowWhite",
88
81
  "statusLineOutput": "frostBlue",
89
82
  "statusLineCost": "emberAmber",
90
- "statusLineSubagents": "auroraGreen"
83
+ "statusLineSubagents": "auroraGreen",
84
+ "pythonMode": "#f0c040"
91
85
  },
92
86
  "export": {
93
87
  "pageBg": "#080C0A",