@oh-my-pi/pi-coding-agent 6.9.0 → 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 (133) hide show
  1. package/CHANGELOG.md +41 -0
  2. package/package.json +6 -5
  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/session-manager.ts +10 -1
  10. package/src/core/tools/bash.ts +5 -7
  11. package/src/core/tools/index.ts +1 -1
  12. package/src/core/tools/patch/applicator.ts +115 -17
  13. package/src/core/tools/patch/index.ts +1 -1
  14. package/src/core/tools/patch/normalize.ts +185 -10
  15. package/src/core/tools/python.ts +444 -86
  16. package/src/core/tools/task/executor.ts +2 -6
  17. package/src/core/tools/task/index.ts +30 -12
  18. package/src/core/tools/task/render.ts +163 -30
  19. package/src/core/tools/task/template.ts +37 -0
  20. package/src/core/tools/task/types.ts +6 -2
  21. package/src/core/tools/task/worker.ts +1 -1
  22. package/src/index.ts +2 -0
  23. package/src/main.ts +12 -0
  24. package/src/modes/interactive/components/python-execution.ts +180 -0
  25. package/src/modes/interactive/components/welcome.ts +1 -0
  26. package/src/modes/interactive/controllers/command-controller.ts +46 -0
  27. package/src/modes/interactive/controllers/input-controller.ts +28 -1
  28. package/src/modes/interactive/interactive-mode.ts +10 -0
  29. package/src/modes/interactive/theme/dark.json +2 -9
  30. package/src/modes/interactive/theme/defaults/alabaster.json +2 -8
  31. package/src/modes/interactive/theme/defaults/amethyst.json +2 -9
  32. package/src/modes/interactive/theme/defaults/anthracite.json +2 -9
  33. package/src/modes/interactive/theme/defaults/basalt.json +89 -88
  34. package/src/modes/interactive/theme/defaults/birch.json +2 -8
  35. package/src/modes/interactive/theme/defaults/dark-abyss.json +2 -8
  36. package/src/modes/interactive/theme/defaults/dark-arctic.json +2 -9
  37. package/src/modes/interactive/theme/defaults/dark-aurora.json +3 -2
  38. package/src/modes/interactive/theme/defaults/dark-catppuccin.json +2 -1
  39. package/src/modes/interactive/theme/defaults/dark-cavern.json +2 -8
  40. package/src/modes/interactive/theme/defaults/dark-copper.json +3 -2
  41. package/src/modes/interactive/theme/defaults/dark-cosmos.json +2 -8
  42. package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +2 -9
  43. package/src/modes/interactive/theme/defaults/dark-dracula.json +2 -9
  44. package/src/modes/interactive/theme/defaults/dark-eclipse.json +2 -8
  45. package/src/modes/interactive/theme/defaults/dark-ember.json +3 -2
  46. package/src/modes/interactive/theme/defaults/dark-equinox.json +2 -8
  47. package/src/modes/interactive/theme/defaults/dark-forest.json +2 -9
  48. package/src/modes/interactive/theme/defaults/dark-github.json +2 -9
  49. package/src/modes/interactive/theme/defaults/dark-gruvbox.json +2 -9
  50. package/src/modes/interactive/theme/defaults/dark-lavender.json +3 -2
  51. package/src/modes/interactive/theme/defaults/dark-lunar.json +2 -8
  52. package/src/modes/interactive/theme/defaults/dark-midnight.json +3 -2
  53. package/src/modes/interactive/theme/defaults/dark-monochrome.json +2 -9
  54. package/src/modes/interactive/theme/defaults/dark-monokai.json +2 -9
  55. package/src/modes/interactive/theme/defaults/dark-nebula.json +2 -8
  56. package/src/modes/interactive/theme/defaults/dark-nord.json +2 -9
  57. package/src/modes/interactive/theme/defaults/dark-ocean.json +2 -9
  58. package/src/modes/interactive/theme/defaults/dark-one.json +2 -9
  59. package/src/modes/interactive/theme/defaults/dark-rainforest.json +2 -8
  60. package/src/modes/interactive/theme/defaults/dark-reef.json +2 -8
  61. package/src/modes/interactive/theme/defaults/dark-retro.json +2 -9
  62. package/src/modes/interactive/theme/defaults/dark-rose-pine.json +2 -1
  63. package/src/modes/interactive/theme/defaults/dark-sakura.json +3 -2
  64. package/src/modes/interactive/theme/defaults/dark-slate.json +3 -2
  65. package/src/modes/interactive/theme/defaults/dark-solarized.json +2 -1
  66. package/src/modes/interactive/theme/defaults/dark-solstice.json +2 -8
  67. package/src/modes/interactive/theme/defaults/dark-starfall.json +2 -8
  68. package/src/modes/interactive/theme/defaults/dark-sunset.json +2 -9
  69. package/src/modes/interactive/theme/defaults/dark-swamp.json +2 -8
  70. package/src/modes/interactive/theme/defaults/dark-synthwave.json +2 -1
  71. package/src/modes/interactive/theme/defaults/dark-taiga.json +2 -8
  72. package/src/modes/interactive/theme/defaults/dark-terminal.json +3 -2
  73. package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +2 -9
  74. package/src/modes/interactive/theme/defaults/dark-tundra.json +2 -8
  75. package/src/modes/interactive/theme/defaults/dark-twilight.json +2 -8
  76. package/src/modes/interactive/theme/defaults/dark-volcanic.json +2 -8
  77. package/src/modes/interactive/theme/defaults/graphite.json +2 -9
  78. package/src/modes/interactive/theme/defaults/light-arctic.json +2 -1
  79. package/src/modes/interactive/theme/defaults/light-aurora-day.json +2 -8
  80. package/src/modes/interactive/theme/defaults/light-canyon.json +2 -8
  81. package/src/modes/interactive/theme/defaults/light-catppuccin.json +2 -1
  82. package/src/modes/interactive/theme/defaults/light-cirrus.json +2 -8
  83. package/src/modes/interactive/theme/defaults/light-coral.json +3 -2
  84. package/src/modes/interactive/theme/defaults/light-cyberpunk.json +2 -9
  85. package/src/modes/interactive/theme/defaults/light-dawn.json +2 -8
  86. package/src/modes/interactive/theme/defaults/light-dunes.json +2 -8
  87. package/src/modes/interactive/theme/defaults/light-eucalyptus.json +3 -2
  88. package/src/modes/interactive/theme/defaults/light-forest.json +2 -9
  89. package/src/modes/interactive/theme/defaults/light-frost.json +3 -2
  90. package/src/modes/interactive/theme/defaults/light-github.json +2 -1
  91. package/src/modes/interactive/theme/defaults/light-glacier.json +2 -8
  92. package/src/modes/interactive/theme/defaults/light-gruvbox.json +2 -9
  93. package/src/modes/interactive/theme/defaults/light-haze.json +2 -8
  94. package/src/modes/interactive/theme/defaults/light-honeycomb.json +3 -2
  95. package/src/modes/interactive/theme/defaults/light-lagoon.json +2 -8
  96. package/src/modes/interactive/theme/defaults/light-lavender.json +3 -2
  97. package/src/modes/interactive/theme/defaults/light-meadow.json +2 -8
  98. package/src/modes/interactive/theme/defaults/light-mint.json +3 -2
  99. package/src/modes/interactive/theme/defaults/light-monochrome.json +2 -1
  100. package/src/modes/interactive/theme/defaults/light-ocean.json +2 -9
  101. package/src/modes/interactive/theme/defaults/light-one.json +2 -8
  102. package/src/modes/interactive/theme/defaults/light-opal.json +2 -8
  103. package/src/modes/interactive/theme/defaults/light-orchard.json +2 -8
  104. package/src/modes/interactive/theme/defaults/light-paper.json +3 -2
  105. package/src/modes/interactive/theme/defaults/light-prism.json +2 -8
  106. package/src/modes/interactive/theme/defaults/light-retro.json +2 -9
  107. package/src/modes/interactive/theme/defaults/light-sand.json +3 -2
  108. package/src/modes/interactive/theme/defaults/light-savanna.json +2 -8
  109. package/src/modes/interactive/theme/defaults/light-solarized.json +2 -1
  110. package/src/modes/interactive/theme/defaults/light-soleil.json +2 -8
  111. package/src/modes/interactive/theme/defaults/light-sunset.json +2 -9
  112. package/src/modes/interactive/theme/defaults/light-synthwave.json +2 -9
  113. package/src/modes/interactive/theme/defaults/light-tokyo-night.json +2 -9
  114. package/src/modes/interactive/theme/defaults/light-wetland.json +2 -8
  115. package/src/modes/interactive/theme/defaults/light-zenith.json +2 -8
  116. package/src/modes/interactive/theme/defaults/limestone.json +2 -8
  117. package/src/modes/interactive/theme/defaults/mahogany.json +2 -9
  118. package/src/modes/interactive/theme/defaults/marble.json +2 -8
  119. package/src/modes/interactive/theme/defaults/obsidian.json +89 -88
  120. package/src/modes/interactive/theme/defaults/onyx.json +89 -88
  121. package/src/modes/interactive/theme/defaults/pearl.json +2 -8
  122. package/src/modes/interactive/theme/defaults/porcelain.json +89 -88
  123. package/src/modes/interactive/theme/defaults/quartz.json +2 -8
  124. package/src/modes/interactive/theme/defaults/sandstone.json +2 -8
  125. package/src/modes/interactive/theme/defaults/titanium.json +88 -87
  126. package/src/modes/interactive/theme/light.json +2 -8
  127. package/src/modes/interactive/theme/theme-schema.json +5 -0
  128. package/src/modes/interactive/theme/theme.ts +7 -0
  129. package/src/modes/interactive/types.ts +5 -0
  130. package/src/modes/interactive/utils/ui-helpers.ts +20 -0
  131. package/src/prompts/system/system-prompt.md +8 -0
  132. package/src/prompts/tools/python.md +40 -2
  133. package/src/prompts/tools/task.md +8 -13
@@ -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",
@@ -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",