@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
@@ -1,90 +1,91 @@
1
1
  {
2
- "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
- "name": "basalt",
4
- "vars": {
5
- "charcoal": "#171613",
6
- "coolingLava": "#3a3530",
7
- "warmGray": "#4a433d",
8
- "pumice": "#e4e0d8",
9
- "dustyWhite": "#cac5bd",
10
- "ironOxide": "#c45a3a",
11
- "rustOrange": "#d97651",
12
- "mineralGreen": "#6a9a6a",
13
- "lichtenGreen": "#8bb88b",
14
- "obsidian": "#0f0d0b",
15
- "emberRed": "#b84a2c",
16
- "ashGray": "#5a524b"
17
- },
18
- "colors": {
19
- "accent": "#c45a3a",
20
- "border": "#3a3530",
21
- "borderAccent": "#4a433d",
22
- "borderMuted": "#2a2520",
23
- "success": "#6a9a6a",
24
- "error": "#b84a2c",
25
- "warning": "#d97651",
26
- "muted": "#5a524b",
27
- "dim": "#4a433d",
28
- "text": "",
29
- "thinkingText": "#cac5bd",
30
- "selectedBg": "#2a2520",
31
- "userMessageBg": "#3a3530",
32
- "userMessageText": "",
33
- "customMessageBg": "#4a433d",
34
- "customMessageText": "",
35
- "customMessageLabel": "#c45a3a",
36
- "toolPendingBg": "#2a2520",
37
- "toolSuccessBg": "#1f2520",
38
- "toolErrorBg": "#2a1f1d",
39
- "toolTitle": "",
40
- "toolOutput": "#cac5bd",
41
- "mdHeading": "#c45a3a",
42
- "mdLink": "#8bb88b",
43
- "mdLinkUrl": "#6a9a6a",
44
- "mdCode": "#d97651",
45
- "mdCodeBlock": "#cac5bd",
46
- "mdCodeBlockBorder": "#3a3530",
47
- "mdQuote": "#cac5bd",
48
- "mdQuoteBorder": "#4a433d",
49
- "mdHr": "#3a3530",
50
- "mdListBullet": "#c45a3a",
51
- "toolDiffAdded": "#6a9a6a",
52
- "toolDiffRemoved": "#b84a2c",
53
- "toolDiffContext": "#5a524b",
54
- "syntaxComment": "#5a524b",
55
- "syntaxKeyword": "#c45a3a",
56
- "syntaxFunction": "#8bb88b",
57
- "syntaxVariable": "#e4e0d8",
58
- "syntaxString": "#6a9a6a",
59
- "syntaxNumber": "#d97651",
60
- "syntaxType": "#c45a3a",
61
- "syntaxOperator": "#cac5bd",
62
- "syntaxPunctuation": "#cac5bd",
63
- "thinkingOff": "#3a3530",
64
- "thinkingMinimal": "#4a433d",
65
- "thinkingLow": "#5a524b",
66
- "thinkingMedium": "#6a605a",
67
- "thinkingHigh": "#7a706a",
68
- "thinkingXhigh": "#8a807a",
69
- "bashMode": "#c45a3a",
70
- "statusLineBg": "#0f0d0b",
71
- "statusLineSep": "#3a3530",
72
- "statusLineModel": "#c45a3a",
73
- "statusLinePath": "#cac5bd",
74
- "statusLineGitClean": "#6a9a6a",
75
- "statusLineGitDirty": "#d97651",
76
- "statusLineContext": "#8bb88b",
77
- "statusLineSpend": "#d97651",
78
- "statusLineStaged": "#6a9a6a",
79
- "statusLineDirty": "#d97651",
80
- "statusLineUntracked": "#5a524b",
81
- "statusLineOutput": "#cac5bd",
82
- "statusLineCost": "#d97651",
83
- "statusLineSubagents": "#c45a3a"
84
- },
85
- "export": {
86
- "pageBg": "#171613",
87
- "cardBg": "#1f1c19",
88
- "infoBg": "#2a2520"
89
- }
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "basalt",
4
+ "vars": {
5
+ "charcoal": "#171613",
6
+ "coolingLava": "#3a3530",
7
+ "warmGray": "#4a433d",
8
+ "pumice": "#e4e0d8",
9
+ "dustyWhite": "#cac5bd",
10
+ "ironOxide": "#c45a3a",
11
+ "rustOrange": "#d97651",
12
+ "mineralGreen": "#6a9a6a",
13
+ "lichtenGreen": "#8bb88b",
14
+ "obsidian": "#0f0d0b",
15
+ "emberRed": "#b84a2c",
16
+ "ashGray": "#5a524b"
17
+ },
18
+ "colors": {
19
+ "accent": "#c45a3a",
20
+ "border": "#3a3530",
21
+ "borderAccent": "#4a433d",
22
+ "borderMuted": "#2a2520",
23
+ "success": "#6a9a6a",
24
+ "error": "#b84a2c",
25
+ "warning": "#d97651",
26
+ "muted": "#5a524b",
27
+ "dim": "#4a433d",
28
+ "text": "",
29
+ "thinkingText": "#cac5bd",
30
+ "selectedBg": "#2a2520",
31
+ "userMessageBg": "#3a3530",
32
+ "userMessageText": "",
33
+ "customMessageBg": "#4a433d",
34
+ "customMessageText": "",
35
+ "customMessageLabel": "#c45a3a",
36
+ "toolPendingBg": "#2a2520",
37
+ "toolSuccessBg": "#1f2520",
38
+ "toolErrorBg": "#2a1f1d",
39
+ "toolTitle": "",
40
+ "toolOutput": "#cac5bd",
41
+ "mdHeading": "#c45a3a",
42
+ "mdLink": "#8bb88b",
43
+ "mdLinkUrl": "#6a9a6a",
44
+ "mdCode": "#d97651",
45
+ "mdCodeBlock": "#cac5bd",
46
+ "mdCodeBlockBorder": "#3a3530",
47
+ "mdQuote": "#cac5bd",
48
+ "mdQuoteBorder": "#4a433d",
49
+ "mdHr": "#3a3530",
50
+ "mdListBullet": "#c45a3a",
51
+ "toolDiffAdded": "#6a9a6a",
52
+ "toolDiffRemoved": "#b84a2c",
53
+ "toolDiffContext": "#5a524b",
54
+ "syntaxComment": "#5a524b",
55
+ "syntaxKeyword": "#c45a3a",
56
+ "syntaxFunction": "#8bb88b",
57
+ "syntaxVariable": "#e4e0d8",
58
+ "syntaxString": "#6a9a6a",
59
+ "syntaxNumber": "#d97651",
60
+ "syntaxType": "#c45a3a",
61
+ "syntaxOperator": "#cac5bd",
62
+ "syntaxPunctuation": "#cac5bd",
63
+ "thinkingOff": "#3a3530",
64
+ "thinkingMinimal": "#4a433d",
65
+ "thinkingLow": "#5a524b",
66
+ "thinkingMedium": "#6a605a",
67
+ "thinkingHigh": "#7a706a",
68
+ "thinkingXhigh": "#8a807a",
69
+ "bashMode": "#c45a3a",
70
+ "statusLineBg": "#0f0d0b",
71
+ "statusLineSep": "#3a3530",
72
+ "statusLineModel": "#c45a3a",
73
+ "statusLinePath": "#cac5bd",
74
+ "statusLineGitClean": "#6a9a6a",
75
+ "statusLineGitDirty": "#d97651",
76
+ "statusLineContext": "#8bb88b",
77
+ "statusLineSpend": "#d97651",
78
+ "statusLineStaged": "#6a9a6a",
79
+ "statusLineDirty": "#d97651",
80
+ "statusLineUntracked": "#5a524b",
81
+ "statusLineOutput": "#cac5bd",
82
+ "statusLineCost": "#d97651",
83
+ "statusLineSubagents": "#c45a3a",
84
+ "pythonMode": "#f0c040"
85
+ },
86
+ "export": {
87
+ "pageBg": "#171613",
88
+ "cardBg": "#1f1c19",
89
+ "infoBg": "#2a2520"
90
+ }
90
91
  }
@@ -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",