/** * @license * Copyright 2026 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type React from 'react'; import { Box, Text } from 'ink'; import { theme } from '../semantic-colors.js'; import { type Config } from '@google/gemini-cli-core'; interface TipsProps { config: Config; } export const Tips: React.FC = ({ config }) => { const geminiMdFileCount = config.getGeminiMdFileCount(); return ( Tips for getting started: {geminiMdFileCount === 0 && ( 1. Create GEMINI.md files to customize your interactions )} {geminiMdFileCount === 0 ? '2.' : '1.'}{' '} /help for more information {geminiMdFileCount === 0 ? '3.' : '2.'} Ask coding questions, edit code or run commands {geminiMdFileCount === 0 ? '4.' : '3.'} Be specific for the best results ); };