kc-beta 0.1.0 → 0.1.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/package.json +1 -1
- package/src/cli/components.js +4 -7
package/package.json
CHANGED
package/src/cli/components.js
CHANGED
|
@@ -43,17 +43,14 @@ export function StatusBar({ sessionId, phase }) {
|
|
|
43
43
|
// --- Welcome banner ---
|
|
44
44
|
|
|
45
45
|
export function WelcomeBanner() {
|
|
46
|
-
return h(Box, { flexDirection: "column", marginBottom: 1 },
|
|
47
|
-
h(
|
|
48
|
-
h(Box, { justifyContent: "center" },
|
|
46
|
+
return h(Box, { flexDirection: "column", marginBottom: 1, borderStyle: "round", borderColor: "gray", paddingLeft: 1, paddingRight: 1 },
|
|
47
|
+
h(Box, null,
|
|
49
48
|
h(Text, { bold: true }, "KC AGENT CLI"),
|
|
50
49
|
h(Text, { dimColor: true }, " (beta)"),
|
|
51
50
|
),
|
|
51
|
+
h(Text, { dimColor: true }, "Hope you never know what KC was."),
|
|
52
52
|
h(Text, null, ""),
|
|
53
|
-
h(Text, { dimColor: true }, "
|
|
54
|
-
h(Text, null, ""),
|
|
55
|
-
h(Text, { dimColor: true }, " Product of Memium"),
|
|
56
|
-
h(Text, { dimColor: true }, " kitchen-engineer42"),
|
|
53
|
+
h(Text, { dimColor: true }, "Product of Memium / kitchen-engineer42"),
|
|
57
54
|
);
|
|
58
55
|
}
|
|
59
56
|
|