MindCLI/
├── src/ # Application source code
│ └── mindcli/ # Main application package
│ ├── main.py # Application entry point
│ ├── config.py # Configuration management
│ ├── ai_engine.py # AI model interaction
│ ├── ui.py # Terminal UI components
│ ├── utils.py # Helper functions
│ │
│ └── assets/ # Application assets
│ ├── MindCLI.ico # Application icon
│ ├── MindCLI.png # Application logo
│ └── MindCLI_HELP.txt # Help documentation
│
├── docs/ # Website Source Code
│ ├── index.html # Website main page
│ ├── style.css # Website styling
│ └── ... # Website assets (images, ico)
│
├── LICENSE.txt # GNU GPL v3 License
├── README.md # Project overview
├── CHANGELOG.md # Version history
├── CONTRIBUTING.md # Contribution guidelines
├── pyproject.toml # Project metadata and build config
├── SECURITY.md # Security Policy
└── requirements.txt # External dependencies
About assets:
Assets (icons and help files) are stored inside the package so the application can find them when run from source or packaged.
About the docs/ folder:
The docs/ folder contains the source code for the project's website. It is not required to run the application locally.
You can access the MindCLI Website from this link: MindCLI Website
To download MindCLI v1.0 follow this link, the software is for Windows OS, for linux use Wine: Download MindCLI v1.0
For macOS
The EXE file is not available. However, the application can be run from source by executing the main.py file, provided that Python and the required dependencies are installed.
Warning
For proper program execution, please read the notes below
Do not delete the .json, .txt files or the Models folder in the program directory; they are required for the program to function correctly.
Follow these steps:
git clone https://github.com/Lorydima/MindCLI.gitpip install -r requirements.txtrun main.pyI do my best to keep this project stable and reliable, but bugs can still happen. If you spot any issues or errors, feel free to open a GitHub issue. Your feedback really helps me improve the project.
Before you use the software please read the GNU GPL v3 license at this link: License


