@oh-my-pi/pi-coding-agent 3.13.1337 → 3.15.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 (149) hide show
  1. package/CHANGELOG.md +88 -0
  2. package/docs/theme.md +38 -5
  3. package/examples/sdk/11-sessions.ts +2 -2
  4. package/package.json +7 -4
  5. package/src/cli/file-processor.ts +51 -2
  6. package/src/cli/plugin-cli.ts +25 -19
  7. package/src/cli/update-cli.ts +4 -3
  8. package/src/core/agent-session.ts +31 -4
  9. package/src/core/compaction/branch-summarization.ts +4 -32
  10. package/src/core/compaction/compaction.ts +6 -84
  11. package/src/core/compaction/utils.ts +2 -3
  12. package/src/core/custom-tools/types.ts +2 -0
  13. package/src/core/export-html/index.ts +1 -1
  14. package/src/core/hooks/index.ts +1 -1
  15. package/src/core/hooks/tool-wrapper.ts +0 -1
  16. package/src/core/hooks/types.ts +2 -2
  17. package/src/core/plugins/doctor.ts +9 -1
  18. package/src/core/sdk.ts +2 -1
  19. package/src/core/session-manager.ts +552 -41
  20. package/src/core/settings-manager.ts +174 -0
  21. package/src/core/system-prompt.ts +9 -14
  22. package/src/core/title-generator.ts +2 -8
  23. package/src/core/tools/ask.ts +19 -37
  24. package/src/core/tools/bash.ts +2 -37
  25. package/src/core/tools/edit.ts +2 -9
  26. package/src/core/tools/exa/render.ts +52 -48
  27. package/src/core/tools/find.ts +10 -8
  28. package/src/core/tools/grep.ts +45 -17
  29. package/src/core/tools/ls.ts +22 -2
  30. package/src/core/tools/lsp/clients/biome-client.ts +207 -0
  31. package/src/core/tools/lsp/clients/index.ts +49 -0
  32. package/src/core/tools/lsp/clients/lsp-linter-client.ts +98 -0
  33. package/src/core/tools/lsp/config.ts +3 -0
  34. package/src/core/tools/lsp/index.ts +107 -55
  35. package/src/core/tools/lsp/render.ts +192 -79
  36. package/src/core/tools/lsp/types.ts +27 -0
  37. package/src/core/tools/lsp/utils.ts +62 -22
  38. package/src/core/tools/notebook.ts +9 -1
  39. package/src/core/tools/output.ts +37 -14
  40. package/src/core/tools/read.ts +349 -34
  41. package/src/core/tools/renderers.ts +290 -89
  42. package/src/core/tools/review.ts +12 -5
  43. package/src/core/tools/task/agents.ts +5 -5
  44. package/src/core/tools/task/commands.ts +3 -3
  45. package/src/core/tools/task/executor.ts +33 -1
  46. package/src/core/tools/task/index.ts +93 -6
  47. package/src/core/tools/task/render.ts +147 -66
  48. package/src/core/tools/task/types.ts +14 -9
  49. package/src/core/tools/web-fetch.ts +242 -103
  50. package/src/core/tools/web-search/index.ts +64 -20
  51. package/src/core/tools/web-search/providers/exa.ts +68 -172
  52. package/src/core/tools/web-search/render.ts +264 -74
  53. package/src/core/tools/write.ts +2 -8
  54. package/src/main.ts +10 -6
  55. package/src/modes/cleanup.ts +23 -0
  56. package/src/modes/index.ts +9 -4
  57. package/src/modes/interactive/components/bash-execution.ts +6 -3
  58. package/src/modes/interactive/components/branch-summary-message.ts +1 -1
  59. package/src/modes/interactive/components/compaction-summary-message.ts +1 -1
  60. package/src/modes/interactive/components/dynamic-border.ts +1 -1
  61. package/src/modes/interactive/components/extensions/extension-dashboard.ts +4 -5
  62. package/src/modes/interactive/components/extensions/extension-list.ts +18 -16
  63. package/src/modes/interactive/components/extensions/inspector-panel.ts +8 -8
  64. package/src/modes/interactive/components/hook-message.ts +2 -2
  65. package/src/modes/interactive/components/hook-selector.ts +1 -1
  66. package/src/modes/interactive/components/model-selector.ts +22 -9
  67. package/src/modes/interactive/components/oauth-selector.ts +20 -4
  68. package/src/modes/interactive/components/plugin-settings.ts +4 -2
  69. package/src/modes/interactive/components/session-selector.ts +9 -6
  70. package/src/modes/interactive/components/settings-defs.ts +285 -1
  71. package/src/modes/interactive/components/settings-selector.ts +176 -3
  72. package/src/modes/interactive/components/status-line/index.ts +4 -0
  73. package/src/modes/interactive/components/status-line/presets.ts +94 -0
  74. package/src/modes/interactive/components/status-line/segments.ts +350 -0
  75. package/src/modes/interactive/components/status-line/separators.ts +55 -0
  76. package/src/modes/interactive/components/status-line/types.ts +81 -0
  77. package/src/modes/interactive/components/status-line-segment-editor.ts +357 -0
  78. package/src/modes/interactive/components/status-line.ts +169 -233
  79. package/src/modes/interactive/components/tool-execution.ts +446 -211
  80. package/src/modes/interactive/components/tree-selector.ts +17 -6
  81. package/src/modes/interactive/components/ttsr-notification.ts +4 -4
  82. package/src/modes/interactive/components/welcome.ts +27 -19
  83. package/src/modes/interactive/interactive-mode.ts +98 -13
  84. package/src/modes/interactive/theme/dark.json +3 -2
  85. package/src/modes/interactive/theme/defaults/dark-arctic.json +111 -0
  86. package/src/modes/interactive/theme/defaults/dark-catppuccin.json +106 -0
  87. package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +109 -0
  88. package/src/modes/interactive/theme/defaults/dark-dracula.json +105 -0
  89. package/src/modes/interactive/theme/defaults/dark-forest.json +103 -0
  90. package/src/modes/interactive/theme/defaults/dark-github.json +112 -0
  91. package/src/modes/interactive/theme/defaults/dark-gruvbox.json +119 -0
  92. package/src/modes/interactive/theme/defaults/dark-monochrome.json +101 -0
  93. package/src/modes/interactive/theme/defaults/dark-monokai.json +105 -0
  94. package/src/modes/interactive/theme/defaults/dark-nord.json +104 -0
  95. package/src/modes/interactive/theme/defaults/dark-ocean.json +108 -0
  96. package/src/modes/interactive/theme/defaults/dark-one.json +107 -0
  97. package/src/modes/interactive/theme/defaults/dark-retro.json +99 -0
  98. package/src/modes/interactive/theme/defaults/dark-rose-pine.json +95 -0
  99. package/src/modes/interactive/theme/defaults/dark-solarized.json +96 -0
  100. package/src/modes/interactive/theme/defaults/dark-sunset.json +106 -0
  101. package/src/modes/interactive/theme/defaults/dark-synthwave.json +102 -0
  102. package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +108 -0
  103. package/src/modes/interactive/theme/defaults/index.ts +67 -0
  104. package/src/modes/interactive/theme/defaults/light-arctic.json +106 -0
  105. package/src/modes/interactive/theme/defaults/light-catppuccin.json +105 -0
  106. package/src/modes/interactive/theme/defaults/light-cyberpunk.json +103 -0
  107. package/src/modes/interactive/theme/defaults/light-forest.json +107 -0
  108. package/src/modes/interactive/theme/defaults/light-github.json +114 -0
  109. package/src/modes/interactive/theme/defaults/light-gruvbox.json +115 -0
  110. package/src/modes/interactive/theme/defaults/light-monochrome.json +100 -0
  111. package/src/modes/interactive/theme/defaults/light-ocean.json +106 -0
  112. package/src/modes/interactive/theme/defaults/light-one.json +105 -0
  113. package/src/modes/interactive/theme/defaults/light-retro.json +105 -0
  114. package/src/modes/interactive/theme/defaults/light-solarized.json +101 -0
  115. package/src/modes/interactive/theme/defaults/light-sunset.json +106 -0
  116. package/src/modes/interactive/theme/defaults/light-synthwave.json +105 -0
  117. package/src/modes/interactive/theme/defaults/light-tokyo-night.json +118 -0
  118. package/src/modes/interactive/theme/light.json +3 -2
  119. package/src/modes/interactive/theme/theme-schema.json +120 -4
  120. package/src/modes/interactive/theme/theme.ts +1228 -14
  121. package/src/prompts/branch-summary-preamble.md +3 -0
  122. package/src/prompts/branch-summary.md +28 -0
  123. package/src/prompts/compaction-summary.md +34 -0
  124. package/src/prompts/compaction-turn-prefix.md +16 -0
  125. package/src/prompts/compaction-update-summary.md +41 -0
  126. package/src/prompts/init.md +30 -0
  127. package/src/{core/tools/task/bundled-agents → prompts}/reviewer.md +6 -0
  128. package/src/prompts/summarization-system.md +3 -0
  129. package/src/prompts/system-prompt.md +27 -0
  130. package/src/{core/tools/task/bundled-agents → prompts}/task.md +2 -0
  131. package/src/prompts/title-system.md +8 -0
  132. package/src/prompts/tools/ask.md +24 -0
  133. package/src/prompts/tools/bash.md +23 -0
  134. package/src/prompts/tools/edit.md +9 -0
  135. package/src/prompts/tools/find.md +6 -0
  136. package/src/prompts/tools/grep.md +12 -0
  137. package/src/prompts/tools/lsp.md +14 -0
  138. package/src/prompts/tools/output.md +23 -0
  139. package/src/prompts/tools/read.md +25 -0
  140. package/src/prompts/tools/web-fetch.md +8 -0
  141. package/src/prompts/tools/web-search.md +10 -0
  142. package/src/prompts/tools/write.md +10 -0
  143. package/src/commands/init.md +0 -20
  144. /package/src/{core/tools/task/bundled-commands → prompts}/architect-plan.md +0 -0
  145. /package/src/{core/tools/task/bundled-agents → prompts}/browser.md +0 -0
  146. /package/src/{core/tools/task/bundled-agents → prompts}/explore.md +0 -0
  147. /package/src/{core/tools/task/bundled-commands → prompts}/implement-with-critic.md +0 -0
  148. /package/src/{core/tools/task/bundled-commands → prompts}/implement.md +0 -0
  149. /package/src/{core/tools/task/bundled-agents → prompts}/plan.md +0 -0
@@ -0,0 +1,106 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "dark-catppuccin",
4
+ "vars": {
5
+ "rosewater": "#f5e0dc",
6
+ "flamingo": "#f2cdcd",
7
+ "pink": "#f5c2e7",
8
+ "mauve": "#cba6f7",
9
+ "red": "#f38ba8",
10
+ "maroon": "#eba0ac",
11
+ "peach": "#fab387",
12
+ "yellow": "#f9e2af",
13
+ "green": "#a6e3a1",
14
+ "teal": "#94e2d5",
15
+ "sky": "#89dceb",
16
+ "sapphire": "#74c7ec",
17
+ "blue": "#89b4fa",
18
+ "lavender": "#b4befe",
19
+ "text": "#cdd6f4",
20
+ "subtext1": "#bac2de",
21
+ "subtext0": "#a6adc8",
22
+ "overlay2": "#9399b2",
23
+ "overlay1": "#7f849c",
24
+ "overlay0": "#6c7086",
25
+ "surface2": "#585b70",
26
+ "surface1": "#45475a",
27
+ "surface0": "#313244",
28
+ "base": "#1e1e2e",
29
+ "mantle": "#181825",
30
+ "crust": "#11111b"
31
+ },
32
+ "colors": {
33
+ "accent": "peach",
34
+ "border": "blue",
35
+ "borderAccent": "lavender",
36
+ "borderMuted": "surface0",
37
+ "success": "green",
38
+ "error": "red",
39
+ "warning": "yellow",
40
+ "muted": "overlay1",
41
+ "dim": "overlay0",
42
+ "text": "",
43
+ "thinkingText": "overlay1",
44
+ "selectedBg": "surface0",
45
+ "userMessageBg": "mantle",
46
+ "userMessageText": "",
47
+ "customMessageBg": "crust",
48
+ "customMessageText": "",
49
+ "customMessageLabel": "mauve",
50
+ "toolPendingBg": "surface0",
51
+ "toolSuccessBg": "mantle",
52
+ "toolErrorBg": "crust",
53
+ "toolText": "",
54
+ "toolTitle": "lavender",
55
+ "toolOutput": "overlay1",
56
+ "mdHeading": "peach",
57
+ "mdLink": "blue",
58
+ "mdLinkUrl": "overlay0",
59
+ "mdCode": "rosewater",
60
+ "mdCodeBlock": "text",
61
+ "mdCodeBlockBorder": "surface0",
62
+ "mdQuote": "overlay1",
63
+ "mdQuoteBorder": "surface0",
64
+ "mdHr": "surface0",
65
+ "mdListBullet": "peach",
66
+ "toolDiffAdded": "green",
67
+ "toolDiffRemoved": "red",
68
+ "toolDiffContext": "overlay1",
69
+ "link": "blue",
70
+ "syntaxComment": "overlay0",
71
+ "syntaxKeyword": "mauve",
72
+ "syntaxFunction": "blue",
73
+ "syntaxVariable": "text",
74
+ "syntaxString": "green",
75
+ "syntaxNumber": "peach",
76
+ "syntaxType": "yellow",
77
+ "syntaxOperator": "sky",
78
+ "syntaxPunctuation": "overlay2",
79
+ "thinkingOff": "surface0",
80
+ "thinkingMinimal": "overlay0",
81
+ "thinkingLow": "blue",
82
+ "thinkingMedium": "sapphire",
83
+ "thinkingHigh": "mauve",
84
+ "thinkingXhigh": "pink",
85
+ "bashMode": "teal",
86
+ "statusLineBg": "crust",
87
+ "statusLineSep": "surface1",
88
+ "statusLineModel": "pink",
89
+ "statusLinePath": "teal",
90
+ "statusLineGitClean": "green",
91
+ "statusLineGitDirty": "yellow",
92
+ "statusLineContext": "mauve",
93
+ "statusLineSpend": "sapphire",
94
+ "statusLineStaged": "green",
95
+ "statusLineDirty": "peach",
96
+ "statusLineUntracked": "sky",
97
+ "statusLineOutput": "maroon",
98
+ "statusLineCost": "maroon",
99
+ "statusLineSubagents": "peach"
100
+ },
101
+ "export": {
102
+ "pageBg": "base",
103
+ "cardBg": "mantle",
104
+ "infoBg": "surface0"
105
+ }
106
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "dark-cyberpunk",
4
+ "vars": {
5
+ "neonPink": "#FF007A",
6
+ "neonMagenta": "#EA00D9",
7
+ "electricBlue": "#00BFFF",
8
+ "electricCyan": "#0ABDC6",
9
+ "deepPurple": "#711C91",
10
+ "violet": "#8C1BFF",
11
+ "neonGreen": "#00FFB3",
12
+ "acidYellow": "#FFD600",
13
+ "deepNavy": "#091833",
14
+ "darkBlue": "#133E7C",
15
+ "blacklight": "#1B1B2A",
16
+ "charcoal": "#0D0D15",
17
+ "dimPurple": "#4A0E5F",
18
+ "dimCyan": "#055A5F",
19
+ "dimMagenta": "#6B0058",
20
+ "accent": "#FF007A",
21
+ "selectedBg": "#1B1B2A",
22
+ "userMsgBg": "#1B1B2A",
23
+ "toolPendingBg": "#0D0D15",
24
+ "toolSuccessBg": "#0A1A1C",
25
+ "toolErrorBg": "#2A0D15",
26
+ "customMsgBg": "#1B0D2A"
27
+ },
28
+ "colors": {
29
+ "accent": "accent",
30
+ "border": "electricCyan",
31
+ "borderAccent": "neonMagenta",
32
+ "borderMuted": "darkBlue",
33
+ "success": "neonGreen",
34
+ "error": "#FF6F61",
35
+ "warning": "acidYellow",
36
+ "muted": "dimCyan",
37
+ "dim": "dimPurple",
38
+ "text": "",
39
+ "thinkingText": "dimMagenta",
40
+
41
+ "selectedBg": "selectedBg",
42
+ "userMessageBg": "userMsgBg",
43
+ "userMessageText": "",
44
+ "customMessageBg": "customMsgBg",
45
+ "customMessageText": "",
46
+ "customMessageLabel": "violet",
47
+ "toolPendingBg": "toolPendingBg",
48
+ "toolSuccessBg": "toolSuccessBg",
49
+ "toolErrorBg": "toolErrorBg",
50
+ "toolTitle": "electricBlue",
51
+ "toolOutput": "dimCyan",
52
+
53
+ "mdHeading": "neonMagenta",
54
+ "mdLink": "electricBlue",
55
+ "mdLinkUrl": "dimPurple",
56
+ "mdCode": "violet",
57
+ "mdCodeBlock": "electricCyan",
58
+ "mdCodeBlockBorder": "deepPurple",
59
+ "mdQuote": "dimCyan",
60
+ "mdQuoteBorder": "dimPurple",
61
+ "mdHr": "darkBlue",
62
+ "mdListBullet": "neonPink",
63
+
64
+ "toolDiffAdded": "neonGreen",
65
+ "toolDiffRemoved": "#FF6F61",
66
+ "toolDiffContext": "dimCyan",
67
+
68
+ "link": "electricBlue",
69
+
70
+ "syntaxComment": "dimPurple",
71
+ "syntaxKeyword": "neonMagenta",
72
+ "syntaxFunction": "electricCyan",
73
+ "syntaxVariable": "electricBlue",
74
+ "syntaxString": "neonPink",
75
+ "syntaxNumber": "acidYellow",
76
+ "syntaxType": "violet",
77
+ "syntaxOperator": "neonMagenta",
78
+ "syntaxPunctuation": "dimCyan",
79
+
80
+ "thinkingOff": "darkBlue",
81
+ "thinkingMinimal": "dimPurple",
82
+ "thinkingLow": "electricCyan",
83
+ "thinkingMedium": "electricBlue",
84
+ "thinkingHigh": "violet",
85
+ "thinkingXhigh": "neonMagenta",
86
+
87
+ "bashMode": "acidYellow",
88
+
89
+ "statusLineBg": "#091833",
90
+ "statusLineSep": 236,
91
+ "statusLineModel": "#EA00D9",
92
+ "statusLinePath": "#0ABDC6",
93
+ "statusLineGitClean": "#00FFB3",
94
+ "statusLineGitDirty": "#FFD600",
95
+ "statusLineContext": "#8C1BFF",
96
+ "statusLineSpend": "#00BFFF",
97
+ "statusLineStaged": "#00FFB3",
98
+ "statusLineDirty": "#FFD600",
99
+ "statusLineUntracked": "#FF007A",
100
+ "statusLineOutput": "#EA00D9",
101
+ "statusLineCost": "#FF6F61",
102
+ "statusLineSubagents": "accent"
103
+ },
104
+ "export": {
105
+ "pageBg": "#091833",
106
+ "cardBg": "#0D0D15",
107
+ "infoBg": "#1B0D2A"
108
+ }
109
+ }
@@ -0,0 +1,105 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "dark-dracula",
4
+ "vars": {
5
+ "background": "#282A36",
6
+ "currentLine": "#44475A",
7
+ "foreground": "#F8F8F2",
8
+ "comment": "#6272A4",
9
+ "cyan": "#8BE9FD",
10
+ "green": "#50FA7B",
11
+ "orange": "#FFB86C",
12
+ "pink": "#FF79C6",
13
+ "purple": "#BD93F9",
14
+ "red": "#FF5555",
15
+ "yellow": "#F1FA8C",
16
+ "selectedBg": "#44475A",
17
+ "userMsgBg": "#1f2029",
18
+ "toolPendingBg": "#21222C",
19
+ "toolSuccessBg": "#1a1f1e",
20
+ "toolErrorBg": "#2a2028",
21
+ "customMsgBg": "#2b2640"
22
+ },
23
+ "colors": {
24
+ "accent": "purple",
25
+ "border": "purple",
26
+ "borderAccent": "pink",
27
+ "borderMuted": "currentLine",
28
+ "success": "green",
29
+ "error": "red",
30
+ "warning": "yellow",
31
+ "muted": "comment",
32
+ "dim": "currentLine",
33
+ "text": "",
34
+ "thinkingText": "comment",
35
+
36
+ "selectedBg": "selectedBg",
37
+ "userMessageBg": "userMsgBg",
38
+ "userMessageText": "",
39
+ "customMessageBg": "customMsgBg",
40
+ "customMessageText": "",
41
+ "customMessageLabel": "purple",
42
+ "toolPendingBg": "toolPendingBg",
43
+ "toolSuccessBg": "toolSuccessBg",
44
+ "toolErrorBg": "toolErrorBg",
45
+ "toolText": "",
46
+ "toolTitle": "cyan",
47
+ "toolOutput": "comment",
48
+
49
+ "mdHeading": "purple",
50
+ "mdLink": "cyan",
51
+ "mdLinkUrl": "comment",
52
+ "mdCode": "pink",
53
+ "mdCodeBlock": "green",
54
+ "mdCodeBlockBorder": "currentLine",
55
+ "mdQuote": "comment",
56
+ "mdQuoteBorder": "currentLine",
57
+ "mdHr": "currentLine",
58
+ "mdListBullet": "pink",
59
+
60
+ "toolDiffAdded": "green",
61
+ "toolDiffRemoved": "red",
62
+ "toolDiffContext": "comment",
63
+
64
+ "link": "cyan",
65
+
66
+ "syntaxComment": "comment",
67
+ "syntaxKeyword": "pink",
68
+ "syntaxFunction": "green",
69
+ "syntaxVariable": "cyan",
70
+ "syntaxString": "yellow",
71
+ "syntaxNumber": "purple",
72
+ "syntaxType": "cyan",
73
+ "syntaxOperator": "pink",
74
+ "syntaxPunctuation": "foreground",
75
+
76
+ "thinkingOff": "currentLine",
77
+ "thinkingMinimal": "comment",
78
+ "thinkingLow": "cyan",
79
+ "thinkingMedium": "purple",
80
+ "thinkingHigh": "pink",
81
+ "thinkingXhigh": "orange",
82
+
83
+ "bashMode": "green",
84
+
85
+ "statusLineBg": "background",
86
+ "statusLineSep": "currentLine",
87
+ "statusLineModel": "purple",
88
+ "statusLinePath": "cyan",
89
+ "statusLineGitClean": "green",
90
+ "statusLineGitDirty": "orange",
91
+ "statusLineContext": "purple",
92
+ "statusLineSpend": "cyan",
93
+ "statusLineStaged": "green",
94
+ "statusLineDirty": "orange",
95
+ "statusLineUntracked": "pink",
96
+ "statusLineOutput": "pink",
97
+ "statusLineCost": "pink",
98
+ "statusLineSubagents": "purple"
99
+ },
100
+ "export": {
101
+ "pageBg": "#1e1f29",
102
+ "cardBg": "#282A36",
103
+ "infoBg": "#343746"
104
+ }
105
+ }
@@ -0,0 +1,103 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "dark-forest",
4
+ "vars": {
5
+ "moss": "#8FBC8F",
6
+ "fern": "#4F7942",
7
+ "pine": "#01796F",
8
+ "hunter": "#355E3B",
9
+ "sage": "#9CAF88",
10
+ "bark": "#8B4513",
11
+ "earth": "#A0522D",
12
+ "walnut": "#773F1A",
13
+ "forest": "#1B3A2F",
14
+ "deepForest": "#0F1F19",
15
+ "lichen": "#B8C5A0",
16
+ "amber": "#D4A574",
17
+ "clay": "#C9956F",
18
+ "stone": "#6B7567",
19
+ "shadow": "#2A3F35",
20
+ "mist": "#556B5F"
21
+ },
22
+ "colors": {
23
+ "accent": "moss",
24
+ "border": "pine",
25
+ "borderAccent": "sage",
26
+ "borderMuted": "shadow",
27
+ "success": "fern",
28
+ "error": "#C44C3C",
29
+ "warning": "amber",
30
+ "muted": "stone",
31
+ "dim": "mist",
32
+ "text": "",
33
+ "thinkingText": "stone",
34
+
35
+ "selectedBg": "#1E2E26",
36
+ "userMessageBg": "forest",
37
+ "userMessageText": "",
38
+ "customMessageBg": "#2D3526",
39
+ "customMessageText": "",
40
+ "customMessageLabel": "lichen",
41
+ "toolPendingBg": "deepForest",
42
+ "toolSuccessBg": "#182820",
43
+ "toolErrorBg": "#2B1F1E",
44
+ "toolTitle": "",
45
+ "toolOutput": "stone",
46
+
47
+ "mdHeading": "amber",
48
+ "mdLink": "sage",
49
+ "mdLinkUrl": "mist",
50
+ "mdCode": "lichen",
51
+ "mdCodeBlock": "#A8C99A",
52
+ "mdCodeBlockBorder": "shadow",
53
+ "mdQuote": "stone",
54
+ "mdQuoteBorder": "shadow",
55
+ "mdHr": "shadow",
56
+ "mdListBullet": "moss",
57
+
58
+ "toolDiffAdded": "fern",
59
+ "toolDiffRemoved": "#C44C3C",
60
+ "toolDiffContext": "stone",
61
+
62
+ "link": "sage",
63
+
64
+ "syntaxComment": "#6B8E70",
65
+ "syntaxKeyword": "pine",
66
+ "syntaxFunction": "clay",
67
+ "syntaxVariable": "sage",
68
+ "syntaxString": "#B88B6F",
69
+ "syntaxNumber": "lichen",
70
+ "syntaxType": "moss",
71
+ "syntaxOperator": "#9FA99A",
72
+ "syntaxPunctuation": "#9FA99A",
73
+
74
+ "thinkingOff": "shadow",
75
+ "thinkingMinimal": "mist",
76
+ "thinkingLow": "pine",
77
+ "thinkingMedium": "hunter",
78
+ "thinkingHigh": "fern",
79
+ "thinkingXhigh": "moss",
80
+
81
+ "bashMode": "sage",
82
+
83
+ "statusLineBg": "#0A120E",
84
+ "statusLineSep": "#3A4A40",
85
+ "statusLineModel": "clay",
86
+ "statusLinePath": "pine",
87
+ "statusLineGitClean": "fern",
88
+ "statusLineGitDirty": "amber",
89
+ "statusLineContext": "hunter",
90
+ "statusLineSpend": "sage",
91
+ "statusLineStaged": "fern",
92
+ "statusLineDirty": "amber",
93
+ "statusLineUntracked": "lichen",
94
+ "statusLineOutput": "walnut",
95
+ "statusLineCost": "earth",
96
+ "statusLineSubagents": "moss"
97
+ },
98
+ "export": {
99
+ "pageBg": "#0A120E",
100
+ "cardBg": "#141F1A",
101
+ "infoBg": "#2A3526"
102
+ }
103
+ }
@@ -0,0 +1,112 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "dark-github",
4
+ "vars": {
5
+ "bg": "#0d1117",
6
+ "bgElevated": "#161b22",
7
+ "bgSubtle": "#21262d",
8
+ "border": "#30363d",
9
+ "borderMuted": "#21262d",
10
+ "text": "#c9d1d9",
11
+ "textMuted": "#8b949e",
12
+ "textDim": "#6e7681",
13
+ "blue": "#58a6ff",
14
+ "blueLight": "#79c0ff",
15
+ "blueMuted": "#1f6feb",
16
+ "green": "#3fb950",
17
+ "greenLight": "#7ee787",
18
+ "greenDiff": "#aff5b4",
19
+ "greenDiffBg": "#033a16",
20
+ "red": "#f85149",
21
+ "redLight": "#ff7b72",
22
+ "redDiff": "#ffdcd7",
23
+ "redDiffBg": "#67060c",
24
+ "yellow": "#d29922",
25
+ "yellowLight": "#f2cc60",
26
+ "orange": "#ffa657",
27
+ "purple": "#d2a8ff",
28
+ "accent": "#58a6ff"
29
+ },
30
+ "colors": {
31
+ "accent": "accent",
32
+ "border": "border",
33
+ "borderAccent": "blue",
34
+ "borderMuted": "borderMuted",
35
+ "success": "green",
36
+ "error": "red",
37
+ "warning": "yellow",
38
+ "muted": "textMuted",
39
+ "dim": "textDim",
40
+ "text": "",
41
+ "thinkingText": "textMuted",
42
+
43
+ "selectedBg": "#1c2128",
44
+ "userMessageBg": "bgElevated",
45
+ "userMessageText": "",
46
+ "customMessageBg": "#1c1f26",
47
+ "customMessageText": "",
48
+ "customMessageLabel": "purple",
49
+ "toolPendingBg": "bg",
50
+ "toolSuccessBg": "bg",
51
+ "toolErrorBg": "#1a0f0d",
52
+ "toolText": "",
53
+ "toolTitle": "",
54
+ "toolOutput": "textMuted",
55
+
56
+ "mdHeading": "blue",
57
+ "mdLink": "blue",
58
+ "mdLinkUrl": "textDim",
59
+ "mdCode": "blueLight",
60
+ "mdCodeBlock": "text",
61
+ "mdCodeBlockBorder": "borderMuted",
62
+ "mdQuote": "textMuted",
63
+ "mdQuoteBorder": "borderMuted",
64
+ "mdHr": "border",
65
+ "mdListBullet": "yellowLight",
66
+
67
+ "toolDiffAdded": "greenLight",
68
+ "toolDiffRemoved": "redLight",
69
+ "toolDiffContext": "textMuted",
70
+
71
+ "link": "blue",
72
+
73
+ "syntaxComment": "textMuted",
74
+ "syntaxKeyword": "redLight",
75
+ "syntaxFunction": "purple",
76
+ "syntaxVariable": "blueLight",
77
+ "syntaxString": "#a5d6ff",
78
+ "syntaxNumber": "blueLight",
79
+ "syntaxType": "purple",
80
+ "syntaxOperator": "redLight",
81
+ "syntaxPunctuation": "text",
82
+
83
+ "thinkingOff": "borderMuted",
84
+ "thinkingMinimal": "textDim",
85
+ "thinkingLow": "blueMuted",
86
+ "thinkingMedium": "blue",
87
+ "thinkingHigh": "purple",
88
+ "thinkingXhigh": "#eddeff",
89
+
90
+ "bashMode": "blue",
91
+
92
+ "statusLineBg": "#010409",
93
+ "statusLineSep": "#30363d",
94
+ "statusLineModel": "purple",
95
+ "statusLinePath": "blueLight",
96
+ "statusLineGitClean": "green",
97
+ "statusLineGitDirty": "orange",
98
+ "statusLineContext": "purple",
99
+ "statusLineSpend": "blueLight",
100
+ "statusLineStaged": "green",
101
+ "statusLineDirty": "orange",
102
+ "statusLineUntracked": "blue",
103
+ "statusLineOutput": "purple",
104
+ "statusLineCost": "purple",
105
+ "statusLineSubagents": "yellowLight"
106
+ },
107
+ "export": {
108
+ "pageBg": "#010409",
109
+ "cardBg": "bg",
110
+ "infoBg": "bgSubtle"
111
+ }
112
+ }
@@ -0,0 +1,119 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "dark-gruvbox",
4
+ "vars": {
5
+ "bg0": "#282828",
6
+ "bg1": "#3c3836",
7
+ "bg2": "#504945",
8
+ "bg3": "#665c54",
9
+ "bg4": "#7c6f64",
10
+ "gray": "#928374",
11
+ "fg0": "#fbf1c7",
12
+ "fg1": "#ebdbb2",
13
+ "fg2": "#d5c4a1",
14
+ "fg3": "#bdae93",
15
+ "fg4": "#a89984",
16
+ "red": "#fb4934",
17
+ "green": "#b8bb26",
18
+ "yellow": "#fabd2f",
19
+ "blue": "#83a598",
20
+ "purple": "#d3869b",
21
+ "aqua": "#8ec07c",
22
+ "orange": "#fe8019",
23
+ "neutralRed": "#cc241d",
24
+ "neutralGreen": "#98971a",
25
+ "neutralYellow": "#d79921",
26
+ "neutralBlue": "#458588",
27
+ "neutralPurple": "#b16286",
28
+ "neutralAqua": "#689d6a",
29
+ "neutralOrange": "#d65d0e",
30
+ "selectedBg": "#3c3836",
31
+ "userMsgBg": "#1d2021",
32
+ "toolPendingBg": "#32302f",
33
+ "toolSuccessBg": "#1d2021",
34
+ "toolErrorBg": "#3c2021",
35
+ "customMsgBg": "#3c2f36"
36
+ },
37
+ "colors": {
38
+ "accent": "orange",
39
+ "border": "neutralBlue",
40
+ "borderAccent": "aqua",
41
+ "borderMuted": "bg2",
42
+ "success": "green",
43
+ "error": "red",
44
+ "warning": "yellow",
45
+ "muted": "gray",
46
+ "dim": "bg4",
47
+ "text": "",
48
+ "thinkingText": "gray",
49
+
50
+ "selectedBg": "selectedBg",
51
+ "userMessageBg": "userMsgBg",
52
+ "userMessageText": "",
53
+ "customMessageBg": "customMsgBg",
54
+ "customMessageText": "",
55
+ "customMessageLabel": "purple",
56
+ "toolPendingBg": "toolPendingBg",
57
+ "toolSuccessBg": "toolSuccessBg",
58
+ "toolErrorBg": "toolErrorBg",
59
+ "toolText": "",
60
+ "toolTitle": "",
61
+ "toolOutput": "gray",
62
+
63
+ "mdHeading": "yellow",
64
+ "mdLink": "aqua",
65
+ "mdLinkUrl": "bg4",
66
+ "mdCode": "purple",
67
+ "mdCodeBlock": "fg1",
68
+ "mdCodeBlockBorder": "bg2",
69
+ "mdQuote": "gray",
70
+ "mdQuoteBorder": "bg2",
71
+ "mdHr": "bg2",
72
+ "mdListBullet": "orange",
73
+
74
+ "toolDiffAdded": "green",
75
+ "toolDiffRemoved": "red",
76
+ "toolDiffContext": "gray",
77
+
78
+ "link": "aqua",
79
+
80
+ "syntaxComment": "gray",
81
+ "syntaxKeyword": "red",
82
+ "syntaxFunction": "yellow",
83
+ "syntaxVariable": "blue",
84
+ "syntaxString": "green",
85
+ "syntaxNumber": "purple",
86
+ "syntaxType": "aqua",
87
+ "syntaxOperator": "orange",
88
+ "syntaxPunctuation": "fg2",
89
+
90
+ "thinkingOff": "bg2",
91
+ "thinkingMinimal": "bg4",
92
+ "thinkingLow": "neutralBlue",
93
+ "thinkingMedium": "blue",
94
+ "thinkingHigh": "neutralPurple",
95
+ "thinkingXhigh": "purple",
96
+
97
+ "bashMode": "aqua",
98
+
99
+ "statusLineBg": "#1d2021",
100
+ "statusLineSep": "bg3",
101
+ "statusLineModel": "purple",
102
+ "statusLinePath": "aqua",
103
+ "statusLineGitClean": "neutralGreen",
104
+ "statusLineGitDirty": "neutralYellow",
105
+ "statusLineContext": "blue",
106
+ "statusLineSpend": "aqua",
107
+ "statusLineStaged": "neutralGreen",
108
+ "statusLineDirty": "neutralYellow",
109
+ "statusLineUntracked": "blue",
110
+ "statusLineOutput": "purple",
111
+ "statusLineCost": "purple",
112
+ "statusLineSubagents": "orange"
113
+ },
114
+ "export": {
115
+ "pageBg": "#1d2021",
116
+ "cardBg": "#282828",
117
+ "infoBg": "#3c3836"
118
+ }
119
+ }