@oh-my-pi/pi-coding-agent 3.6.1337 → 3.9.1337

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.
@@ -79,19 +79,19 @@
79
79
 
80
80
  "bashMode": "cyan",
81
81
 
82
- "footerIcon": 39,
83
- "footerSep": 244,
84
- "footerModel": 255,
85
- "footerPath": 39,
86
- "footerBranch": 76,
87
- "footerStaged": 70,
88
- "footerDirty": 178,
89
- "footerUntracked": 39,
90
- "footerInput": 76,
91
- "footerOutput": 205,
92
- "footerCacheRead": 76,
93
- "footerCacheWrite": 76,
94
- "footerCost": 205
82
+ "statusLineBg": "#121212",
83
+ "statusLineSep": 244,
84
+ "statusLineModel": "#d787af",
85
+ "statusLinePath": "#00afaf",
86
+ "statusLineGitClean": "#5faf5f",
87
+ "statusLineGitDirty": "#d7af5f",
88
+ "statusLineContext": "#8787af",
89
+ "statusLineSpend": "#5fafaf",
90
+ "statusLineStaged": 70,
91
+ "statusLineDirty": 178,
92
+ "statusLineUntracked": 39,
93
+ "statusLineOutput": 205,
94
+ "statusLineCost": 205
95
95
  },
96
96
  "export": {
97
97
  "pageBg": "#18181e",
@@ -76,19 +76,19 @@
76
76
 
77
77
  "bashMode": "green",
78
78
 
79
- "footerIcon": 31,
80
- "footerSep": 246,
81
- "footerModel": 236,
82
- "footerPath": 31,
83
- "footerBranch": 28,
84
- "footerStaged": 28,
85
- "footerDirty": 136,
86
- "footerUntracked": 31,
87
- "footerInput": 28,
88
- "footerOutput": 133,
89
- "footerCacheRead": 28,
90
- "footerCacheWrite": 28,
91
- "footerCost": 133
79
+ "statusLineBg": "#e0e0e0",
80
+ "statusLineSep": "#808080",
81
+ "statusLineModel": "#875f87",
82
+ "statusLinePath": "#005f87",
83
+ "statusLineGitClean": "#005f00",
84
+ "statusLineGitDirty": "#af5f00",
85
+ "statusLineContext": "#5f5f87",
86
+ "statusLineSpend": "#005f5f",
87
+ "statusLineStaged": 28,
88
+ "statusLineDirty": 136,
89
+ "statusLineUntracked": 31,
90
+ "statusLineOutput": 133,
91
+ "statusLineCost": 133
92
92
  },
93
93
  "export": {
94
94
  "pageBg": "#f8f8f8",
@@ -85,20 +85,20 @@ const ThemeJsonSchema = Type.Object({
85
85
  thinkingXhigh: ColorValueSchema,
86
86
  // Bash Mode (1 color)
87
87
  bashMode: ColorValueSchema,
88
- // Footer Status Line (10 colors)
89
- footerIcon: ColorValueSchema,
90
- footerSep: ColorValueSchema,
91
- footerModel: ColorValueSchema,
92
- footerPath: ColorValueSchema,
93
- footerBranch: ColorValueSchema,
94
- footerStaged: ColorValueSchema,
95
- footerDirty: ColorValueSchema,
96
- footerUntracked: ColorValueSchema,
97
- footerInput: ColorValueSchema,
98
- footerOutput: ColorValueSchema,
99
- footerCacheRead: ColorValueSchema,
100
- footerCacheWrite: ColorValueSchema,
101
- footerCost: ColorValueSchema,
88
+ // Footer Status Line
89
+ statusLineBg: ColorValueSchema,
90
+ statusLineSep: ColorValueSchema,
91
+ statusLineModel: ColorValueSchema,
92
+ statusLinePath: ColorValueSchema,
93
+ statusLineGitClean: ColorValueSchema,
94
+ statusLineGitDirty: ColorValueSchema,
95
+ statusLineContext: ColorValueSchema,
96
+ statusLineSpend: ColorValueSchema,
97
+ statusLineStaged: ColorValueSchema,
98
+ statusLineDirty: ColorValueSchema,
99
+ statusLineUntracked: ColorValueSchema,
100
+ statusLineOutput: ColorValueSchema,
101
+ statusLineCost: ColorValueSchema,
102
102
  }),
103
103
  export: Type.Optional(
104
104
  Type.Object({
@@ -160,19 +160,18 @@ export type ThemeColor =
160
160
  | "thinkingHigh"
161
161
  | "thinkingXhigh"
162
162
  | "bashMode"
163
- | "footerIcon"
164
- | "footerSep"
165
- | "footerModel"
166
- | "footerPath"
167
- | "footerBranch"
168
- | "footerStaged"
169
- | "footerDirty"
170
- | "footerUntracked"
171
- | "footerInput"
172
- | "footerOutput"
173
- | "footerCacheRead"
174
- | "footerCacheWrite"
175
- | "footerCost";
163
+ | "statusLineSep"
164
+ | "statusLineModel"
165
+ | "statusLinePath"
166
+ | "statusLineGitClean"
167
+ | "statusLineGitDirty"
168
+ | "statusLineContext"
169
+ | "statusLineSpend"
170
+ | "statusLineStaged"
171
+ | "statusLineDirty"
172
+ | "statusLineUntracked"
173
+ | "statusLineOutput"
174
+ | "statusLineCost";
176
175
 
177
176
  export type ThemeBg =
178
177
  | "selectedBg"
@@ -180,7 +179,8 @@ export type ThemeBg =
180
179
  | "customMessageBg"
181
180
  | "toolPendingBg"
182
181
  | "toolSuccessBg"
183
- | "toolErrorBg";
182
+ | "toolErrorBg"
183
+ | "statusLineBg";
184
184
 
185
185
  type ColorMode = "truecolor" | "256color";
186
186
 
@@ -536,6 +536,7 @@ function createTheme(themeJson: ThemeJson, mode?: ColorMode): Theme {
536
536
  "toolPendingBg",
537
537
  "toolSuccessBg",
538
538
  "toolErrorBg",
539
+ "statusLineBg",
539
540
  ]);
540
541
  for (const [key, value] of Object.entries(resolvedColors)) {
541
542
  if (bgColorKeys.has(key)) {