Skip to content

Commit f38331a

Browse files
committed
feat: add rustlabs.ai branding to topbar, statusbar, and thinking indicator
1 parent 2f4617c commit f38331a

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rustlabs-cli",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "RustLabs CLI - Multi-agent AI orchestration terminal powered by OpenClaw",
55
"main": "dist/index.js",
66
"bin": {

src/ui/layout/StatusBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export default function StatusBar() {
7474
)}
7575
<Text dimColor>{globalHints}</Text>
7676
<Text color={THEME.primary}> | </Text>
77-
<Text dimColor>rustlabs.ai</Text>
77+
<Text bold color={COLORS.orange}>rustlabs.ai</Text>
7878
</Box>
7979
</Box>
8080
);

src/ui/layout/ThreePaneLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ function renderSegs(segs: Seg[]) {
613613
const hidden = lines.length > maxLines;
614614
return (
615615
<Box key={i} flexDirection="column" marginY={0}>
616-
<Text dimColor color="#555555"> ◈ thinking...</Text>
616+
<Text dimColor color="#555555"></Text><Text dimColor color={COLORS.orange}>rustlabs.ai</Text><Text dimColor color="#555555"> · thinking...</Text>
617617
{shown.map((line, li) => (
618618
<Text key={li} dimColor color="#666666"> {line.length > 60 ? line.slice(0, 57) + '...' : line}</Text>
619619
))}
@@ -706,7 +706,7 @@ function StreamingBubble({ state }: { state: StreamState }) {
706706
<Text bold color={COLORS.orange}></Text>
707707
<Text color={COLORS.orange}> {spin}</Text>
708708
<Text dimColor> {state.elapsed.toFixed(1)}s</Text>
709-
<Text dimColor color="#555555"> ◈ thinking...</Text>
709+
<Text dimColor color="#555555"></Text><Text dimColor color={COLORS.orange}>rustlabs.ai</Text><Text dimColor color="#555555"> · thinking...</Text>
710710
</Box>
711711
</Box>
712712
);

src/ui/layout/TopBar.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ export default function TopBar() {
8989
<Text bold color={COLORS.orangeBright}>
9090
█ RUSTLABS
9191
</Text>
92+
<Text color={COLORS.orange}> rustlabs.ai</Text>
9293
<Text color={COLORS.textDim}></Text>
9394

9495
{MODE_TABS.map(({ key, label, shortcut }) => (

0 commit comments

Comments
 (0)