@oh-my-pi/pi-coding-agent 3.14.0 → 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 (148) hide show
  1. package/CHANGELOG.md +79 -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/tool-wrapper.ts +0 -1
  15. package/src/core/hooks/types.ts +2 -2
  16. package/src/core/plugins/doctor.ts +9 -1
  17. package/src/core/sdk.ts +2 -1
  18. package/src/core/session-manager.ts +518 -40
  19. package/src/core/settings-manager.ts +174 -0
  20. package/src/core/system-prompt.ts +9 -14
  21. package/src/core/title-generator.ts +2 -8
  22. package/src/core/tools/ask.ts +19 -37
  23. package/src/core/tools/bash.ts +2 -37
  24. package/src/core/tools/edit.ts +2 -9
  25. package/src/core/tools/exa/render.ts +52 -48
  26. package/src/core/tools/find.ts +10 -8
  27. package/src/core/tools/grep.ts +45 -17
  28. package/src/core/tools/ls.ts +22 -2
  29. package/src/core/tools/lsp/clients/biome-client.ts +207 -0
  30. package/src/core/tools/lsp/clients/index.ts +49 -0
  31. package/src/core/tools/lsp/clients/lsp-linter-client.ts +98 -0
  32. package/src/core/tools/lsp/config.ts +3 -0
  33. package/src/core/tools/lsp/index.ts +107 -55
  34. package/src/core/tools/lsp/render.ts +192 -79
  35. package/src/core/tools/lsp/types.ts +27 -0
  36. package/src/core/tools/lsp/utils.ts +62 -22
  37. package/src/core/tools/notebook.ts +9 -1
  38. package/src/core/tools/output.ts +37 -14
  39. package/src/core/tools/read.ts +349 -34
  40. package/src/core/tools/renderers.ts +290 -89
  41. package/src/core/tools/review.ts +12 -5
  42. package/src/core/tools/task/agents.ts +5 -5
  43. package/src/core/tools/task/commands.ts +3 -3
  44. package/src/core/tools/task/executor.ts +33 -1
  45. package/src/core/tools/task/index.ts +93 -6
  46. package/src/core/tools/task/render.ts +147 -66
  47. package/src/core/tools/task/types.ts +14 -9
  48. package/src/core/tools/web-fetch.ts +242 -103
  49. package/src/core/tools/web-search/index.ts +64 -20
  50. package/src/core/tools/web-search/providers/exa.ts +68 -172
  51. package/src/core/tools/web-search/render.ts +264 -74
  52. package/src/core/tools/write.ts +2 -8
  53. package/src/main.ts +10 -6
  54. package/src/modes/cleanup.ts +23 -0
  55. package/src/modes/index.ts +9 -4
  56. package/src/modes/interactive/components/bash-execution.ts +6 -3
  57. package/src/modes/interactive/components/branch-summary-message.ts +1 -1
  58. package/src/modes/interactive/components/compaction-summary-message.ts +1 -1
  59. package/src/modes/interactive/components/dynamic-border.ts +1 -1
  60. package/src/modes/interactive/components/extensions/extension-dashboard.ts +4 -5
  61. package/src/modes/interactive/components/extensions/extension-list.ts +18 -16
  62. package/src/modes/interactive/components/extensions/inspector-panel.ts +8 -8
  63. package/src/modes/interactive/components/hook-message.ts +2 -2
  64. package/src/modes/interactive/components/hook-selector.ts +1 -1
  65. package/src/modes/interactive/components/model-selector.ts +22 -9
  66. package/src/modes/interactive/components/oauth-selector.ts +20 -4
  67. package/src/modes/interactive/components/plugin-settings.ts +4 -2
  68. package/src/modes/interactive/components/session-selector.ts +9 -6
  69. package/src/modes/interactive/components/settings-defs.ts +285 -1
  70. package/src/modes/interactive/components/settings-selector.ts +176 -3
  71. package/src/modes/interactive/components/status-line/index.ts +4 -0
  72. package/src/modes/interactive/components/status-line/presets.ts +94 -0
  73. package/src/modes/interactive/components/status-line/segments.ts +350 -0
  74. package/src/modes/interactive/components/status-line/separators.ts +55 -0
  75. package/src/modes/interactive/components/status-line/types.ts +81 -0
  76. package/src/modes/interactive/components/status-line-segment-editor.ts +357 -0
  77. package/src/modes/interactive/components/status-line.ts +170 -223
  78. package/src/modes/interactive/components/tool-execution.ts +446 -211
  79. package/src/modes/interactive/components/tree-selector.ts +17 -6
  80. package/src/modes/interactive/components/ttsr-notification.ts +4 -4
  81. package/src/modes/interactive/components/welcome.ts +27 -19
  82. package/src/modes/interactive/interactive-mode.ts +98 -13
  83. package/src/modes/interactive/theme/dark.json +3 -2
  84. package/src/modes/interactive/theme/defaults/dark-arctic.json +111 -0
  85. package/src/modes/interactive/theme/defaults/dark-catppuccin.json +106 -0
  86. package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +109 -0
  87. package/src/modes/interactive/theme/defaults/dark-dracula.json +105 -0
  88. package/src/modes/interactive/theme/defaults/dark-forest.json +103 -0
  89. package/src/modes/interactive/theme/defaults/dark-github.json +112 -0
  90. package/src/modes/interactive/theme/defaults/dark-gruvbox.json +119 -0
  91. package/src/modes/interactive/theme/defaults/dark-monochrome.json +101 -0
  92. package/src/modes/interactive/theme/defaults/dark-monokai.json +105 -0
  93. package/src/modes/interactive/theme/defaults/dark-nord.json +104 -0
  94. package/src/modes/interactive/theme/defaults/dark-ocean.json +108 -0
  95. package/src/modes/interactive/theme/defaults/dark-one.json +107 -0
  96. package/src/modes/interactive/theme/defaults/dark-retro.json +99 -0
  97. package/src/modes/interactive/theme/defaults/dark-rose-pine.json +95 -0
  98. package/src/modes/interactive/theme/defaults/dark-solarized.json +96 -0
  99. package/src/modes/interactive/theme/defaults/dark-sunset.json +106 -0
  100. package/src/modes/interactive/theme/defaults/dark-synthwave.json +102 -0
  101. package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +108 -0
  102. package/src/modes/interactive/theme/defaults/index.ts +67 -0
  103. package/src/modes/interactive/theme/defaults/light-arctic.json +106 -0
  104. package/src/modes/interactive/theme/defaults/light-catppuccin.json +105 -0
  105. package/src/modes/interactive/theme/defaults/light-cyberpunk.json +103 -0
  106. package/src/modes/interactive/theme/defaults/light-forest.json +107 -0
  107. package/src/modes/interactive/theme/defaults/light-github.json +114 -0
  108. package/src/modes/interactive/theme/defaults/light-gruvbox.json +115 -0
  109. package/src/modes/interactive/theme/defaults/light-monochrome.json +100 -0
  110. package/src/modes/interactive/theme/defaults/light-ocean.json +106 -0
  111. package/src/modes/interactive/theme/defaults/light-one.json +105 -0
  112. package/src/modes/interactive/theme/defaults/light-retro.json +105 -0
  113. package/src/modes/interactive/theme/defaults/light-solarized.json +101 -0
  114. package/src/modes/interactive/theme/defaults/light-sunset.json +106 -0
  115. package/src/modes/interactive/theme/defaults/light-synthwave.json +105 -0
  116. package/src/modes/interactive/theme/defaults/light-tokyo-night.json +118 -0
  117. package/src/modes/interactive/theme/light.json +3 -2
  118. package/src/modes/interactive/theme/theme-schema.json +120 -4
  119. package/src/modes/interactive/theme/theme.ts +1228 -14
  120. package/src/prompts/branch-summary-preamble.md +3 -0
  121. package/src/prompts/branch-summary.md +28 -0
  122. package/src/prompts/compaction-summary.md +34 -0
  123. package/src/prompts/compaction-turn-prefix.md +16 -0
  124. package/src/prompts/compaction-update-summary.md +41 -0
  125. package/src/prompts/init.md +30 -0
  126. package/src/{core/tools/task/bundled-agents → prompts}/reviewer.md +6 -0
  127. package/src/prompts/summarization-system.md +3 -0
  128. package/src/prompts/system-prompt.md +27 -0
  129. package/src/{core/tools/task/bundled-agents → prompts}/task.md +2 -0
  130. package/src/prompts/title-system.md +8 -0
  131. package/src/prompts/tools/ask.md +24 -0
  132. package/src/prompts/tools/bash.md +23 -0
  133. package/src/prompts/tools/edit.md +9 -0
  134. package/src/prompts/tools/find.md +6 -0
  135. package/src/prompts/tools/grep.md +12 -0
  136. package/src/prompts/tools/lsp.md +14 -0
  137. package/src/prompts/tools/output.md +23 -0
  138. package/src/prompts/tools/read.md +25 -0
  139. package/src/prompts/tools/web-fetch.md +8 -0
  140. package/src/prompts/tools/web-search.md +10 -0
  141. package/src/prompts/tools/write.md +10 -0
  142. package/src/commands/init.md +0 -20
  143. /package/src/{core/tools/task/bundled-commands → prompts}/architect-plan.md +0 -0
  144. /package/src/{core/tools/task/bundled-agents → prompts}/browser.md +0 -0
  145. /package/src/{core/tools/task/bundled-agents → prompts}/explore.md +0 -0
  146. /package/src/{core/tools/task/bundled-commands → prompts}/implement-with-critic.md +0 -0
  147. /package/src/{core/tools/task/bundled-commands → prompts}/implement.md +0 -0
  148. /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": "light-ocean",
4
+ "vars": {
5
+ "oceanDeep": "#297685",
6
+ "oceanTeal": "#378ad7",
7
+ "oceanAqua": "#7fdbdc",
8
+ "seaGreen": "#9bcbbb",
9
+ "coral": "#ff8a80",
10
+ "warmCoral": "#ffab91",
11
+ "sand": "#f4ede4",
12
+ "lightSand": "#faf7f3",
13
+ "driftwood": "#8b7d6b",
14
+ "slate": "#5a6c7d",
15
+ "foam": "#e0f2f1",
16
+ "shell": "#d7ccc8",
17
+ "selectedBg": "#e0f7fa",
18
+ "userMsgBg": "#fafafa",
19
+ "toolPendingBg": "#e0f7fa",
20
+ "toolSuccessBg": "#e8f5e9",
21
+ "toolErrorBg": "#ffebee",
22
+ "customMsgBg": "#e1f5fe"
23
+ },
24
+ "colors": {
25
+ "accent": "oceanTeal",
26
+ "border": "oceanDeep",
27
+ "borderAccent": "oceanAqua",
28
+ "borderMuted": "shell",
29
+ "success": "seaGreen",
30
+ "error": "coral",
31
+ "warning": "warmCoral",
32
+ "muted": "slate",
33
+ "dim": "driftwood",
34
+ "text": "",
35
+ "thinkingText": "slate",
36
+
37
+ "selectedBg": "selectedBg",
38
+ "userMessageBg": "userMsgBg",
39
+ "userMessageText": "",
40
+ "customMessageBg": "customMsgBg",
41
+ "customMessageText": "",
42
+ "customMessageLabel": "#0288d1",
43
+ "toolPendingBg": "toolPendingBg",
44
+ "toolSuccessBg": "toolSuccessBg",
45
+ "toolErrorBg": "toolErrorBg",
46
+ "toolText": "",
47
+ "toolTitle": "",
48
+ "toolOutput": "slate",
49
+
50
+ "mdHeading": "oceanDeep",
51
+ "mdLink": "oceanTeal",
52
+ "mdLinkUrl": "driftwood",
53
+ "mdCode": "oceanAqua",
54
+ "mdCodeBlock": "seaGreen",
55
+ "mdCodeBlockBorder": "slate",
56
+ "mdQuote": "slate",
57
+ "mdQuoteBorder": "shell",
58
+ "mdHr": "shell",
59
+ "mdListBullet": "oceanTeal",
60
+
61
+ "toolDiffAdded": "seaGreen",
62
+ "toolDiffRemoved": "coral",
63
+ "toolDiffContext": "slate",
64
+
65
+ "link": "oceanTeal",
66
+
67
+ "syntaxComment": "#80cbc4",
68
+ "syntaxKeyword": "#0288d1",
69
+ "syntaxFunction": "#00796b",
70
+ "syntaxVariable": "#0097a7",
71
+ "syntaxString": "#d84315",
72
+ "syntaxNumber": "#00897b",
73
+ "syntaxType": "#0277bd",
74
+ "syntaxOperator": "#455a64",
75
+ "syntaxPunctuation": "#546e7a",
76
+
77
+ "thinkingOff": "shell",
78
+ "thinkingMinimal": "#b0bec5",
79
+ "thinkingLow": "#4dd0e1",
80
+ "thinkingMedium": "#26c6da",
81
+ "thinkingHigh": "#00acc1",
82
+ "thinkingXhigh": "#0097a7",
83
+
84
+ "bashMode": "seaGreen",
85
+
86
+ "statusLineBg": "foam",
87
+ "statusLineSep": "#90a4ae",
88
+ "statusLineModel": "#00838f",
89
+ "statusLinePath": "#01579b",
90
+ "statusLineGitClean": "#2e7d32",
91
+ "statusLineGitDirty": "#e65100",
92
+ "statusLineContext": "#5e35b1",
93
+ "statusLineSpend": "#006064",
94
+ "statusLineStaged": 35,
95
+ "statusLineDirty": 173,
96
+ "statusLineUntracked": 45,
97
+ "statusLineOutput": 110,
98
+ "statusLineCost": 173,
99
+ "statusLineSubagents": "oceanTeal"
100
+ },
101
+ "export": {
102
+ "pageBg": "lightSand",
103
+ "cardBg": "#ffffff",
104
+ "infoBg": "foam"
105
+ }
106
+ }
@@ -0,0 +1,105 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "light-one",
4
+ "vars": {
5
+ "mono1": "#3E4451",
6
+ "mono2": "#696C77",
7
+ "mono3": "#A0A1A7",
8
+ "cyan": "#0184BC",
9
+ "blue": "#4078F2",
10
+ "purple": "#A626A4",
11
+ "green": "#50A14F",
12
+ "red": "#E45649",
13
+ "red2": "#C91C23",
14
+ "orange": "#C18401",
15
+ "orange2": "#E5C07B",
16
+ "bg": "#FAFAFA",
17
+ "gutter": "#E8E8E8",
18
+ "selectedBg": "#E5E5E6",
19
+ "userMsgBg": "#F0F0F0",
20
+ "toolPendingBg": "#F0F0FA",
21
+ "toolSuccessBg": "#F0FAF0",
22
+ "toolErrorBg": "#FAF0F0",
23
+ "customMsgBg": "#F5F0FA"
24
+ },
25
+ "colors": {
26
+ "accent": "cyan",
27
+ "border": "blue",
28
+ "borderAccent": "cyan",
29
+ "borderMuted": "mono3",
30
+ "success": "green",
31
+ "error": "red",
32
+ "warning": "orange2",
33
+ "muted": "mono2",
34
+ "dim": "mono3",
35
+ "text": "",
36
+ "thinkingText": "mono2",
37
+
38
+ "selectedBg": "selectedBg",
39
+ "userMessageBg": "userMsgBg",
40
+ "userMessageText": "",
41
+ "customMessageBg": "customMsgBg",
42
+ "customMessageText": "",
43
+ "customMessageLabel": "purple",
44
+ "toolPendingBg": "toolPendingBg",
45
+ "toolSuccessBg": "toolSuccessBg",
46
+ "toolErrorBg": "toolErrorBg",
47
+ "toolText": "",
48
+ "toolTitle": "",
49
+ "toolOutput": "mono2",
50
+
51
+ "mdHeading": "orange",
52
+ "mdLink": "blue",
53
+ "mdLinkUrl": "mono3",
54
+ "mdCode": "cyan",
55
+ "mdCodeBlock": "green",
56
+ "mdCodeBlockBorder": "mono2",
57
+ "mdQuote": "mono2",
58
+ "mdQuoteBorder": "mono2",
59
+ "mdHr": "mono2",
60
+ "mdListBullet": "green",
61
+
62
+ "toolDiffAdded": "green",
63
+ "toolDiffRemoved": "red",
64
+ "toolDiffContext": "mono2",
65
+
66
+ "syntaxComment": "mono3",
67
+ "syntaxKeyword": "purple",
68
+ "syntaxFunction": "blue",
69
+ "syntaxVariable": "red",
70
+ "syntaxString": "green",
71
+ "syntaxNumber": "orange",
72
+ "syntaxType": "orange2",
73
+ "syntaxOperator": "cyan",
74
+ "syntaxPunctuation": "mono1",
75
+
76
+ "thinkingOff": "mono3",
77
+ "thinkingMinimal": "#9E9E9E",
78
+ "thinkingLow": "blue",
79
+ "thinkingMedium": "cyan",
80
+ "thinkingHigh": "purple",
81
+ "thinkingXhigh": "#8B008B",
82
+
83
+ "bashMode": "green",
84
+
85
+ "statusLineBg": "gutter",
86
+ "statusLineSep": "mono3",
87
+ "statusLineModel": "purple",
88
+ "statusLinePath": "cyan",
89
+ "statusLineGitClean": "green",
90
+ "statusLineGitDirty": "orange",
91
+ "statusLineContext": "blue",
92
+ "statusLineSpend": "cyan",
93
+ "statusLineStaged": "green",
94
+ "statusLineDirty": "orange",
95
+ "statusLineUntracked": "cyan",
96
+ "statusLineOutput": "purple",
97
+ "statusLineCost": "purple",
98
+ "statusLineSubagents": "cyan"
99
+ },
100
+ "export": {
101
+ "pageBg": "bg",
102
+ "cardBg": "#FFFFFF",
103
+ "infoBg": "#FFFAE6"
104
+ }
105
+ }
@@ -0,0 +1,105 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "light-retro",
4
+ "vars": {
5
+ "paper": "#f4f1e8",
6
+ "greenBar": "#e8f4e8",
7
+ "amber": "#ffbb00",
8
+ "amberDark": "#cc9900",
9
+ "greenPhosphor": "#33cc66",
10
+ "printBlack": "#2b2b2b",
11
+ "printGray": "#5a5a5a",
12
+ "fadedInk": "#6b6b6b",
13
+ "dotMatrixGreen": "#2d6632",
14
+ "vintageRed": "#cc3333",
15
+ "vintageBlue": "#3366cc",
16
+ "paperHighlight": "#e8e4d8",
17
+ "paperShadow": "#d8d4c8",
18
+ "toolBgPending": "#fff8e8",
19
+ "toolBgSuccess": "#e8f4e8",
20
+ "toolBgError": "#f8e8e8",
21
+ "statusBg": "#e0dcd0"
22
+ },
23
+ "colors": {
24
+ "accent": "amber",
25
+ "border": "amberDark",
26
+ "borderAccent": "amber",
27
+ "borderMuted": "paperShadow",
28
+ "success": "dotMatrixGreen",
29
+ "error": "vintageRed",
30
+ "warning": "amberDark",
31
+ "muted": "fadedInk",
32
+ "dim": "printGray",
33
+ "text": "printBlack",
34
+ "thinkingText": "fadedInk",
35
+ "selectedBg": "paperHighlight",
36
+ "link": "vintageBlue",
37
+
38
+ "userMessageBg": "greenBar",
39
+ "userMessageText": "printBlack",
40
+ "customMessageBg": "paperHighlight",
41
+ "customMessageText": "printBlack",
42
+ "customMessageLabel": "amberDark",
43
+
44
+ "toolPendingBg": "toolBgPending",
45
+ "toolSuccessBg": "toolBgSuccess",
46
+ "toolErrorBg": "toolBgError",
47
+ "toolText": "printBlack",
48
+ "toolTitle": "printBlack",
49
+ "toolOutput": "fadedInk",
50
+
51
+ "mdHeading": "amberDark",
52
+ "mdLink": "vintageBlue",
53
+ "mdLinkUrl": "fadedInk",
54
+ "mdCode": "greenPhosphor",
55
+ "mdCodeBlock": "dotMatrixGreen",
56
+ "mdCodeBlockBorder": "printGray",
57
+ "mdQuote": "fadedInk",
58
+ "mdQuoteBorder": "paperShadow",
59
+ "mdHr": "paperShadow",
60
+ "mdListBullet": "dotMatrixGreen",
61
+
62
+ "toolDiffAdded": "dotMatrixGreen",
63
+ "toolDiffRemoved": "vintageRed",
64
+ "toolDiffContext": "fadedInk",
65
+
66
+ "syntaxComment": "#669966",
67
+ "syntaxKeyword": "#cc6600",
68
+ "syntaxFunction": "#996633",
69
+ "syntaxVariable": "#333333",
70
+ "syntaxString": "#993333",
71
+ "syntaxNumber": "#336633",
72
+ "syntaxType": "#666699",
73
+ "syntaxOperator": "#2b2b2b",
74
+ "syntaxPunctuation": "#2b2b2b",
75
+
76
+ "thinkingOff": "paperShadow",
77
+ "thinkingMinimal": "#8a8a7a",
78
+ "thinkingLow": "#996633",
79
+ "thinkingMedium": "#cc9900",
80
+ "thinkingHigh": "#cc6600",
81
+ "thinkingXhigh": "#993300",
82
+
83
+ "bashMode": "dotMatrixGreen",
84
+
85
+ "statusLineBg": "statusBg",
86
+ "statusLineSep": "#a09880",
87
+ "statusLineModel": "#996699",
88
+ "statusLinePath": "#336699",
89
+ "statusLineGitClean": "#2d6632",
90
+ "statusLineGitDirty": "#cc6600",
91
+ "statusLineContext": "#666699",
92
+ "statusLineSpend": "#336666",
93
+ "statusLineStaged": 28,
94
+ "statusLineDirty": 136,
95
+ "statusLineUntracked": 94,
96
+ "statusLineOutput": 133,
97
+ "statusLineCost": 133,
98
+ "statusLineSubagents": "amberDark"
99
+ },
100
+ "export": {
101
+ "pageBg": "paper",
102
+ "cardBg": "#ffffff",
103
+ "infoBg": "greenBar"
104
+ }
105
+ }
@@ -0,0 +1,101 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "light-solarized",
4
+ "vars": {
5
+ "base03": "#002b36",
6
+ "base02": "#073642",
7
+ "base01": "#586e75",
8
+ "base00": "#657b83",
9
+ "base0": "#839496",
10
+ "base1": "#93a1a1",
11
+ "base2": "#eee8d5",
12
+ "base3": "#fdf6e3",
13
+ "yellow": "#b58900",
14
+ "orange": "#cb4b16",
15
+ "red": "#dc322f",
16
+ "magenta": "#d33682",
17
+ "violet": "#6c71c4",
18
+ "blue": "#268bd2",
19
+ "cyan": "#2aa198",
20
+ "green": "#859900",
21
+ "selectedBg": "#e3dcc8",
22
+ "userMsgBg": "#f5f0e6",
23
+ "toolPendingBg": "#eef4f9",
24
+ "toolSuccessBg": "#eff5ed",
25
+ "toolErrorBg": "#f9eeee",
26
+ "customMsgBg": "#f2eff7"
27
+ },
28
+ "colors": {
29
+ "accent": "cyan",
30
+ "border": "blue",
31
+ "borderAccent": "cyan",
32
+ "borderMuted": "base1",
33
+ "success": "green",
34
+ "error": "red",
35
+ "warning": "yellow",
36
+ "muted": "base01",
37
+ "dim": "base1",
38
+ "text": "",
39
+ "thinkingText": "base01",
40
+ "selectedBg": "selectedBg",
41
+ "userMessageBg": "userMsgBg",
42
+ "userMessageText": "",
43
+ "customMessageBg": "customMsgBg",
44
+ "customMessageText": "",
45
+ "customMessageLabel": "violet",
46
+ "toolPendingBg": "toolPendingBg",
47
+ "toolSuccessBg": "toolSuccessBg",
48
+ "toolErrorBg": "toolErrorBg",
49
+ "toolTitle": "",
50
+ "toolOutput": "base01",
51
+ "mdHeading": "yellow",
52
+ "mdLink": "blue",
53
+ "mdLinkUrl": "base1",
54
+ "mdCode": "cyan",
55
+ "mdCodeBlock": "green",
56
+ "mdCodeBlockBorder": "base1",
57
+ "mdQuote": "base01",
58
+ "mdQuoteBorder": "base1",
59
+ "mdHr": "base1",
60
+ "mdListBullet": "green",
61
+ "toolDiffAdded": "green",
62
+ "toolDiffRemoved": "red",
63
+ "toolDiffContext": "base01",
64
+ "link": "blue",
65
+ "syntaxComment": "base1",
66
+ "syntaxKeyword": "green",
67
+ "syntaxFunction": "blue",
68
+ "syntaxVariable": "cyan",
69
+ "syntaxString": "cyan",
70
+ "syntaxNumber": "magenta",
71
+ "syntaxType": "yellow",
72
+ "syntaxOperator": "base00",
73
+ "syntaxPunctuation": "base00",
74
+ "thinkingOff": "base1",
75
+ "thinkingMinimal": "base01",
76
+ "thinkingLow": "blue",
77
+ "thinkingMedium": "cyan",
78
+ "thinkingHigh": "violet",
79
+ "thinkingXhigh": "magenta",
80
+ "bashMode": "green",
81
+ "statusLineBg": "base3",
82
+ "statusLineSep": "base1",
83
+ "statusLineModel": "magenta",
84
+ "statusLinePath": "cyan",
85
+ "statusLineGitClean": "green",
86
+ "statusLineGitDirty": "yellow",
87
+ "statusLineContext": "violet",
88
+ "statusLineSpend": "cyan",
89
+ "statusLineStaged": "green",
90
+ "statusLineDirty": "orange",
91
+ "statusLineUntracked": "blue",
92
+ "statusLineOutput": "magenta",
93
+ "statusLineCost": "red",
94
+ "statusLineSubagents": "cyan"
95
+ },
96
+ "export": {
97
+ "pageBg": "base3",
98
+ "cardBg": "#ffffff",
99
+ "infoBg": "base2"
100
+ }
101
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "light-sunset",
4
+ "vars": {
5
+ "golden": "#d4a259",
6
+ "coral": "#ff8b6a",
7
+ "peach": "#ffb494",
8
+ "lavender": "#b896d4",
9
+ "duskPurple": "#8b6fa3",
10
+ "warmBrown": "#9d7654",
11
+ "cream": "#fff4e6",
12
+ "softPeach": "#ffe8d5",
13
+ "paleOrange": "#ffd4b8",
14
+ "mediumWarm": "#8a7568",
15
+ "dimWarm": "#a89080",
16
+ "lightWarm": "#c9b8a8",
17
+ "selectedBg": "#ffdec9",
18
+ "userMsgBg": "#fff0e0",
19
+ "toolPendingBg": "#fef5ed",
20
+ "toolSuccessBg": "#fff3e6",
21
+ "toolErrorBg": "#ffe8df",
22
+ "customMsgBg": "#f8ebff"
23
+ },
24
+ "colors": {
25
+ "accent": "golden",
26
+ "border": "coral",
27
+ "borderAccent": "golden",
28
+ "borderMuted": "lightWarm",
29
+ "success": "#c49a6c",
30
+ "error": "#d47766",
31
+ "warning": "golden",
32
+ "muted": "mediumWarm",
33
+ "dim": "dimWarm",
34
+ "text": "",
35
+ "thinkingText": "mediumWarm",
36
+
37
+ "selectedBg": "selectedBg",
38
+ "userMessageBg": "userMsgBg",
39
+ "userMessageText": "",
40
+ "customMessageBg": "customMsgBg",
41
+ "customMessageText": "",
42
+ "customMessageLabel": "lavender",
43
+ "toolPendingBg": "toolPendingBg",
44
+ "toolSuccessBg": "toolSuccessBg",
45
+ "toolErrorBg": "toolErrorBg",
46
+ "toolText": "",
47
+ "toolTitle": "",
48
+ "toolOutput": "mediumWarm",
49
+
50
+ "mdHeading": "coral",
51
+ "mdLink": "duskPurple",
52
+ "mdLinkUrl": "dimWarm",
53
+ "mdCode": "golden",
54
+ "mdCodeBlock": "warmBrown",
55
+ "mdCodeBlockBorder": "mediumWarm",
56
+ "mdQuote": "mediumWarm",
57
+ "mdQuoteBorder": "mediumWarm",
58
+ "mdHr": "mediumWarm",
59
+ "mdListBullet": "peach",
60
+
61
+ "toolDiffAdded": "#a87f5c",
62
+ "toolDiffRemoved": "#c47a6a",
63
+ "toolDiffContext": "mediumWarm",
64
+
65
+ "link": "duskPurple",
66
+
67
+ "syntaxComment": "#968264",
68
+ "syntaxKeyword": "#d4704d",
69
+ "syntaxFunction": "#b8832f",
70
+ "syntaxVariable": "#8b6fa3",
71
+ "syntaxString": "#c75d4f",
72
+ "syntaxNumber": "#d4a259",
73
+ "syntaxType": "#9d7654",
74
+ "syntaxOperator": "#8a7568",
75
+ "syntaxPunctuation": "#8a7568",
76
+
77
+ "thinkingOff": "lightWarm",
78
+ "thinkingMinimal": "#b89f8f",
79
+ "thinkingLow": "peach",
80
+ "thinkingMedium": "golden",
81
+ "thinkingHigh": "duskPurple",
82
+ "thinkingXhigh": "#7a5d8e",
83
+
84
+ "bashMode": "warmBrown",
85
+
86
+ "statusLineBg": "#ffecd6",
87
+ "statusLineSep": "#b89f8f",
88
+ "statusLineModel": "lavender",
89
+ "statusLinePath": "#9d7654",
90
+ "statusLineGitClean": "#a87f5c",
91
+ "statusLineGitDirty": "#d4a259",
92
+ "statusLineContext": "duskPurple",
93
+ "statusLineSpend": "#8b6fa3",
94
+ "statusLineStaged": 179,
95
+ "statusLineDirty": 215,
96
+ "statusLineUntracked": 209,
97
+ "statusLineOutput": 139,
98
+ "statusLineCost": 133,
99
+ "statusLineSubagents": "golden"
100
+ },
101
+ "export": {
102
+ "pageBg": "#fffcf5",
103
+ "cardBg": "#ffffff",
104
+ "infoBg": "#fff8ed"
105
+ }
106
+ }
@@ -0,0 +1,105 @@
1
+ {
2
+ "$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
3
+ "name": "light-synthwave",
4
+ "vars": {
5
+ "retroPink": "#ff71ce",
6
+ "neonCyan": "#01cdfe",
7
+ "mintGreen": "#05ffa1",
8
+ "lavenderPurple": "#b967ff",
9
+ "warmYellow": "#fffb96",
10
+ "softMagenta": "#f222ff",
11
+ "pastelViolet": "#c77dff",
12
+ "blushPink": "#ffb3d9",
13
+ "skyBlue": "#7dd3fc",
14
+ "paleBackground": "#fef6ff",
15
+ "cardBg": "#fff0fa",
16
+ "selectedBg": "#ffe6f7",
17
+ "mediumGray": "#8b7a9e",
18
+ "dimGray": "#a99bb5",
19
+ "lightGray": "#d4c2e0",
20
+ "toolPendingBg": "#f0e6ff",
21
+ "toolSuccessBg": "#e6fff5",
22
+ "toolErrorBg": "#ffe6f0"
23
+ },
24
+ "colors": {
25
+ "accent": "retroPink",
26
+ "border": "pastelViolet",
27
+ "borderAccent": "retroPink",
28
+ "borderMuted": "lightGray",
29
+ "success": "mintGreen",
30
+ "error": "#ff2975",
31
+ "warning": "warmYellow",
32
+ "muted": "mediumGray",
33
+ "dim": "dimGray",
34
+ "text": "",
35
+ "thinkingText": "mediumGray",
36
+
37
+ "selectedBg": "selectedBg",
38
+ "userMessageBg": "cardBg",
39
+ "userMessageText": "",
40
+ "customMessageBg": "selectedBg",
41
+ "customMessageText": "",
42
+ "customMessageLabel": "lavenderPurple",
43
+ "toolPendingBg": "toolPendingBg",
44
+ "toolSuccessBg": "toolSuccessBg",
45
+ "toolErrorBg": "toolErrorBg",
46
+ "toolTitle": "",
47
+ "toolOutput": "mediumGray",
48
+
49
+ "mdHeading": "retroPink",
50
+ "mdLink": "neonCyan",
51
+ "mdLinkUrl": "dimGray",
52
+ "mdCode": "lavenderPurple",
53
+ "mdCodeBlock": "pastelViolet",
54
+ "mdCodeBlockBorder": "mediumGray",
55
+ "mdQuote": "mediumGray",
56
+ "mdQuoteBorder": "retroPink",
57
+ "mdHr": "lightGray",
58
+ "mdListBullet": "mintGreen",
59
+
60
+ "toolDiffAdded": "mintGreen",
61
+ "toolDiffRemoved": "#ff2975",
62
+ "toolDiffContext": "mediumGray",
63
+
64
+ "link": "neonCyan",
65
+
66
+ "syntaxComment": "#9b7ab8",
67
+ "syntaxKeyword": "#b967ff",
68
+ "syntaxFunction": "#ff71ce",
69
+ "syntaxVariable": "#7d5ba6",
70
+ "syntaxString": "#ff2975",
71
+ "syntaxNumber": "#05ffa1",
72
+ "syntaxType": "#01cdfe",
73
+ "syntaxOperator": "#c77dff",
74
+ "syntaxPunctuation": "#6b5a7a",
75
+
76
+ "thinkingOff": "lightGray",
77
+ "thinkingMinimal": "#d4c2e0",
78
+ "thinkingLow": "#b3a0c7",
79
+ "thinkingMedium": "#c77dff",
80
+ "thinkingHigh": "#b967ff",
81
+ "thinkingXhigh": "#8c1eff",
82
+
83
+ "bashMode": "mintGreen",
84
+
85
+ "statusLineBg": "#fffbff",
86
+ "statusLineSep": "#d4c2e0",
87
+ "statusLineModel": "#ff71ce",
88
+ "statusLinePath": "#01cdfe",
89
+ "statusLineGitClean": "#05ffa1",
90
+ "statusLineGitDirty": "#ffb347",
91
+ "statusLineContext": "#b967ff",
92
+ "statusLineSpend": "#7dd3fc",
93
+ "statusLineStaged": "#05ffa1",
94
+ "statusLineDirty": "#ffb347",
95
+ "statusLineUntracked": "#ff71ce",
96
+ "statusLineOutput": "#f222ff",
97
+ "statusLineCost": "#f222ff",
98
+ "statusLineSubagents": "retroPink"
99
+ },
100
+ "export": {
101
+ "pageBg": "#fef6ff",
102
+ "cardBg": "#fff0fa",
103
+ "infoBg": "#fffae6"
104
+ }
105
+ }