@oh-my-pi/pi-coding-agent 6.9.0 → 7.0.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.
Files changed (143) hide show
  1. package/CHANGELOG.md +173 -51
  2. package/examples/sdk/04-skills.ts +1 -1
  3. package/package.json +6 -5
  4. package/src/cli/stats-cli.ts +191 -0
  5. package/src/core/agent-session.ts +214 -4
  6. package/src/core/auth-storage.ts +524 -202
  7. package/src/core/bash-executor.ts +1 -1
  8. package/src/core/extensions/index.ts +2 -0
  9. package/src/core/extensions/runner.ts +31 -0
  10. package/src/core/extensions/types.ts +24 -0
  11. package/src/core/messages.ts +48 -0
  12. package/src/core/model-registry.ts +7 -0
  13. package/src/core/python-executor.ts +29 -8
  14. package/src/core/python-gateway-coordinator.ts +55 -1
  15. package/src/core/python-prelude.py +201 -8
  16. package/src/core/session-manager.ts +10 -1
  17. package/src/core/tools/bash.ts +5 -7
  18. package/src/core/tools/find.ts +18 -5
  19. package/src/core/tools/index.ts +1 -1
  20. package/src/core/tools/lsp/index.ts +13 -2
  21. package/src/core/tools/patch/applicator.ts +115 -17
  22. package/src/core/tools/patch/index.ts +1 -1
  23. package/src/core/tools/patch/normalize.ts +185 -10
  24. package/src/core/tools/python.ts +445 -86
  25. package/src/core/tools/read.ts +4 -4
  26. package/src/core/tools/task/executor.ts +2 -6
  27. package/src/core/tools/task/index.ts +30 -12
  28. package/src/core/tools/task/render.ts +163 -30
  29. package/src/core/tools/task/template.ts +37 -0
  30. package/src/core/tools/task/types.ts +6 -2
  31. package/src/core/tools/task/worker.ts +1 -1
  32. package/src/index.ts +2 -0
  33. package/src/main.ts +12 -0
  34. package/src/modes/interactive/components/python-execution.ts +180 -0
  35. package/src/modes/interactive/components/welcome.ts +1 -0
  36. package/src/modes/interactive/controllers/command-controller.ts +395 -0
  37. package/src/modes/interactive/controllers/input-controller.ts +83 -8
  38. package/src/modes/interactive/interactive-mode.ts +16 -1
  39. package/src/modes/interactive/theme/dark.json +2 -9
  40. package/src/modes/interactive/theme/defaults/alabaster.json +2 -8
  41. package/src/modes/interactive/theme/defaults/amethyst.json +2 -9
  42. package/src/modes/interactive/theme/defaults/anthracite.json +2 -9
  43. package/src/modes/interactive/theme/defaults/basalt.json +89 -88
  44. package/src/modes/interactive/theme/defaults/birch.json +2 -8
  45. package/src/modes/interactive/theme/defaults/dark-abyss.json +2 -8
  46. package/src/modes/interactive/theme/defaults/dark-arctic.json +2 -9
  47. package/src/modes/interactive/theme/defaults/dark-aurora.json +3 -2
  48. package/src/modes/interactive/theme/defaults/dark-catppuccin.json +2 -1
  49. package/src/modes/interactive/theme/defaults/dark-cavern.json +2 -8
  50. package/src/modes/interactive/theme/defaults/dark-copper.json +3 -2
  51. package/src/modes/interactive/theme/defaults/dark-cosmos.json +2 -8
  52. package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +2 -9
  53. package/src/modes/interactive/theme/defaults/dark-dracula.json +2 -9
  54. package/src/modes/interactive/theme/defaults/dark-eclipse.json +2 -8
  55. package/src/modes/interactive/theme/defaults/dark-ember.json +3 -2
  56. package/src/modes/interactive/theme/defaults/dark-equinox.json +2 -8
  57. package/src/modes/interactive/theme/defaults/dark-forest.json +2 -9
  58. package/src/modes/interactive/theme/defaults/dark-github.json +2 -9
  59. package/src/modes/interactive/theme/defaults/dark-gruvbox.json +2 -9
  60. package/src/modes/interactive/theme/defaults/dark-lavender.json +3 -2
  61. package/src/modes/interactive/theme/defaults/dark-lunar.json +2 -8
  62. package/src/modes/interactive/theme/defaults/dark-midnight.json +3 -2
  63. package/src/modes/interactive/theme/defaults/dark-monochrome.json +2 -9
  64. package/src/modes/interactive/theme/defaults/dark-monokai.json +2 -9
  65. package/src/modes/interactive/theme/defaults/dark-nebula.json +2 -8
  66. package/src/modes/interactive/theme/defaults/dark-nord.json +2 -9
  67. package/src/modes/interactive/theme/defaults/dark-ocean.json +2 -9
  68. package/src/modes/interactive/theme/defaults/dark-one.json +2 -9
  69. package/src/modes/interactive/theme/defaults/dark-rainforest.json +2 -8
  70. package/src/modes/interactive/theme/defaults/dark-reef.json +2 -8
  71. package/src/modes/interactive/theme/defaults/dark-retro.json +2 -9
  72. package/src/modes/interactive/theme/defaults/dark-rose-pine.json +2 -1
  73. package/src/modes/interactive/theme/defaults/dark-sakura.json +3 -2
  74. package/src/modes/interactive/theme/defaults/dark-slate.json +3 -2
  75. package/src/modes/interactive/theme/defaults/dark-solarized.json +2 -1
  76. package/src/modes/interactive/theme/defaults/dark-solstice.json +2 -8
  77. package/src/modes/interactive/theme/defaults/dark-starfall.json +2 -8
  78. package/src/modes/interactive/theme/defaults/dark-sunset.json +2 -9
  79. package/src/modes/interactive/theme/defaults/dark-swamp.json +2 -8
  80. package/src/modes/interactive/theme/defaults/dark-synthwave.json +2 -1
  81. package/src/modes/interactive/theme/defaults/dark-taiga.json +2 -8
  82. package/src/modes/interactive/theme/defaults/dark-terminal.json +3 -2
  83. package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +2 -9
  84. package/src/modes/interactive/theme/defaults/dark-tundra.json +2 -8
  85. package/src/modes/interactive/theme/defaults/dark-twilight.json +2 -8
  86. package/src/modes/interactive/theme/defaults/dark-volcanic.json +2 -8
  87. package/src/modes/interactive/theme/defaults/graphite.json +2 -9
  88. package/src/modes/interactive/theme/defaults/light-arctic.json +2 -1
  89. package/src/modes/interactive/theme/defaults/light-aurora-day.json +2 -8
  90. package/src/modes/interactive/theme/defaults/light-canyon.json +2 -8
  91. package/src/modes/interactive/theme/defaults/light-catppuccin.json +2 -1
  92. package/src/modes/interactive/theme/defaults/light-cirrus.json +2 -8
  93. package/src/modes/interactive/theme/defaults/light-coral.json +3 -2
  94. package/src/modes/interactive/theme/defaults/light-cyberpunk.json +2 -9
  95. package/src/modes/interactive/theme/defaults/light-dawn.json +2 -8
  96. package/src/modes/interactive/theme/defaults/light-dunes.json +2 -8
  97. package/src/modes/interactive/theme/defaults/light-eucalyptus.json +3 -2
  98. package/src/modes/interactive/theme/defaults/light-forest.json +2 -9
  99. package/src/modes/interactive/theme/defaults/light-frost.json +3 -2
  100. package/src/modes/interactive/theme/defaults/light-github.json +2 -1
  101. package/src/modes/interactive/theme/defaults/light-glacier.json +2 -8
  102. package/src/modes/interactive/theme/defaults/light-gruvbox.json +2 -9
  103. package/src/modes/interactive/theme/defaults/light-haze.json +2 -8
  104. package/src/modes/interactive/theme/defaults/light-honeycomb.json +3 -2
  105. package/src/modes/interactive/theme/defaults/light-lagoon.json +2 -8
  106. package/src/modes/interactive/theme/defaults/light-lavender.json +3 -2
  107. package/src/modes/interactive/theme/defaults/light-meadow.json +2 -8
  108. package/src/modes/interactive/theme/defaults/light-mint.json +3 -2
  109. package/src/modes/interactive/theme/defaults/light-monochrome.json +2 -1
  110. package/src/modes/interactive/theme/defaults/light-ocean.json +2 -9
  111. package/src/modes/interactive/theme/defaults/light-one.json +2 -8
  112. package/src/modes/interactive/theme/defaults/light-opal.json +2 -8
  113. package/src/modes/interactive/theme/defaults/light-orchard.json +2 -8
  114. package/src/modes/interactive/theme/defaults/light-paper.json +3 -2
  115. package/src/modes/interactive/theme/defaults/light-prism.json +2 -8
  116. package/src/modes/interactive/theme/defaults/light-retro.json +2 -9
  117. package/src/modes/interactive/theme/defaults/light-sand.json +3 -2
  118. package/src/modes/interactive/theme/defaults/light-savanna.json +2 -8
  119. package/src/modes/interactive/theme/defaults/light-solarized.json +2 -1
  120. package/src/modes/interactive/theme/defaults/light-soleil.json +2 -8
  121. package/src/modes/interactive/theme/defaults/light-sunset.json +2 -9
  122. package/src/modes/interactive/theme/defaults/light-synthwave.json +2 -9
  123. package/src/modes/interactive/theme/defaults/light-tokyo-night.json +2 -9
  124. package/src/modes/interactive/theme/defaults/light-wetland.json +2 -8
  125. package/src/modes/interactive/theme/defaults/light-zenith.json +2 -8
  126. package/src/modes/interactive/theme/defaults/limestone.json +2 -8
  127. package/src/modes/interactive/theme/defaults/mahogany.json +2 -9
  128. package/src/modes/interactive/theme/defaults/marble.json +2 -8
  129. package/src/modes/interactive/theme/defaults/obsidian.json +89 -88
  130. package/src/modes/interactive/theme/defaults/onyx.json +89 -88
  131. package/src/modes/interactive/theme/defaults/pearl.json +2 -8
  132. package/src/modes/interactive/theme/defaults/porcelain.json +89 -88
  133. package/src/modes/interactive/theme/defaults/quartz.json +2 -8
  134. package/src/modes/interactive/theme/defaults/sandstone.json +2 -8
  135. package/src/modes/interactive/theme/defaults/titanium.json +88 -87
  136. package/src/modes/interactive/theme/light.json +2 -8
  137. package/src/modes/interactive/theme/theme-schema.json +5 -0
  138. package/src/modes/interactive/theme/theme.ts +7 -0
  139. package/src/modes/interactive/types.ts +7 -1
  140. package/src/modes/interactive/utils/ui-helpers.ts +20 -0
  141. package/src/prompts/system/system-prompt.md +88 -78
  142. package/src/prompts/tools/python.md +39 -2
  143. package/src/prompts/tools/task.md +8 -13
@@ -31,7 +31,6 @@
31
31
  "dim": "mutedSage",
32
32
  "text": "",
33
33
  "thinkingText": "warmGray",
34
-
35
34
  "selectedBg": "selectedBg",
36
35
  "userMessageBg": "userMsgBg",
37
36
  "userMessageText": "",
@@ -43,7 +42,6 @@
43
42
  "toolErrorBg": "toolErrorBg",
44
43
  "toolTitle": "",
45
44
  "toolOutput": "barkCharcoal",
46
-
47
45
  "mdHeading": "#8a7050",
48
46
  "mdLink": "#4a7060",
49
47
  "mdLinkUrl": "warmGray",
@@ -54,11 +52,9 @@
54
52
  "mdQuoteBorder": "barkStriation",
55
53
  "mdHr": "barkStriation",
56
54
  "mdListBullet": "lightMoss",
57
-
58
55
  "toolDiffAdded": "lightMoss",
59
56
  "toolDiffRemoved": "#b85a50",
60
57
  "toolDiffContext": "warmGray",
61
-
62
58
  "syntaxComment": "#7a8070",
63
59
  "syntaxKeyword": "#4a7060",
64
60
  "syntaxFunction": "#6a7a50",
@@ -68,16 +64,13 @@
68
64
  "syntaxType": "#5a6a70",
69
65
  "syntaxOperator": "barkCharcoal",
70
66
  "syntaxPunctuation": "barkCharcoal",
71
-
72
67
  "thinkingOff": "barkStriation",
73
68
  "thinkingMinimal": "mutedSage",
74
69
  "thinkingLow": "#6a8a70",
75
70
  "thinkingMedium": "mossSage",
76
71
  "thinkingHigh": "#5a7a60",
77
72
  "thinkingXhigh": "#4a6050",
78
-
79
73
  "bashMode": "lightMoss",
80
-
81
74
  "statusLineBg": "#ebe7dc",
82
75
  "statusLineSep": "barkStriation",
83
76
  "statusLineModel": "#5a6a5a",
@@ -91,7 +84,8 @@
91
84
  "statusLineUntracked": 31,
92
85
  "statusLineOutput": 133,
93
86
  "statusLineCost": 133,
94
- "statusLineSubagents": "mossSage"
87
+ "statusLineSubagents": "mossSage",
88
+ "pythonMode": "#f0c040"
95
89
  },
96
90
  "export": {
97
91
  "pageBg": "#f9f7f1",
@@ -27,7 +27,6 @@
27
27
  "dim": "dimSteel",
28
28
  "text": "",
29
29
  "thinkingText": "mutedSteel",
30
-
31
30
  "selectedBg": "pressureBlue",
32
31
  "userMessageBg": "trenchBlue",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#1A0F12",
40
39
  "toolTitle": "",
41
40
  "toolOutput": "mutedSteel",
42
-
43
41
  "mdHeading": "warningAmber",
44
42
  "mdLink": "abyssCyan",
45
43
  "mdLinkUrl": "dimSteel",
@@ -50,11 +48,9 @@
50
48
  "mdQuoteBorder": "slateBlue",
51
49
  "mdHr": "pressureBlue",
52
50
  "mdListBullet": "abyssCyan",
53
-
54
51
  "toolDiffAdded": "kelpGreen",
55
52
  "toolDiffRemoved": "errorRed",
56
53
  "toolDiffContext": "mutedSteel",
57
-
58
54
  "syntaxComment": "dimSteel",
59
55
  "syntaxKeyword": "abyssCyan",
60
56
  "syntaxFunction": "warningAmber",
@@ -64,16 +60,13 @@
64
60
  "syntaxType": "glowCyan",
65
61
  "syntaxOperator": "mutedSteel",
66
62
  "syntaxPunctuation": "mutedSteel",
67
-
68
63
  "thinkingOff": "pressureBlue",
69
64
  "thinkingMinimal": "dimSteel",
70
65
  "thinkingLow": "slateBlue",
71
66
  "thinkingMedium": "abyssCyan",
72
67
  "thinkingHigh": "glowCyan",
73
68
  "thinkingXhigh": "crystalBlue",
74
-
75
69
  "bashMode": "abyssCyan",
76
-
77
70
  "statusLineBg": "#05070B",
78
71
  "statusLineSep": "slateBlue",
79
72
  "statusLineModel": "glowCyan",
@@ -87,7 +80,8 @@
87
80
  "statusLineUntracked": "glowCyan",
88
81
  "statusLineOutput": "crystalBlue",
89
82
  "statusLineCost": "warningAmber",
90
- "statusLineSubagents": "glowCyan"
83
+ "statusLineSubagents": "glowCyan",
84
+ "pythonMode": "#f0c040"
91
85
  },
92
86
  "export": {
93
87
  "pageBg": "#05070B",
@@ -38,7 +38,6 @@
38
38
  "dim": "polarNight2",
39
39
  "text": "",
40
40
  "thinkingText": "polarNight3",
41
-
42
41
  "selectedBg": "polarNight1",
43
42
  "userMessageBg": "userMsgBg",
44
43
  "userMessageText": "",
@@ -51,7 +50,6 @@
51
50
  "toolText": "",
52
51
  "toolTitle": "",
53
52
  "toolOutput": "polarNight3",
54
-
55
53
  "mdHeading": "frost1",
56
54
  "mdLink": "frost2",
57
55
  "mdLinkUrl": "polarNight3",
@@ -62,13 +60,10 @@
62
60
  "mdQuoteBorder": "polarNight2",
63
61
  "mdHr": "polarNight2",
64
62
  "mdListBullet": "iceBlue",
65
-
66
63
  "toolDiffAdded": "auroraGreen",
67
64
  "toolDiffRemoved": "auroraRed",
68
65
  "toolDiffContext": "polarNight3",
69
-
70
66
  "link": "frost2",
71
-
72
67
  "syntaxComment": "#616e88",
73
68
  "syntaxKeyword": "frost3",
74
69
  "syntaxFunction": "frost1",
@@ -78,16 +73,13 @@
78
73
  "syntaxType": "frost0",
79
74
  "syntaxOperator": "frost2",
80
75
  "syntaxPunctuation": "snowStorm1",
81
-
82
76
  "thinkingOff": "polarNight2",
83
77
  "thinkingMinimal": "polarNight3",
84
78
  "thinkingLow": "frost3",
85
79
  "thinkingMedium": "frost2",
86
80
  "thinkingHigh": "auroraPurple",
87
81
  "thinkingXhigh": "#c8a0d1",
88
-
89
82
  "bashMode": "iceBlue",
90
-
91
83
  "statusLineBg": "#1a1f2b",
92
84
  "statusLineSep": 240,
93
85
  "statusLineModel": "auroraPurple",
@@ -101,7 +93,8 @@
101
93
  "statusLineUntracked": 109,
102
94
  "statusLineOutput": 139,
103
95
  "statusLineCost": 139,
104
- "statusLineSubagents": "iceBlue"
96
+ "statusLineSubagents": "iceBlue",
97
+ "pythonMode": "#f0c040"
105
98
  },
106
99
  "export": {
107
100
  "pageBg": "#1a1f2b",
@@ -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": "#0f0f1a",
91
92
  "cardBg": "#131320",
92
93
  "infoBg": "#0b161a"
93
94
  }
94
- }
95
+ }
@@ -96,7 +96,8 @@
96
96
  "statusLineUntracked": "sky",
97
97
  "statusLineOutput": "maroon",
98
98
  "statusLineCost": "maroon",
99
- "statusLineSubagents": "peach"
99
+ "statusLineSubagents": "peach",
100
+ "pythonMode": "yellow"
100
101
  },
101
102
  "export": {
102
103
  "pageBg": "base",
@@ -27,7 +27,6 @@
27
27
  "dim": "dimGray",
28
28
  "text": "",
29
29
  "thinkingText": "mutedGray",
30
-
31
30
  "selectedBg": "stoneMid",
32
31
  "userMessageBg": "limestoneDark",
33
32
  "userMessageText": "",
@@ -39,7 +38,6 @@
39
38
  "toolErrorBg": "#221416",
40
39
  "toolTitle": "",
41
40
  "toolOutput": "mutedGray",
42
-
43
41
  "mdHeading": "amber",
44
42
  "mdLink": "crystalBlue",
45
43
  "mdLinkUrl": "dimGray",
@@ -50,11 +48,9 @@
50
48
  "mdQuoteBorder": "stalactite",
51
49
  "mdHr": "stoneMid",
52
50
  "mdListBullet": "amber",
53
-
54
51
  "toolDiffAdded": "mineralGreen",
55
52
  "toolDiffRemoved": "errorRed",
56
53
  "toolDiffContext": "mutedGray",
57
-
58
54
  "syntaxComment": "dimGray",
59
55
  "syntaxKeyword": "crystalBlue",
60
56
  "syntaxFunction": "amber",
@@ -64,16 +60,13 @@
64
60
  "syntaxType": "crystalBlue",
65
61
  "syntaxOperator": "mutedGray",
66
62
  "syntaxPunctuation": "mutedGray",
67
-
68
63
  "thinkingOff": "stoneMid",
69
64
  "thinkingMinimal": "dimGray",
70
65
  "thinkingLow": "stalactite",
71
66
  "thinkingMedium": "crystalBlue",
72
67
  "thinkingHigh": "veinBlue",
73
68
  "thinkingXhigh": "amber",
74
-
75
69
  "bashMode": "crystalBlue",
76
-
77
70
  "statusLineBg": "#0B0D10",
78
71
  "statusLineSep": "stalactite",
79
72
  "statusLineModel": "amber",
@@ -87,7 +80,8 @@
87
80
  "statusLineUntracked": "veinBlue",
88
81
  "statusLineOutput": "crystalBlue",
89
82
  "statusLineCost": "amber",
90
- "statusLineSubagents": "crystalBlue"
83
+ "statusLineSubagents": "crystalBlue",
84
+ "pythonMode": "amber"
91
85
  },
92
86
  "export": {
93
87
  "pageBg": "#0B0D10",
@@ -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": "#242933",
91
92
  "cardBg": "#323846",
92
93
  "infoBg": "#2d333b"
93
94
  }
94
- }
95
+ }
@@ -26,7 +26,6 @@
26
26
  "dim": "dim",
27
27
  "text": "",
28
28
  "thinkingText": "muted",
29
-
30
29
  "selectedBg": "#141326",
31
30
  "userMessageBg": "#0a0a12",
32
31
  "userMessageText": "",
@@ -38,7 +37,6 @@
38
37
  "toolErrorBg": "#1a0f14",
39
38
  "toolTitle": "",
40
39
  "toolOutput": "muted",
41
-
42
40
  "mdHeading": "starlight",
43
41
  "mdLink": "starblue",
44
42
  "mdLinkUrl": "dim",
@@ -49,11 +47,9 @@
49
47
  "mdQuoteBorder": "shadow",
50
48
  "mdHr": "shadow",
51
49
  "mdListBullet": "nebula",
52
-
53
50
  "toolDiffAdded": "success",
54
51
  "toolDiffRemoved": "error",
55
52
  "toolDiffContext": "muted",
56
-
57
53
  "syntaxComment": "dim",
58
54
  "syntaxKeyword": "nebula",
59
55
  "syntaxFunction": "starlight",
@@ -63,16 +59,13 @@
63
59
  "syntaxType": "success",
64
60
  "syntaxOperator": "starlight",
65
61
  "syntaxPunctuation": "starlight",
66
-
67
62
  "thinkingOff": "void",
68
63
  "thinkingMinimal": "dim",
69
64
  "thinkingLow": "starblue",
70
65
  "thinkingMedium": "galaxy",
71
66
  "thinkingHigh": "nebula",
72
67
  "thinkingXhigh": "starlight",
73
-
74
68
  "bashMode": "starblue",
75
-
76
69
  "statusLineBg": "#07070d",
77
70
  "statusLineSep": "#26223a",
78
71
  "statusLineModel": "nebula",
@@ -86,7 +79,8 @@
86
79
  "statusLineUntracked": "starblue",
87
80
  "statusLineOutput": "starlight",
88
81
  "statusLineCost": "nebula",
89
- "statusLineSubagents": "nebula"
82
+ "statusLineSubagents": "nebula",
83
+ "pythonMode": "#f0c040"
90
84
  },
91
85
  "export": {
92
86
  "pageBg": "#07070d",
@@ -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",