@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
@@ -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",
@@ -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
+ }