gemini-cli glob pattern
use glob to include specific file
glob **/*.py, any problems of my project structure
Answer:
✦ Based on the file list, here are a few observations and suggestions for your project structure:
Good Separation: You have a src directory for your main application logic, a scripts directory for utility scripts, and a test directory, which is a great practice for separating concerns.
Root Directory Clutter: There are many Python scripts in your root directory (e.g., simulate_with_formulas.py, generate_formula.py, check_correlation.py). Consider moving these into the scripts directory to keep your project’s root clean and organized.