/** * @license * Copyright 2025 Vybestack LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import { Box, Text } from 'ink'; import { Colors } from '../colors.js'; import type { MemoryState } from '../cliUiRuntime.js'; interface TipsProps { memory: MemoryState; } export const Tips: React.FC = ({ memory }) => { const llxprtMdFileCount = memory.getLlxprtMdFileCount(); return ( Tips for getting started: 1. Ask questions, edit files, or run commands. 2. Be specific for the best results. {llxprtMdFileCount === 0 && ( 3. Create{' '} LLXPRT.md {' '} files to customize your interactions with Gemini. )} {llxprtMdFileCount === 0 ? '4.' : '3.'}{' '} /help {' '} for more information. ); };