@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,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-sunset",
|
|
4
|
+
"vars": {
|
|
5
|
+
"golden": "#FFC345",
|
|
6
|
+
"amber": "#FF9E4A",
|
|
7
|
+
"coral": "#FF785E",
|
|
8
|
+
"deepPurple": "#614E72",
|
|
9
|
+
"twilightBlue": "#214675",
|
|
10
|
+
"violet": "#7C4BE5",
|
|
11
|
+
"magenta": "#A93EB9",
|
|
12
|
+
"deepViolet": "#45046B",
|
|
13
|
+
"warmOrange": "#FA9C32",
|
|
14
|
+
"emberRed": "#E44C1D",
|
|
15
|
+
"softPink": "#FDBAE7",
|
|
16
|
+
"dimViolet": "#5E508D",
|
|
17
|
+
"darkPurple": "#2a1f35",
|
|
18
|
+
"darkestPurple": "#1a1323",
|
|
19
|
+
"accentGlow": "#FF9E4A",
|
|
20
|
+
"horizonGlow": "#FF6B35",
|
|
21
|
+
"duskGray": "#4a4552",
|
|
22
|
+
"twilightGray": "#352f3d"
|
|
23
|
+
},
|
|
24
|
+
"colors": {
|
|
25
|
+
"accent": "accentGlow",
|
|
26
|
+
"border": "deepPurple",
|
|
27
|
+
"borderAccent": "golden",
|
|
28
|
+
"borderMuted": "twilightGray",
|
|
29
|
+
"success": "#89d281",
|
|
30
|
+
"error": "emberRed",
|
|
31
|
+
"warning": "golden",
|
|
32
|
+
"muted": "duskGray",
|
|
33
|
+
"dim": "dimViolet",
|
|
34
|
+
"text": "",
|
|
35
|
+
"thinkingText": "duskGray",
|
|
36
|
+
|
|
37
|
+
"selectedBg": "#2d2436",
|
|
38
|
+
"userMessageBg": "#251a1f",
|
|
39
|
+
"userMessageText": "",
|
|
40
|
+
"customMessageBg": "darkPurple",
|
|
41
|
+
"customMessageText": "",
|
|
42
|
+
"customMessageLabel": "softPink",
|
|
43
|
+
"toolPendingBg": "#1f1a28",
|
|
44
|
+
"toolSuccessBg": "#1a1620",
|
|
45
|
+
"toolErrorBg": "#2a1a1a",
|
|
46
|
+
"toolText": "",
|
|
47
|
+
"toolTitle": "",
|
|
48
|
+
"toolOutput": "duskGray",
|
|
49
|
+
|
|
50
|
+
"mdHeading": "golden",
|
|
51
|
+
"mdLink": "violet",
|
|
52
|
+
"mdLinkUrl": "dimViolet",
|
|
53
|
+
"mdCode": "softPink",
|
|
54
|
+
"mdCodeBlock": "#FFB89E",
|
|
55
|
+
"mdCodeBlockBorder": "twilightGray",
|
|
56
|
+
"mdQuote": "duskGray",
|
|
57
|
+
"mdQuoteBorder": "twilightGray",
|
|
58
|
+
"mdHr": "twilightGray",
|
|
59
|
+
"mdListBullet": "accentGlow",
|
|
60
|
+
|
|
61
|
+
"toolDiffAdded": "#89d281",
|
|
62
|
+
"toolDiffRemoved": "emberRed",
|
|
63
|
+
"toolDiffContext": "duskGray",
|
|
64
|
+
|
|
65
|
+
"link": "violet",
|
|
66
|
+
|
|
67
|
+
"syntaxComment": "#7a6f85",
|
|
68
|
+
"syntaxKeyword": "violet",
|
|
69
|
+
"syntaxFunction": "golden",
|
|
70
|
+
"syntaxVariable": "coral",
|
|
71
|
+
"syntaxString": "warmOrange",
|
|
72
|
+
"syntaxNumber": "#FFB89E",
|
|
73
|
+
"syntaxType": "magenta",
|
|
74
|
+
"syntaxOperator": "#c9bdd0",
|
|
75
|
+
"syntaxPunctuation": "#b3a8ba",
|
|
76
|
+
|
|
77
|
+
"thinkingOff": "twilightGray",
|
|
78
|
+
"thinkingMinimal": "dimViolet",
|
|
79
|
+
"thinkingLow": "deepPurple",
|
|
80
|
+
"thinkingMedium": "violet",
|
|
81
|
+
"thinkingHigh": "magenta",
|
|
82
|
+
"thinkingXhigh": "softPink",
|
|
83
|
+
|
|
84
|
+
"bashMode": "horizonGlow",
|
|
85
|
+
|
|
86
|
+
"statusLineBg": "#0f0a14",
|
|
87
|
+
"statusLineSep": 237,
|
|
88
|
+
"statusLineModel": "softPink",
|
|
89
|
+
"statusLinePath": "twilightBlue",
|
|
90
|
+
"statusLineGitClean": "#89d281",
|
|
91
|
+
"statusLineGitDirty": "amber",
|
|
92
|
+
"statusLineContext": "dimViolet",
|
|
93
|
+
"statusLineSpend": "coral",
|
|
94
|
+
"statusLineStaged": 70,
|
|
95
|
+
"statusLineDirty": 215,
|
|
96
|
+
"statusLineUntracked": 213,
|
|
97
|
+
"statusLineOutput": 205,
|
|
98
|
+
"statusLineCost": 205,
|
|
99
|
+
"statusLineSubagents": "golden"
|
|
100
|
+
},
|
|
101
|
+
"export": {
|
|
102
|
+
"pageBg": "#120d18",
|
|
103
|
+
"cardBg": "#1c1424",
|
|
104
|
+
"infoBg": "#2d1f28"
|
|
105
|
+
}
|
|
106
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-swamp",
|
|
4
|
+
"vars": {
|
|
5
|
+
"murkBlack": "#0B100F",
|
|
6
|
+
"bogGreen": "#111A18",
|
|
7
|
+
"peatGreen": "#182522",
|
|
8
|
+
"mossGray": "#2B3A36",
|
|
9
|
+
"fogGray": "#3B4B46",
|
|
10
|
+
"mossLight": "#8EA59A",
|
|
11
|
+
"dimMoss": "#667A71",
|
|
12
|
+
"fireflyGold": "#F2C35B",
|
|
13
|
+
"algaeGreen": "#4FC48F",
|
|
14
|
+
"swampCyan": "#5FB7A2",
|
|
15
|
+
"errorRed": "#E06B6B"
|
|
16
|
+
},
|
|
17
|
+
"colors": {
|
|
18
|
+
"accent": "fireflyGold",
|
|
19
|
+
"border": "mossGray",
|
|
20
|
+
"borderAccent": "swampCyan",
|
|
21
|
+
"borderMuted": "peatGreen",
|
|
22
|
+
"success": "algaeGreen",
|
|
23
|
+
"error": "errorRed",
|
|
24
|
+
"warning": "fireflyGold",
|
|
25
|
+
"muted": "mossLight",
|
|
26
|
+
"dim": "dimMoss",
|
|
27
|
+
"text": "",
|
|
28
|
+
"thinkingText": "mossLight",
|
|
29
|
+
|
|
30
|
+
"selectedBg": "peatGreen",
|
|
31
|
+
"userMessageBg": "bogGreen",
|
|
32
|
+
"userMessageText": "",
|
|
33
|
+
"customMessageBg": "#14201D",
|
|
34
|
+
"customMessageText": "",
|
|
35
|
+
"customMessageLabel": "fireflyGold",
|
|
36
|
+
"toolPendingBg": "murkBlack",
|
|
37
|
+
"toolSuccessBg": "#0F1714",
|
|
38
|
+
"toolErrorBg": "#221313",
|
|
39
|
+
"toolTitle": "",
|
|
40
|
+
"toolOutput": "mossLight",
|
|
41
|
+
|
|
42
|
+
"mdHeading": "fireflyGold",
|
|
43
|
+
"mdLink": "swampCyan",
|
|
44
|
+
"mdLinkUrl": "dimMoss",
|
|
45
|
+
"mdCode": "swampCyan",
|
|
46
|
+
"mdCodeBlock": "algaeGreen",
|
|
47
|
+
"mdCodeBlockBorder": "mossGray",
|
|
48
|
+
"mdQuote": "mossLight",
|
|
49
|
+
"mdQuoteBorder": "mossGray",
|
|
50
|
+
"mdHr": "peatGreen",
|
|
51
|
+
"mdListBullet": "fireflyGold",
|
|
52
|
+
|
|
53
|
+
"toolDiffAdded": "algaeGreen",
|
|
54
|
+
"toolDiffRemoved": "errorRed",
|
|
55
|
+
"toolDiffContext": "mossLight",
|
|
56
|
+
|
|
57
|
+
"syntaxComment": "dimMoss",
|
|
58
|
+
"syntaxKeyword": "swampCyan",
|
|
59
|
+
"syntaxFunction": "fireflyGold",
|
|
60
|
+
"syntaxVariable": "mossLight",
|
|
61
|
+
"syntaxString": "algaeGreen",
|
|
62
|
+
"syntaxNumber": "fireflyGold",
|
|
63
|
+
"syntaxType": "swampCyan",
|
|
64
|
+
"syntaxOperator": "mossLight",
|
|
65
|
+
"syntaxPunctuation": "mossLight",
|
|
66
|
+
|
|
67
|
+
"thinkingOff": "peatGreen",
|
|
68
|
+
"thinkingMinimal": "dimMoss",
|
|
69
|
+
"thinkingLow": "mossGray",
|
|
70
|
+
"thinkingMedium": "swampCyan",
|
|
71
|
+
"thinkingHigh": "fireflyGold",
|
|
72
|
+
"thinkingXhigh": "algaeGreen",
|
|
73
|
+
|
|
74
|
+
"bashMode": "swampCyan",
|
|
75
|
+
|
|
76
|
+
"statusLineBg": "#080D0C",
|
|
77
|
+
"statusLineSep": "mossGray",
|
|
78
|
+
"statusLineModel": "fireflyGold",
|
|
79
|
+
"statusLinePath": "swampCyan",
|
|
80
|
+
"statusLineGitClean": "algaeGreen",
|
|
81
|
+
"statusLineGitDirty": "fireflyGold",
|
|
82
|
+
"statusLineContext": "mossLight",
|
|
83
|
+
"statusLineSpend": "swampCyan",
|
|
84
|
+
"statusLineStaged": "algaeGreen",
|
|
85
|
+
"statusLineDirty": "fireflyGold",
|
|
86
|
+
"statusLineUntracked": "mossLight",
|
|
87
|
+
"statusLineOutput": "swampCyan",
|
|
88
|
+
"statusLineCost": "fireflyGold",
|
|
89
|
+
"statusLineSubagents": "fireflyGold"
|
|
90
|
+
},
|
|
91
|
+
"export": {
|
|
92
|
+
"pageBg": "#080D0C",
|
|
93
|
+
"cardBg": "#111A18",
|
|
94
|
+
"infoBg": "#182522"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-synthwave",
|
|
4
|
+
"vars": {
|
|
5
|
+
"hotPink": "#ff2975",
|
|
6
|
+
"neonMagenta": "#f222ff",
|
|
7
|
+
"electricPurple": "#8c1eff",
|
|
8
|
+
"cyberPurple": "#8a04ed",
|
|
9
|
+
"darkIndigo": "#240c76",
|
|
10
|
+
"deepPurple": "#5c2c6d",
|
|
11
|
+
"neonCyan": "#00ffff",
|
|
12
|
+
"chrome": "#c0c0c8",
|
|
13
|
+
"chromeDark": "#8b8b95",
|
|
14
|
+
"neonBlue": "#0080ff",
|
|
15
|
+
"neonOrange": "#ff901f",
|
|
16
|
+
"gold": "#ffd319",
|
|
17
|
+
"vaporPink": "#ef9af2",
|
|
18
|
+
"darkBg": "#0c0c0c",
|
|
19
|
+
"darkPurpleBg": "#1a0e2e",
|
|
20
|
+
"deepVioletBg": "#2d1b3d",
|
|
21
|
+
"selectedBg": "#2a1342",
|
|
22
|
+
"userMsgBg": "#1f0c36",
|
|
23
|
+
"toolPendingBg": "#1a0e2e",
|
|
24
|
+
"toolSuccessBg": "#0f1a1f",
|
|
25
|
+
"toolErrorBg": "#2e0a1a",
|
|
26
|
+
"customMsgBg": "#2a1342"
|
|
27
|
+
},
|
|
28
|
+
"colors": {
|
|
29
|
+
"accent": "hotPink",
|
|
30
|
+
"border": "electricPurple",
|
|
31
|
+
"borderAccent": "neonMagenta",
|
|
32
|
+
"borderMuted": "deepPurple",
|
|
33
|
+
"success": "neonCyan",
|
|
34
|
+
"error": "hotPink",
|
|
35
|
+
"warning": "gold",
|
|
36
|
+
"muted": "chromeDark",
|
|
37
|
+
"dim": "deepPurple",
|
|
38
|
+
"text": "",
|
|
39
|
+
"thinkingText": "chromeDark",
|
|
40
|
+
"selectedBg": "selectedBg",
|
|
41
|
+
"userMessageBg": "userMsgBg",
|
|
42
|
+
"userMessageText": "",
|
|
43
|
+
"customMessageBg": "customMsgBg",
|
|
44
|
+
"customMessageText": "",
|
|
45
|
+
"customMessageLabel": "vaporPink",
|
|
46
|
+
"toolPendingBg": "toolPendingBg",
|
|
47
|
+
"toolSuccessBg": "toolSuccessBg",
|
|
48
|
+
"toolErrorBg": "toolErrorBg",
|
|
49
|
+
"toolText": "",
|
|
50
|
+
"toolTitle": "",
|
|
51
|
+
"toolOutput": "chromeDark",
|
|
52
|
+
"mdHeading": "neonMagenta",
|
|
53
|
+
"mdLink": "neonCyan",
|
|
54
|
+
"mdLinkUrl": "deepPurple",
|
|
55
|
+
"mdCode": "vaporPink",
|
|
56
|
+
"mdCodeBlock": "chrome",
|
|
57
|
+
"mdCodeBlockBorder": "electricPurple",
|
|
58
|
+
"mdQuote": "chromeDark",
|
|
59
|
+
"mdQuoteBorder": "deepPurple",
|
|
60
|
+
"mdHr": "electricPurple",
|
|
61
|
+
"mdListBullet": "hotPink",
|
|
62
|
+
"toolDiffAdded": "neonCyan",
|
|
63
|
+
"toolDiffRemoved": "hotPink",
|
|
64
|
+
"toolDiffContext": "chromeDark",
|
|
65
|
+
"link": "neonCyan",
|
|
66
|
+
"syntaxComment": "deepPurple",
|
|
67
|
+
"syntaxKeyword": "neonMagenta",
|
|
68
|
+
"syntaxFunction": "gold",
|
|
69
|
+
"syntaxVariable": "chrome",
|
|
70
|
+
"syntaxString": "neonOrange",
|
|
71
|
+
"syntaxNumber": "vaporPink",
|
|
72
|
+
"syntaxType": "neonCyan",
|
|
73
|
+
"syntaxOperator": "hotPink",
|
|
74
|
+
"syntaxPunctuation": "chrome",
|
|
75
|
+
"thinkingOff": "deepPurple",
|
|
76
|
+
"thinkingMinimal": "chromeDark",
|
|
77
|
+
"thinkingLow": "electricPurple",
|
|
78
|
+
"thinkingMedium": "neonMagenta",
|
|
79
|
+
"thinkingHigh": "hotPink",
|
|
80
|
+
"thinkingXhigh": "neonCyan",
|
|
81
|
+
"bashMode": "neonCyan",
|
|
82
|
+
"statusLineBg": "darkBg",
|
|
83
|
+
"statusLineSep": 240,
|
|
84
|
+
"statusLineModel": "vaporPink",
|
|
85
|
+
"statusLinePath": "neonCyan",
|
|
86
|
+
"statusLineGitClean": "neonCyan",
|
|
87
|
+
"statusLineGitDirty": "neonOrange",
|
|
88
|
+
"statusLineContext": "electricPurple",
|
|
89
|
+
"statusLineSpend": "chrome",
|
|
90
|
+
"statusLineStaged": "neonCyan",
|
|
91
|
+
"statusLineDirty": "neonOrange",
|
|
92
|
+
"statusLineUntracked": "hotPink",
|
|
93
|
+
"statusLineOutput": "neonMagenta",
|
|
94
|
+
"statusLineCost": "vaporPink",
|
|
95
|
+
"statusLineSubagents": "hotPink"
|
|
96
|
+
},
|
|
97
|
+
"export": {
|
|
98
|
+
"pageBg": "#0c0c0c",
|
|
99
|
+
"cardBg": "#1a0e2e",
|
|
100
|
+
"infoBg": "#2a1342"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-taiga",
|
|
4
|
+
"vars": {
|
|
5
|
+
"nightPine": "#0B100D",
|
|
6
|
+
"deepPine": "#121A16",
|
|
7
|
+
"shadowPine": "#1B2620",
|
|
8
|
+
"spruce": "#2A3A31",
|
|
9
|
+
"wolfGray": "#8D9891",
|
|
10
|
+
"dimWolf": "#67726B",
|
|
11
|
+
"snowWhite": "#E7EFE7",
|
|
12
|
+
"auroraGreen": "#6FCE8A",
|
|
13
|
+
"lichenGreen": "#8DBB7F",
|
|
14
|
+
"frostBlue": "#7FB7C9",
|
|
15
|
+
"emberAmber": "#D8B15A",
|
|
16
|
+
"errorRed": "#E06A6A"
|
|
17
|
+
},
|
|
18
|
+
"colors": {
|
|
19
|
+
"accent": "frostBlue",
|
|
20
|
+
"border": "spruce",
|
|
21
|
+
"borderAccent": "snowWhite",
|
|
22
|
+
"borderMuted": "shadowPine",
|
|
23
|
+
"success": "lichenGreen",
|
|
24
|
+
"error": "errorRed",
|
|
25
|
+
"warning": "emberAmber",
|
|
26
|
+
"muted": "wolfGray",
|
|
27
|
+
"dim": "dimWolf",
|
|
28
|
+
"text": "",
|
|
29
|
+
"thinkingText": "wolfGray",
|
|
30
|
+
|
|
31
|
+
"selectedBg": "shadowPine",
|
|
32
|
+
"userMessageBg": "deepPine",
|
|
33
|
+
"userMessageText": "",
|
|
34
|
+
"customMessageBg": "#18221D",
|
|
35
|
+
"customMessageText": "",
|
|
36
|
+
"customMessageLabel": "snowWhite",
|
|
37
|
+
"toolPendingBg": "nightPine",
|
|
38
|
+
"toolSuccessBg": "#101C16",
|
|
39
|
+
"toolErrorBg": "#201313",
|
|
40
|
+
"toolTitle": "",
|
|
41
|
+
"toolOutput": "wolfGray",
|
|
42
|
+
|
|
43
|
+
"mdHeading": "snowWhite",
|
|
44
|
+
"mdLink": "frostBlue",
|
|
45
|
+
"mdLinkUrl": "dimWolf",
|
|
46
|
+
"mdCode": "snowWhite",
|
|
47
|
+
"mdCodeBlock": "auroraGreen",
|
|
48
|
+
"mdCodeBlockBorder": "spruce",
|
|
49
|
+
"mdQuote": "wolfGray",
|
|
50
|
+
"mdQuoteBorder": "spruce",
|
|
51
|
+
"mdHr": "shadowPine",
|
|
52
|
+
"mdListBullet": "auroraGreen",
|
|
53
|
+
|
|
54
|
+
"toolDiffAdded": "lichenGreen",
|
|
55
|
+
"toolDiffRemoved": "errorRed",
|
|
56
|
+
"toolDiffContext": "wolfGray",
|
|
57
|
+
|
|
58
|
+
"syntaxComment": "dimWolf",
|
|
59
|
+
"syntaxKeyword": "frostBlue",
|
|
60
|
+
"syntaxFunction": "emberAmber",
|
|
61
|
+
"syntaxVariable": "snowWhite",
|
|
62
|
+
"syntaxString": "auroraGreen",
|
|
63
|
+
"syntaxNumber": "lichenGreen",
|
|
64
|
+
"syntaxType": "frostBlue",
|
|
65
|
+
"syntaxOperator": "wolfGray",
|
|
66
|
+
"syntaxPunctuation": "wolfGray",
|
|
67
|
+
|
|
68
|
+
"thinkingOff": "shadowPine",
|
|
69
|
+
"thinkingMinimal": "dimWolf",
|
|
70
|
+
"thinkingLow": "spruce",
|
|
71
|
+
"thinkingMedium": "frostBlue",
|
|
72
|
+
"thinkingHigh": "auroraGreen",
|
|
73
|
+
"thinkingXhigh": "snowWhite",
|
|
74
|
+
|
|
75
|
+
"bashMode": "auroraGreen",
|
|
76
|
+
|
|
77
|
+
"statusLineBg": "#080C0A",
|
|
78
|
+
"statusLineSep": "spruce",
|
|
79
|
+
"statusLineModel": "snowWhite",
|
|
80
|
+
"statusLinePath": "frostBlue",
|
|
81
|
+
"statusLineGitClean": "lichenGreen",
|
|
82
|
+
"statusLineGitDirty": "emberAmber",
|
|
83
|
+
"statusLineContext": "wolfGray",
|
|
84
|
+
"statusLineSpend": "auroraGreen",
|
|
85
|
+
"statusLineStaged": "lichenGreen",
|
|
86
|
+
"statusLineDirty": "emberAmber",
|
|
87
|
+
"statusLineUntracked": "snowWhite",
|
|
88
|
+
"statusLineOutput": "frostBlue",
|
|
89
|
+
"statusLineCost": "emberAmber",
|
|
90
|
+
"statusLineSubagents": "auroraGreen"
|
|
91
|
+
},
|
|
92
|
+
"export": {
|
|
93
|
+
"pageBg": "#080C0A",
|
|
94
|
+
"cardBg": "#121A16",
|
|
95
|
+
"infoBg": "#1B2620"
|
|
96
|
+
}
|
|
97
|
+
}
|
|
@@ -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-terminal",
|
|
4
|
+
"vars": {
|
|
5
|
+
"cyan": "#00ffcc",
|
|
6
|
+
"blue": "#00aaff",
|
|
7
|
+
"green": "#00ff00",
|
|
8
|
+
"red": "#ff0000",
|
|
9
|
+
"yellow": "#ffff00",
|
|
10
|
+
"gray": "#cccccc",
|
|
11
|
+
"dimGray": "#666666",
|
|
12
|
+
"darkGray": "#333333",
|
|
13
|
+
"accent": "#00ff00",
|
|
14
|
+
"selectedBg": "#111111",
|
|
15
|
+
"userMsgBg": "#050505",
|
|
16
|
+
"toolPendingBg": "#0a0a0a",
|
|
17
|
+
"toolSuccessBg": "#001100",
|
|
18
|
+
"toolErrorBg": "#110000",
|
|
19
|
+
"customMsgBg": "#080808"
|
|
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": "#00ff00",
|
|
45
|
+
"mdLink": "#00aaff",
|
|
46
|
+
"mdLinkUrl": "dimGray",
|
|
47
|
+
"mdCode": "#00cc00",
|
|
48
|
+
"mdCodeBlock": "#00aa00",
|
|
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": "#00aaff",
|
|
58
|
+
"syntaxComment": "#cccccc",
|
|
59
|
+
"syntaxKeyword": "#00aaff",
|
|
60
|
+
"syntaxFunction": "#ffff00",
|
|
61
|
+
"syntaxVariable": "#00ffcc",
|
|
62
|
+
"syntaxString": "#ff0000",
|
|
63
|
+
"syntaxNumber": "#00ff00",
|
|
64
|
+
"syntaxType": "#00ff00",
|
|
65
|
+
"syntaxOperator": "#666666",
|
|
66
|
+
"syntaxPunctuation": "#666666",
|
|
67
|
+
"thinkingOff": "darkGray",
|
|
68
|
+
"thinkingMinimal": "dimGray",
|
|
69
|
+
"thinkingLow": "blue",
|
|
70
|
+
"thinkingMedium": "cyan",
|
|
71
|
+
"thinkingHigh": "accent",
|
|
72
|
+
"thinkingXhigh": "red",
|
|
73
|
+
"bashMode": "accent",
|
|
74
|
+
"statusLineBg": "#111111",
|
|
75
|
+
"statusLineSep": "#666666",
|
|
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": "#050505",
|
|
91
|
+
"cardBg": "#0a0a0a",
|
|
92
|
+
"infoBg": "#001100"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/can1357/oh-my-pi/main/packages/coding-agent/theme-schema.json",
|
|
3
|
+
"name": "dark-tokyo-night",
|
|
4
|
+
"vars": {
|
|
5
|
+
"bg": "#1a1b26",
|
|
6
|
+
"bgDark": "#16161e",
|
|
7
|
+
"fg": "#a9b1d6",
|
|
8
|
+
"comment": "#51597d",
|
|
9
|
+
"cyan": "#7dcfff",
|
|
10
|
+
"blue": "#7aa2f7",
|
|
11
|
+
"purple": "#bb9af7",
|
|
12
|
+
"magenta": "#bb9af7",
|
|
13
|
+
"green": "#9ece6a",
|
|
14
|
+
"teal": "#73daca",
|
|
15
|
+
"darkTeal": "#2ac3de",
|
|
16
|
+
"orange": "#ff9e64",
|
|
17
|
+
"yellow": "#e0af68",
|
|
18
|
+
"red": "#f7768e",
|
|
19
|
+
"darkRed": "#db4b4b",
|
|
20
|
+
"gray": "#363b54",
|
|
21
|
+
"dimGray": "#51597d",
|
|
22
|
+
"lightBlue": "#c0caf5",
|
|
23
|
+
"cyan2": "#0db9d7",
|
|
24
|
+
"statusBg": "#0f1019",
|
|
25
|
+
"selectedBg": "#2a2f41"
|
|
26
|
+
},
|
|
27
|
+
"colors": {
|
|
28
|
+
"accent": "purple",
|
|
29
|
+
"border": "blue",
|
|
30
|
+
"borderAccent": "cyan",
|
|
31
|
+
"borderMuted": "gray",
|
|
32
|
+
"success": "green",
|
|
33
|
+
"error": "darkRed",
|
|
34
|
+
"warning": "yellow",
|
|
35
|
+
"muted": "comment",
|
|
36
|
+
"dim": "dimGray",
|
|
37
|
+
"text": "",
|
|
38
|
+
"thinkingText": "dimGray",
|
|
39
|
+
|
|
40
|
+
"selectedBg": "selectedBg",
|
|
41
|
+
"userMessageBg": "bgDark",
|
|
42
|
+
"userMessageText": "",
|
|
43
|
+
"customMessageBg": "#221d2e",
|
|
44
|
+
"customMessageText": "",
|
|
45
|
+
"customMessageLabel": "purple",
|
|
46
|
+
"toolPendingBg": "#1a1e2e",
|
|
47
|
+
"toolSuccessBg": "#16191f",
|
|
48
|
+
"toolErrorBg": "#291d1d",
|
|
49
|
+
"toolTitle": "purple",
|
|
50
|
+
"toolOutput": "dimGray",
|
|
51
|
+
|
|
52
|
+
"mdHeading": "purple",
|
|
53
|
+
"mdLink": "cyan",
|
|
54
|
+
"mdLinkUrl": "dimGray",
|
|
55
|
+
"mdCode": "lightBlue",
|
|
56
|
+
"mdCodeBlock": "fg",
|
|
57
|
+
"mdCodeBlockBorder": "gray",
|
|
58
|
+
"mdQuote": "comment",
|
|
59
|
+
"mdQuoteBorder": "gray",
|
|
60
|
+
"mdHr": "gray",
|
|
61
|
+
"mdListBullet": "cyan",
|
|
62
|
+
|
|
63
|
+
"toolDiffAdded": "green",
|
|
64
|
+
"toolDiffRemoved": "red",
|
|
65
|
+
"toolDiffContext": "comment",
|
|
66
|
+
|
|
67
|
+
"link": "cyan",
|
|
68
|
+
|
|
69
|
+
"syntaxComment": "comment",
|
|
70
|
+
"syntaxKeyword": "purple",
|
|
71
|
+
"syntaxFunction": "blue",
|
|
72
|
+
"syntaxVariable": "lightBlue",
|
|
73
|
+
"syntaxString": "green",
|
|
74
|
+
"syntaxNumber": "orange",
|
|
75
|
+
"syntaxType": "cyan2",
|
|
76
|
+
"syntaxOperator": "fg",
|
|
77
|
+
"syntaxPunctuation": "fg",
|
|
78
|
+
|
|
79
|
+
"thinkingOff": "gray",
|
|
80
|
+
"thinkingMinimal": "dimGray",
|
|
81
|
+
"thinkingLow": "blue",
|
|
82
|
+
"thinkingMedium": "cyan",
|
|
83
|
+
"thinkingHigh": "purple",
|
|
84
|
+
"thinkingXhigh": "#c9a0ff",
|
|
85
|
+
|
|
86
|
+
"bashMode": "cyan",
|
|
87
|
+
|
|
88
|
+
"statusLineBg": "statusBg",
|
|
89
|
+
"statusLineSep": 238,
|
|
90
|
+
"statusLineModel": "purple",
|
|
91
|
+
"statusLinePath": "cyan",
|
|
92
|
+
"statusLineGitClean": "green",
|
|
93
|
+
"statusLineGitDirty": "yellow",
|
|
94
|
+
"statusLineContext": "blue",
|
|
95
|
+
"statusLineSpend": "teal",
|
|
96
|
+
"statusLineStaged": 70,
|
|
97
|
+
"statusLineDirty": 178,
|
|
98
|
+
"statusLineUntracked": 39,
|
|
99
|
+
"statusLineOutput": 205,
|
|
100
|
+
"statusLineCost": 205,
|
|
101
|
+
"statusLineSubagents": "orange"
|
|
102
|
+
},
|
|
103
|
+
"export": {
|
|
104
|
+
"pageBg": "#16161e",
|
|
105
|
+
"cardBg": "#1a1b26",
|
|
106
|
+
"infoBg": "#2a2639"
|
|
107
|
+
}
|
|
108
|
+
}
|