@miphamai/cli 0.5.4 → 0.5.5

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/ui/app.tsx +8 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@miphamai/cli",
3
- "version": "0.5.4",
3
+ "version": "0.5.5",
4
4
  "description": "Mipham Code — Multi-model open-core intelligent coding terminal by MiphamAI",
5
5
  "keywords": [
6
6
  "ai",
package/src/ui/app.tsx CHANGED
@@ -367,6 +367,14 @@ export function App({
367
367
  </Box>
368
368
  )}
369
369
 
370
+ {/* Brand mark — centered header above chat */}
371
+ <Box flexDirection="row" justifyContent="center" marginTop={1}>
372
+ <Text dimColor>╺━</Text>
373
+ <Text color="#FFD700" bold> Mipham Code </Text>
374
+ <Text dimColor>v{VERSION}</Text>
375
+ <Text dimColor> ━╸</Text>
376
+ </Box>
377
+
370
378
  {/* Chat panel */}
371
379
  <ChatPanel messages={messages} focusMode={focusMode} />
372
380