@oh-my-pi/pi-coding-agent 3.14.0 → 3.15.1
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.
- package/CHANGELOG.md +89 -0
- package/docs/theme.md +38 -5
- package/examples/sdk/11-sessions.ts +2 -2
- package/package.json +7 -4
- package/src/cli/file-processor.ts +51 -2
- package/src/cli/plugin-cli.ts +25 -19
- package/src/cli/update-cli.ts +4 -3
- package/src/core/agent-session.ts +31 -4
- package/src/core/compaction/branch-summarization.ts +4 -32
- package/src/core/compaction/compaction.ts +6 -84
- package/src/core/compaction/utils.ts +2 -3
- package/src/core/custom-tools/types.ts +2 -0
- package/src/core/export-html/index.ts +1 -1
- package/src/core/hooks/tool-wrapper.ts +0 -1
- package/src/core/hooks/types.ts +2 -2
- package/src/core/plugins/doctor.ts +9 -1
- package/src/core/sdk.ts +2 -1
- package/src/core/session-manager.ts +518 -40
- package/src/core/settings-manager.ts +174 -0
- package/src/core/system-prompt.ts +9 -14
- package/src/core/title-generator.ts +2 -8
- package/src/core/tools/ask.ts +19 -37
- package/src/core/tools/bash.ts +2 -37
- package/src/core/tools/edit.ts +2 -9
- package/src/core/tools/exa/render.ts +52 -48
- package/src/core/tools/find.ts +10 -8
- package/src/core/tools/grep.ts +45 -17
- package/src/core/tools/ls.ts +22 -2
- package/src/core/tools/lsp/clients/biome-client.ts +207 -0
- package/src/core/tools/lsp/clients/index.ts +49 -0
- package/src/core/tools/lsp/clients/lsp-linter-client.ts +98 -0
- package/src/core/tools/lsp/config.ts +3 -0
- package/src/core/tools/lsp/index.ts +107 -55
- package/src/core/tools/lsp/render.ts +192 -79
- package/src/core/tools/lsp/types.ts +27 -0
- package/src/core/tools/lsp/utils.ts +62 -22
- package/src/core/tools/notebook.ts +9 -1
- package/src/core/tools/output.ts +37 -14
- package/src/core/tools/read.ts +349 -34
- package/src/core/tools/renderers.ts +290 -89
- package/src/core/tools/review.ts +12 -5
- package/src/core/tools/task/agents.ts +5 -5
- package/src/core/tools/task/commands.ts +3 -3
- package/src/core/tools/task/executor.ts +33 -1
- package/src/core/tools/task/index.ts +93 -6
- package/src/core/tools/task/render.ts +147 -66
- package/src/core/tools/task/types.ts +14 -9
- package/src/core/tools/web-fetch.ts +242 -103
- package/src/core/tools/web-search/index.ts +64 -20
- package/src/core/tools/web-search/providers/exa.ts +68 -172
- package/src/core/tools/web-search/render.ts +264 -74
- package/src/core/tools/write.ts +2 -8
- package/src/main.ts +10 -6
- package/src/modes/cleanup.ts +23 -0
- package/src/modes/index.ts +9 -4
- package/src/modes/interactive/components/bash-execution.ts +6 -3
- package/src/modes/interactive/components/branch-summary-message.ts +1 -1
- package/src/modes/interactive/components/compaction-summary-message.ts +1 -1
- package/src/modes/interactive/components/dynamic-border.ts +1 -1
- package/src/modes/interactive/components/extensions/extension-dashboard.ts +4 -5
- package/src/modes/interactive/components/extensions/extension-list.ts +18 -16
- package/src/modes/interactive/components/extensions/inspector-panel.ts +8 -8
- package/src/modes/interactive/components/hook-editor.ts +1 -0
- package/src/modes/interactive/components/hook-message.ts +2 -2
- package/src/modes/interactive/components/hook-selector.ts +1 -1
- package/src/modes/interactive/components/model-selector.ts +22 -9
- package/src/modes/interactive/components/oauth-selector.ts +20 -4
- package/src/modes/interactive/components/plugin-settings.ts +4 -2
- package/src/modes/interactive/components/session-selector.ts +9 -6
- package/src/modes/interactive/components/settings-defs.ts +285 -1
- package/src/modes/interactive/components/settings-selector.ts +176 -3
- package/src/modes/interactive/components/status-line/index.ts +4 -0
- package/src/modes/interactive/components/status-line/presets.ts +94 -0
- package/src/modes/interactive/components/status-line/segments.ts +350 -0
- package/src/modes/interactive/components/status-line/separators.ts +55 -0
- package/src/modes/interactive/components/status-line/types.ts +81 -0
- package/src/modes/interactive/components/status-line-segment-editor.ts +357 -0
- package/src/modes/interactive/components/status-line.ts +172 -223
- package/src/modes/interactive/components/tool-execution.ts +446 -211
- package/src/modes/interactive/components/tree-selector.ts +17 -6
- package/src/modes/interactive/components/ttsr-notification.ts +4 -4
- package/src/modes/interactive/components/welcome.ts +27 -19
- package/src/modes/interactive/interactive-mode.ts +99 -13
- package/src/modes/interactive/theme/dark.json +3 -2
- package/src/modes/interactive/theme/defaults/alabaster.json +99 -0
- package/src/modes/interactive/theme/defaults/amethyst.json +103 -0
- package/src/modes/interactive/theme/defaults/anthracite.json +100 -0
- package/src/modes/interactive/theme/defaults/basalt.json +90 -0
- package/src/modes/interactive/theme/defaults/birch.json +101 -0
- package/src/modes/interactive/theme/defaults/dark-abyss.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-arctic.json +111 -0
- package/src/modes/interactive/theme/defaults/dark-aurora.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-catppuccin.json +106 -0
- package/src/modes/interactive/theme/defaults/dark-cavern.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-copper.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-cosmos.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-cyberpunk.json +109 -0
- package/src/modes/interactive/theme/defaults/dark-dracula.json +105 -0
- package/src/modes/interactive/theme/defaults/dark-eclipse.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-ember.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-equinox.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-forest.json +103 -0
- package/src/modes/interactive/theme/defaults/dark-github.json +112 -0
- package/src/modes/interactive/theme/defaults/dark-gruvbox.json +119 -0
- package/src/modes/interactive/theme/defaults/dark-lavender.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-lunar.json +95 -0
- package/src/modes/interactive/theme/defaults/dark-midnight.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-monochrome.json +101 -0
- package/src/modes/interactive/theme/defaults/dark-monokai.json +105 -0
- package/src/modes/interactive/theme/defaults/dark-nebula.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-nord.json +104 -0
- package/src/modes/interactive/theme/defaults/dark-ocean.json +108 -0
- package/src/modes/interactive/theme/defaults/dark-one.json +107 -0
- package/src/modes/interactive/theme/defaults/dark-rainforest.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-reef.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-retro.json +99 -0
- package/src/modes/interactive/theme/defaults/dark-rose-pine.json +95 -0
- package/src/modes/interactive/theme/defaults/dark-sakura.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-slate.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-solarized.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-solstice.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-starfall.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-sunset.json +106 -0
- package/src/modes/interactive/theme/defaults/dark-swamp.json +96 -0
- package/src/modes/interactive/theme/defaults/dark-synthwave.json +102 -0
- package/src/modes/interactive/theme/defaults/dark-taiga.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-terminal.json +94 -0
- package/src/modes/interactive/theme/defaults/dark-tokyo-night.json +108 -0
- package/src/modes/interactive/theme/defaults/dark-tundra.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-twilight.json +97 -0
- package/src/modes/interactive/theme/defaults/dark-volcanic.json +97 -0
- package/src/modes/interactive/theme/defaults/graphite.json +99 -0
- package/src/modes/interactive/theme/defaults/index.ts +195 -0
- package/src/modes/interactive/theme/defaults/light-arctic.json +106 -0
- package/src/modes/interactive/theme/defaults/light-aurora-day.json +97 -0
- package/src/modes/interactive/theme/defaults/light-canyon.json +97 -0
- package/src/modes/interactive/theme/defaults/light-catppuccin.json +105 -0
- package/src/modes/interactive/theme/defaults/light-cirrus.json +96 -0
- package/src/modes/interactive/theme/defaults/light-coral.json +94 -0
- package/src/modes/interactive/theme/defaults/light-cyberpunk.json +103 -0
- package/src/modes/interactive/theme/defaults/light-dawn.json +96 -0
- package/src/modes/interactive/theme/defaults/light-dunes.json +97 -0
- package/src/modes/interactive/theme/defaults/light-eucalyptus.json +94 -0
- package/src/modes/interactive/theme/defaults/light-forest.json +107 -0
- package/src/modes/interactive/theme/defaults/light-frost.json +94 -0
- package/src/modes/interactive/theme/defaults/light-github.json +114 -0
- package/src/modes/interactive/theme/defaults/light-glacier.json +97 -0
- package/src/modes/interactive/theme/defaults/light-gruvbox.json +115 -0
- package/src/modes/interactive/theme/defaults/light-haze.json +96 -0
- package/src/modes/interactive/theme/defaults/light-honeycomb.json +94 -0
- package/src/modes/interactive/theme/defaults/light-lagoon.json +97 -0
- package/src/modes/interactive/theme/defaults/light-lavender.json +94 -0
- package/src/modes/interactive/theme/defaults/light-meadow.json +97 -0
- package/src/modes/interactive/theme/defaults/light-mint.json +94 -0
- package/src/modes/interactive/theme/defaults/light-monochrome.json +100 -0
- package/src/modes/interactive/theme/defaults/light-ocean.json +106 -0
- package/src/modes/interactive/theme/defaults/light-one.json +105 -0
- package/src/modes/interactive/theme/defaults/light-opal.json +97 -0
- package/src/modes/interactive/theme/defaults/light-orchard.json +97 -0
- package/src/modes/interactive/theme/defaults/light-paper.json +94 -0
- package/src/modes/interactive/theme/defaults/light-prism.json +96 -0
- package/src/modes/interactive/theme/defaults/light-retro.json +105 -0
- package/src/modes/interactive/theme/defaults/light-sand.json +94 -0
- package/src/modes/interactive/theme/defaults/light-savanna.json +97 -0
- package/src/modes/interactive/theme/defaults/light-solarized.json +101 -0
- package/src/modes/interactive/theme/defaults/light-soleil.json +96 -0
- package/src/modes/interactive/theme/defaults/light-sunset.json +106 -0
- package/src/modes/interactive/theme/defaults/light-synthwave.json +105 -0
- package/src/modes/interactive/theme/defaults/light-tokyo-night.json +118 -0
- package/src/modes/interactive/theme/defaults/light-wetland.json +97 -0
- package/src/modes/interactive/theme/defaults/light-zenith.json +95 -0
- package/src/modes/interactive/theme/defaults/limestone.json +100 -0
- package/src/modes/interactive/theme/defaults/mahogany.json +104 -0
- package/src/modes/interactive/theme/defaults/marble.json +99 -0
- package/src/modes/interactive/theme/defaults/obsidian.json +90 -0
- package/src/modes/interactive/theme/defaults/onyx.json +90 -0
- package/src/modes/interactive/theme/defaults/pearl.json +99 -0
- package/src/modes/interactive/theme/defaults/porcelain.json +90 -0
- package/src/modes/interactive/theme/defaults/quartz.json +102 -0
- package/src/modes/interactive/theme/defaults/sandstone.json +101 -0
- package/src/modes/interactive/theme/defaults/titanium.json +89 -0
- package/src/modes/interactive/theme/light.json +3 -2
- package/src/modes/interactive/theme/theme-schema.json +120 -4
- package/src/modes/interactive/theme/theme.ts +1228 -14
- package/src/prompts/branch-summary-preamble.md +3 -0
- package/src/prompts/branch-summary.md +28 -0
- package/src/prompts/compaction-summary.md +34 -0
- package/src/prompts/compaction-turn-prefix.md +16 -0
- package/src/prompts/compaction-update-summary.md +41 -0
- package/src/prompts/init.md +30 -0
- package/src/{core/tools/task/bundled-agents → prompts}/reviewer.md +6 -0
- package/src/prompts/summarization-system.md +3 -0
- package/src/prompts/system-prompt.md +27 -0
- package/src/{core/tools/task/bundled-agents → prompts}/task.md +2 -0
- package/src/prompts/title-system.md +8 -0
- package/src/prompts/tools/ask.md +24 -0
- package/src/prompts/tools/bash.md +23 -0
- package/src/prompts/tools/edit.md +9 -0
- package/src/prompts/tools/find.md +6 -0
- package/src/prompts/tools/grep.md +12 -0
- package/src/prompts/tools/lsp.md +14 -0
- package/src/prompts/tools/output.md +23 -0
- package/src/prompts/tools/read.md +25 -0
- package/src/prompts/tools/web-fetch.md +8 -0
- package/src/prompts/tools/web-search.md +10 -0
- package/src/prompts/tools/write.md +10 -0
- package/src/commands/init.md +0 -20
- /package/src/{core/tools/task/bundled-commands → prompts}/architect-plan.md +0 -0
- /package/src/{core/tools/task/bundled-agents → prompts}/browser.md +0 -0
- /package/src/{core/tools/task/bundled-agents → prompts}/explore.md +0 -0
- /package/src/{core/tools/task/bundled-commands → prompts}/implement-with-critic.md +0 -0
- /package/src/{core/tools/task/bundled-commands → prompts}/implement.md +0 -0
- /package/src/{core/tools/task/bundled-agents → prompts}/plan.md +0 -0
|
@@ -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
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-lavender",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#8be9fd",
|
|
6
|
+
"blue": "#bd93f9",
|
|
7
|
+
"green": "#50fa7b",
|
|
8
|
+
"red": "#ff5555",
|
|
9
|
+
"yellow": "#f1fa8c",
|
|
10
|
+
"gray": "#f8f8f2",
|
|
11
|
+
"dimGray": "#6272a4",
|
|
12
|
+
"darkGray": "#44475a",
|
|
13
|
+
"accent": "#bd93f9",
|
|
14
|
+
"selectedBg": "#282a36",
|
|
15
|
+
"userMsgBg": "#1e1f29",
|
|
16
|
+
"toolPendingBg": "#252630",
|
|
17
|
+
"toolSuccessBg": "#202b28",
|
|
18
|
+
"toolErrorBg": "#302022",
|
|
19
|
+
"customMsgBg": "#262430"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "accent",
|
|
23
|
+
"border": "blue",
|
|
24
|
+
"borderAccent": "accent",
|
|
25
|
+
"borderMuted": "darkGray",
|
|
26
|
+
"success": "green",
|
|
27
|
+
"error": "red",
|
|
28
|
+
"warning": "yellow",
|
|
29
|
+
"muted": "gray",
|
|
30
|
+
"dim": "dimGray",
|
|
31
|
+
"text": "",
|
|
32
|
+
"thinkingText": "gray",
|
|
33
|
+
"selectedBg": "selectedBg",
|
|
34
|
+
"userMessageBg": "userMsgBg",
|
|
35
|
+
"userMessageText": "",
|
|
36
|
+
"customMessageBg": "customMsgBg",
|
|
37
|
+
"customMessageText": "",
|
|
38
|
+
"customMessageLabel": "accent",
|
|
39
|
+
"toolPendingBg": "toolPendingBg",
|
|
40
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
41
|
+
"toolErrorBg": "toolErrorBg",
|
|
42
|
+
"toolTitle": "",
|
|
43
|
+
"toolOutput": "gray",
|
|
44
|
+
"mdHeading": "#bd93f9",
|
|
45
|
+
"mdLink": "#8be9fd",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#ff79c6",
|
|
48
|
+
"mdCodeBlock": "#8be9fd",
|
|
49
|
+
"mdCodeBlockBorder": "darkGray",
|
|
50
|
+
"mdQuote": "gray",
|
|
51
|
+
"mdQuoteBorder": "darkGray",
|
|
52
|
+
"mdHr": "darkGray",
|
|
53
|
+
"mdListBullet": "accent",
|
|
54
|
+
"toolDiffAdded": "green",
|
|
55
|
+
"toolDiffRemoved": "red",
|
|
56
|
+
"toolDiffContext": "gray",
|
|
57
|
+
"link": "#8be9fd",
|
|
58
|
+
"syntaxComment": "#f8f8f2",
|
|
59
|
+
"syntaxKeyword": "#bd93f9",
|
|
60
|
+
"syntaxFunction": "#f1fa8c",
|
|
61
|
+
"syntaxVariable": "#8be9fd",
|
|
62
|
+
"syntaxString": "#ff5555",
|
|
63
|
+
"syntaxNumber": "#50fa7b",
|
|
64
|
+
"syntaxType": "#bd93f9",
|
|
65
|
+
"syntaxOperator": "#6272a4",
|
|
66
|
+
"syntaxPunctuation": "#6272a4",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#282a36",
|
|
75
|
+
"statusLineSep": "#6272a4",
|
|
76
|
+
"statusLineModel": "accent",
|
|
77
|
+
"statusLinePath": "blue",
|
|
78
|
+
"statusLineGitClean": "green",
|
|
79
|
+
"statusLineGitDirty": "yellow",
|
|
80
|
+
"statusLineContext": "gray",
|
|
81
|
+
"statusLineSpend": "cyan",
|
|
82
|
+
"statusLineStaged": 28,
|
|
83
|
+
"statusLineDirty": 178,
|
|
84
|
+
"statusLineUntracked": 39,
|
|
85
|
+
"statusLineOutput": 205,
|
|
86
|
+
"statusLineCost": 205,
|
|
87
|
+
"statusLineSubagents": "accent"
|
|
88
|
+
},
|
|
89
|
+
"export": {
|
|
90
|
+
"pageBg": "#1e1f29",
|
|
91
|
+
"cardBg": "#252630",
|
|
92
|
+
"infoBg": "#202b28"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-lunar",
|
|
4
|
+
"vars": {
|
|
5
|
+
"night": "#0b0d12",
|
|
6
|
+
"crater": "#1a1d26",
|
|
7
|
+
"moonlight": "#d6dbe3",
|
|
8
|
+
"glow": "#a5c4e0",
|
|
9
|
+
"ice": "#7aa2c8",
|
|
10
|
+
"success": "#6fc49b",
|
|
11
|
+
"error": "#e06a6a",
|
|
12
|
+
"warning": "#f0c27d",
|
|
13
|
+
"muted": "#9aa7b8",
|
|
14
|
+
"dim": "#6a7686"
|
|
15
|
+
},
|
|
16
|
+
"colors": {
|
|
17
|
+
"accent": "moonlight",
|
|
18
|
+
"border": "crater",
|
|
19
|
+
"borderAccent": "glow",
|
|
20
|
+
"borderMuted": "night",
|
|
21
|
+
"success": "success",
|
|
22
|
+
"error": "error",
|
|
23
|
+
"warning": "warning",
|
|
24
|
+
"muted": "muted",
|
|
25
|
+
"dim": "dim",
|
|
26
|
+
"text": "",
|
|
27
|
+
"thinkingText": "muted",
|
|
28
|
+
|
|
29
|
+
"selectedBg": "#141720",
|
|
30
|
+
"userMessageBg": "#0d0f15",
|
|
31
|
+
"userMessageText": "",
|
|
32
|
+
"customMessageBg": "#151923",
|
|
33
|
+
"customMessageText": "",
|
|
34
|
+
"customMessageLabel": "glow",
|
|
35
|
+
"toolPendingBg": "#10131b",
|
|
36
|
+
"toolSuccessBg": "#121c17",
|
|
37
|
+
"toolErrorBg": "#1b1114",
|
|
38
|
+
"toolTitle": "",
|
|
39
|
+
"toolOutput": "muted",
|
|
40
|
+
|
|
41
|
+
"mdHeading": "moonlight",
|
|
42
|
+
"mdLink": "ice",
|
|
43
|
+
"mdLinkUrl": "dim",
|
|
44
|
+
"mdCode": "moonlight",
|
|
45
|
+
"mdCodeBlock": "glow",
|
|
46
|
+
"mdCodeBlockBorder": "crater",
|
|
47
|
+
"mdQuote": "muted",
|
|
48
|
+
"mdQuoteBorder": "crater",
|
|
49
|
+
"mdHr": "crater",
|
|
50
|
+
"mdListBullet": "glow",
|
|
51
|
+
|
|
52
|
+
"toolDiffAdded": "success",
|
|
53
|
+
"toolDiffRemoved": "error",
|
|
54
|
+
"toolDiffContext": "muted",
|
|
55
|
+
|
|
56
|
+
"syntaxComment": "dim",
|
|
57
|
+
"syntaxKeyword": "ice",
|
|
58
|
+
"syntaxFunction": "moonlight",
|
|
59
|
+
"syntaxVariable": "glow",
|
|
60
|
+
"syntaxString": "warning",
|
|
61
|
+
"syntaxNumber": "moonlight",
|
|
62
|
+
"syntaxType": "success",
|
|
63
|
+
"syntaxOperator": "moonlight",
|
|
64
|
+
"syntaxPunctuation": "moonlight",
|
|
65
|
+
|
|
66
|
+
"thinkingOff": "night",
|
|
67
|
+
"thinkingMinimal": "dim",
|
|
68
|
+
"thinkingLow": "ice",
|
|
69
|
+
"thinkingMedium": "glow",
|
|
70
|
+
"thinkingHigh": "moonlight",
|
|
71
|
+
"thinkingXhigh": "#eef3f8",
|
|
72
|
+
|
|
73
|
+
"bashMode": "ice",
|
|
74
|
+
|
|
75
|
+
"statusLineBg": "#0a0c11",
|
|
76
|
+
"statusLineSep": "#2b2f3a",
|
|
77
|
+
"statusLineModel": "glow",
|
|
78
|
+
"statusLinePath": "ice",
|
|
79
|
+
"statusLineGitClean": "success",
|
|
80
|
+
"statusLineGitDirty": "warning",
|
|
81
|
+
"statusLineContext": "muted",
|
|
82
|
+
"statusLineSpend": "moonlight",
|
|
83
|
+
"statusLineStaged": "success",
|
|
84
|
+
"statusLineDirty": "warning",
|
|
85
|
+
"statusLineUntracked": "ice",
|
|
86
|
+
"statusLineOutput": "moonlight",
|
|
87
|
+
"statusLineCost": "glow",
|
|
88
|
+
"statusLineSubagents": "moonlight"
|
|
89
|
+
},
|
|
90
|
+
"export": {
|
|
91
|
+
"pageBg": "#0a0c11",
|
|
92
|
+
"cardBg": "#11151c",
|
|
93
|
+
"infoBg": "#161a24"
|
|
94
|
+
}
|
|
95
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-midnight",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#00e5ff",
|
|
6
|
+
"blue": "#2979ff",
|
|
7
|
+
"green": "#00e676",
|
|
8
|
+
"red": "#ff1744",
|
|
9
|
+
"yellow": "#ffea00",
|
|
10
|
+
"gray": "#b0bec5",
|
|
11
|
+
"dimGray": "#546e7a",
|
|
12
|
+
"darkGray": "#263238",
|
|
13
|
+
"accent": "#2979ff",
|
|
14
|
+
"selectedBg": "#000a12",
|
|
15
|
+
"userMsgBg": "#000000",
|
|
16
|
+
"toolPendingBg": "#050f16",
|
|
17
|
+
"toolSuccessBg": "#001008",
|
|
18
|
+
"toolErrorBg": "#150005",
|
|
19
|
+
"customMsgBg": "#080810"
|
|
20
|
+
},
|
|
21
|
+
"colors": {
|
|
22
|
+
"accent": "accent",
|
|
23
|
+
"border": "blue",
|
|
24
|
+
"borderAccent": "accent",
|
|
25
|
+
"borderMuted": "darkGray",
|
|
26
|
+
"success": "green",
|
|
27
|
+
"error": "red",
|
|
28
|
+
"warning": "yellow",
|
|
29
|
+
"muted": "gray",
|
|
30
|
+
"dim": "dimGray",
|
|
31
|
+
"text": "",
|
|
32
|
+
"thinkingText": "gray",
|
|
33
|
+
"selectedBg": "selectedBg",
|
|
34
|
+
"userMessageBg": "userMsgBg",
|
|
35
|
+
"userMessageText": "",
|
|
36
|
+
"customMessageBg": "customMsgBg",
|
|
37
|
+
"customMessageText": "",
|
|
38
|
+
"customMessageLabel": "accent",
|
|
39
|
+
"toolPendingBg": "toolPendingBg",
|
|
40
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
41
|
+
"toolErrorBg": "toolErrorBg",
|
|
42
|
+
"toolTitle": "",
|
|
43
|
+
"toolOutput": "gray",
|
|
44
|
+
"mdHeading": "#2979ff",
|
|
45
|
+
"mdLink": "#40c4ff",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#00e5ff",
|
|
48
|
+
"mdCodeBlock": "#40c4ff",
|
|
49
|
+
"mdCodeBlockBorder": "darkGray",
|
|
50
|
+
"mdQuote": "gray",
|
|
51
|
+
"mdQuoteBorder": "darkGray",
|
|
52
|
+
"mdHr": "darkGray",
|
|
53
|
+
"mdListBullet": "accent",
|
|
54
|
+
"toolDiffAdded": "green",
|
|
55
|
+
"toolDiffRemoved": "red",
|
|
56
|
+
"toolDiffContext": "gray",
|
|
57
|
+
"link": "#40c4ff",
|
|
58
|
+
"syntaxComment": "#b0bec5",
|
|
59
|
+
"syntaxKeyword": "#2979ff",
|
|
60
|
+
"syntaxFunction": "#ffea00",
|
|
61
|
+
"syntaxVariable": "#00e5ff",
|
|
62
|
+
"syntaxString": "#ff1744",
|
|
63
|
+
"syntaxNumber": "#00e676",
|
|
64
|
+
"syntaxType": "#2979ff",
|
|
65
|
+
"syntaxOperator": "#546e7a",
|
|
66
|
+
"syntaxPunctuation": "#546e7a",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#000a12",
|
|
75
|
+
"statusLineSep": "#546e7a",
|
|
76
|
+
"statusLineModel": "accent",
|
|
77
|
+
"statusLinePath": "blue",
|
|
78
|
+
"statusLineGitClean": "green",
|
|
79
|
+
"statusLineGitDirty": "yellow",
|
|
80
|
+
"statusLineContext": "gray",
|
|
81
|
+
"statusLineSpend": "cyan",
|
|
82
|
+
"statusLineStaged": 28,
|
|
83
|
+
"statusLineDirty": 178,
|
|
84
|
+
"statusLineUntracked": 39,
|
|
85
|
+
"statusLineOutput": 205,
|
|
86
|
+
"statusLineCost": 205,
|
|
87
|
+
"statusLineSubagents": "accent"
|
|
88
|
+
},
|
|
89
|
+
"export": {
|
|
90
|
+
"pageBg": "#000000",
|
|
91
|
+
"cardBg": "#050f16",
|
|
92
|
+
"infoBg": "#001008"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-monochrome",
|
|
4
|
+
"vars": {
|
|
5
|
+
"accent": "#5fafaf",
|
|
6
|
+
"gray1": "#1a1a1a",
|
|
7
|
+
"gray2": "#2a2a2a",
|
|
8
|
+
"gray3": "#3a3a3a",
|
|
9
|
+
"gray4": "#555555",
|
|
10
|
+
"gray5": "#707070",
|
|
11
|
+
"gray6": "#8a8a8a",
|
|
12
|
+
"gray7": "#a5a5a5",
|
|
13
|
+
"gray8": "#c0c0c0",
|
|
14
|
+
"gray9": "#e0e0e0",
|
|
15
|
+
"errorRed": "#8a5555",
|
|
16
|
+
"warningYellow": "#8a8a55",
|
|
17
|
+
"successGreen": "#558a55"
|
|
18
|
+
},
|
|
19
|
+
"colors": {
|
|
20
|
+
"accent": "accent",
|
|
21
|
+
"border": "gray4",
|
|
22
|
+
"borderAccent": "accent",
|
|
23
|
+
"borderMuted": "gray3",
|
|
24
|
+
"success": "successGreen",
|
|
25
|
+
"error": "errorRed",
|
|
26
|
+
"warning": "warningYellow",
|
|
27
|
+
"muted": "gray6",
|
|
28
|
+
"dim": "gray5",
|
|
29
|
+
"text": "",
|
|
30
|
+
"thinkingText": "gray5",
|
|
31
|
+
|
|
32
|
+
"selectedBg": "gray3",
|
|
33
|
+
"userMessageBg": "gray2",
|
|
34
|
+
"userMessageText": "",
|
|
35
|
+
"customMessageBg": "gray3",
|
|
36
|
+
"customMessageText": "",
|
|
37
|
+
"customMessageLabel": "accent",
|
|
38
|
+
"toolPendingBg": "gray1",
|
|
39
|
+
"toolSuccessBg": "gray2",
|
|
40
|
+
"toolErrorBg": "#2a1a1a",
|
|
41
|
+
"toolText": "",
|
|
42
|
+
"toolTitle": "gray8",
|
|
43
|
+
"toolOutput": "gray6",
|
|
44
|
+
|
|
45
|
+
"mdHeading": "gray9",
|
|
46
|
+
"mdLink": "accent",
|
|
47
|
+
"mdLinkUrl": "gray5",
|
|
48
|
+
"mdCode": "gray8",
|
|
49
|
+
"mdCodeBlock": "gray7",
|
|
50
|
+
"mdCodeBlockBorder": "gray4",
|
|
51
|
+
"mdQuote": "gray6",
|
|
52
|
+
"mdQuoteBorder": "gray4",
|
|
53
|
+
"mdHr": "gray4",
|
|
54
|
+
"mdListBullet": "accent",
|
|
55
|
+
|
|
56
|
+
"toolDiffAdded": "successGreen",
|
|
57
|
+
"toolDiffRemoved": "errorRed",
|
|
58
|
+
"toolDiffContext": "gray6",
|
|
59
|
+
|
|
60
|
+
"link": "accent",
|
|
61
|
+
|
|
62
|
+
"syntaxComment": "gray5",
|
|
63
|
+
"syntaxKeyword": "gray8",
|
|
64
|
+
"syntaxFunction": "gray9",
|
|
65
|
+
"syntaxVariable": "gray7",
|
|
66
|
+
"syntaxString": "gray6",
|
|
67
|
+
"syntaxNumber": "accent",
|
|
68
|
+
"syntaxType": "gray8",
|
|
69
|
+
"syntaxOperator": "gray7",
|
|
70
|
+
"syntaxPunctuation": "gray6",
|
|
71
|
+
|
|
72
|
+
"thinkingOff": "gray3",
|
|
73
|
+
"thinkingMinimal": "gray4",
|
|
74
|
+
"thinkingLow": "gray5",
|
|
75
|
+
"thinkingMedium": "gray6",
|
|
76
|
+
"thinkingHigh": "gray7",
|
|
77
|
+
"thinkingXhigh": "gray8",
|
|
78
|
+
|
|
79
|
+
"bashMode": "accent",
|
|
80
|
+
|
|
81
|
+
"statusLineBg": "#0d0d0d",
|
|
82
|
+
"statusLineSep": "gray4",
|
|
83
|
+
"statusLineModel": "gray7",
|
|
84
|
+
"statusLinePath": "accent",
|
|
85
|
+
"statusLineGitClean": "successGreen",
|
|
86
|
+
"statusLineGitDirty": "warningYellow",
|
|
87
|
+
"statusLineContext": "gray6",
|
|
88
|
+
"statusLineSpend": "accent",
|
|
89
|
+
"statusLineStaged": "successGreen",
|
|
90
|
+
"statusLineDirty": "warningYellow",
|
|
91
|
+
"statusLineUntracked": "gray6",
|
|
92
|
+
"statusLineOutput": "gray7",
|
|
93
|
+
"statusLineCost": "gray7",
|
|
94
|
+
"statusLineSubagents": "accent"
|
|
95
|
+
},
|
|
96
|
+
"export": {
|
|
97
|
+
"pageBg": "#0d0d0d",
|
|
98
|
+
"cardBg": "gray1",
|
|
99
|
+
"infoBg": "gray3"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
@@ -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-monokai",
|
|
4
|
+
"vars": {
|
|
5
|
+
"monokaiBg": "#272822",
|
|
6
|
+
"monokaiText": "#f8f8f2",
|
|
7
|
+
"monokaiComment": "#75715e",
|
|
8
|
+
"monokaiPink": "#f92672",
|
|
9
|
+
"monokaiGreen": "#a6e22e",
|
|
10
|
+
"monokaiYellow": "#e6db74",
|
|
11
|
+
"monokaiOrange": "#fd971f",
|
|
12
|
+
"monokaiCyan": "#66d9ef",
|
|
13
|
+
"monokaiPurple": "#ae81ff",
|
|
14
|
+
"monokaiGray": "#999999",
|
|
15
|
+
"monokaiDarkGray": "#49483e",
|
|
16
|
+
"monokaiDarkerGray": "#3e3d32",
|
|
17
|
+
"userMsgBg": "#1e1f1c",
|
|
18
|
+
"toolPendingBg": "#2a2b26",
|
|
19
|
+
"toolSuccessBg": "#242520",
|
|
20
|
+
"toolErrorBg": "#2e1f1f",
|
|
21
|
+
"customMsgBg": "#2b2530"
|
|
22
|
+
},
|
|
23
|
+
"colors": {
|
|
24
|
+
"accent": "monokaiOrange",
|
|
25
|
+
"border": "monokaiCyan",
|
|
26
|
+
"borderAccent": "monokaiPink",
|
|
27
|
+
"borderMuted": "monokaiDarkGray",
|
|
28
|
+
"success": "monokaiGreen",
|
|
29
|
+
"error": "monokaiPink",
|
|
30
|
+
"warning": "monokaiYellow",
|
|
31
|
+
"muted": "monokaiGray",
|
|
32
|
+
"dim": "monokaiComment",
|
|
33
|
+
"text": "",
|
|
34
|
+
"thinkingText": "monokaiComment",
|
|
35
|
+
|
|
36
|
+
"selectedBg": "monokaiDarkGray",
|
|
37
|
+
"userMessageBg": "userMsgBg",
|
|
38
|
+
"userMessageText": "",
|
|
39
|
+
"customMessageBg": "customMsgBg",
|
|
40
|
+
"customMessageText": "",
|
|
41
|
+
"customMessageLabel": "monokaiPurple",
|
|
42
|
+
"toolPendingBg": "toolPendingBg",
|
|
43
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
44
|
+
"toolErrorBg": "toolErrorBg",
|
|
45
|
+
"toolText": "",
|
|
46
|
+
"toolTitle": "monokaiOrange",
|
|
47
|
+
"toolOutput": "monokaiGray",
|
|
48
|
+
|
|
49
|
+
"mdHeading": "monokaiOrange",
|
|
50
|
+
"mdLink": "monokaiCyan",
|
|
51
|
+
"mdLinkUrl": "monokaiComment",
|
|
52
|
+
"mdCode": "monokaiPurple",
|
|
53
|
+
"mdCodeBlock": "monokaiText",
|
|
54
|
+
"mdCodeBlockBorder": "monokaiDarkGray",
|
|
55
|
+
"mdQuote": "monokaiGray",
|
|
56
|
+
"mdQuoteBorder": "monokaiDarkGray",
|
|
57
|
+
"mdHr": "monokaiDarkGray",
|
|
58
|
+
"mdListBullet": "monokaiOrange",
|
|
59
|
+
|
|
60
|
+
"toolDiffAdded": "monokaiGreen",
|
|
61
|
+
"toolDiffRemoved": "monokaiPink",
|
|
62
|
+
"toolDiffContext": "monokaiGray",
|
|
63
|
+
|
|
64
|
+
"link": "monokaiCyan",
|
|
65
|
+
|
|
66
|
+
"syntaxComment": "monokaiComment",
|
|
67
|
+
"syntaxKeyword": "monokaiPink",
|
|
68
|
+
"syntaxFunction": "monokaiGreen",
|
|
69
|
+
"syntaxVariable": "monokaiCyan",
|
|
70
|
+
"syntaxString": "monokaiYellow",
|
|
71
|
+
"syntaxNumber": "monokaiPurple",
|
|
72
|
+
"syntaxType": "monokaiCyan",
|
|
73
|
+
"syntaxOperator": "monokaiPink",
|
|
74
|
+
"syntaxPunctuation": "monokaiText",
|
|
75
|
+
|
|
76
|
+
"thinkingOff": "monokaiDarkGray",
|
|
77
|
+
"thinkingMinimal": "monokaiComment",
|
|
78
|
+
"thinkingLow": "monokaiCyan",
|
|
79
|
+
"thinkingMedium": "monokaiPurple",
|
|
80
|
+
"thinkingHigh": "monokaiPink",
|
|
81
|
+
"thinkingXhigh": "monokaiOrange",
|
|
82
|
+
|
|
83
|
+
"bashMode": "monokaiGreen",
|
|
84
|
+
|
|
85
|
+
"statusLineBg": "#1a1b17",
|
|
86
|
+
"statusLineSep": "#49483e",
|
|
87
|
+
"statusLineModel": "monokaiPurple",
|
|
88
|
+
"statusLinePath": "monokaiCyan",
|
|
89
|
+
"statusLineGitClean": "monokaiGreen",
|
|
90
|
+
"statusLineGitDirty": "monokaiOrange",
|
|
91
|
+
"statusLineContext": "monokaiPurple",
|
|
92
|
+
"statusLineSpend": "monokaiYellow",
|
|
93
|
+
"statusLineStaged": "monokaiGreen",
|
|
94
|
+
"statusLineDirty": "monokaiOrange",
|
|
95
|
+
"statusLineUntracked": "monokaiCyan",
|
|
96
|
+
"statusLineOutput": "monokaiPink",
|
|
97
|
+
"statusLineCost": "monokaiPink",
|
|
98
|
+
"statusLineSubagents": "monokaiOrange"
|
|
99
|
+
},
|
|
100
|
+
"export": {
|
|
101
|
+
"pageBg": "#1a1b17",
|
|
102
|
+
"cardBg": "#1e1f1c",
|
|
103
|
+
"infoBg": "#3e3d32"
|
|
104
|
+
}
|
|
105
|
+
}
|