CodeZ CLI โ Your Offline Code Companion
Project description
๐ค CodeZ CLI โ Your Supercharged Offline Coding Buddy! ๐
Ever wished you had a coding assistant right in your terminal, one that respects your privacy and works offline? Meet CodeZ CLI! ๐ It's a friendly, conversational code companion powered by local Large Language Models (LLMs) through Ollama, all jazzed up with slick Rich terminal visuals.
Whether you're learning a new language, need a quick code snippet, or want to understand complex code, CodeZ is here to help you out, right from your command line!
โจ Awesome Features โจ
- ๐ฃ๏ธ Conversational REPL: Chat with your code and get context-aware responses.
- โก Lightning Fast: Instant interruption (ESC) and a super responsive UI.
- โ๏ธ Smart Autocompletion: For commands and file paths, making typing a breeze.
- ๐พ Session Savvy: Save your chats and resume them later. Never lose a brilliant thought!
- ๐ File Explorer: Read and display code or any file with beautiful syntax highlighting.
- ๐ Rich & Beautiful: Enjoy gorgeous markdown, code rendering, and panels in your terminal.
- ์
ธ Shell Power: Run shell commands directly with
!(e.g.,!ls -la). - ๐ Web-Savvy (Optional): Enable a web search tool to pull in external knowledge.
- ๐ง Code Analysis (Swift/C): Uses
tree-sitterfor deeper insights into Swift and C codebases (requires a small helper library).
๐ Getting Started: Your First Chat in Minutes! ๐
Ready to team up with CodeZ? Hereโs how:
Step 1: Get Your Local LLM Brain ๐ง (Install Ollama)
CodeZ CLI uses Ollama to run powerful language models locally on your machine. This means your code and conversations stay private!
- Head over to ollama.com/download and install it for your operating system (macOS, Linux, Windows).
- Once installed, pull your favorite model. We recommend starting with one like
llama3ormistral:ollama pull llama3
(Make sure Ollama is running after installation!)
Step 2: Install CodeZ CLI ๐ป
This is as easy as pie! ๐ฅง
pip install codez-cli
-
For macOS users: If you see an error about an "externally managed environment," it's best to use a virtual environment:
python3 -m venv ~/codez-venv source ~/codez-venv/bin/activate pip install codez-cli
-
What about
tree-sitterandios_lang.so?- The
pip installcommand automatically installstree-sitter, a cool library CodeZ uses for advanced code parsing. - For enhanced understanding of Swift and C code, CodeZ uses a special helper library (
ios_lang.so).- For most users: The core features of CodeZ work perfectly without this. If this specific library isn't pre-built for your system yet, you'll still have a fantastic experience! We're working on making this seamless.
- For developers: If you want to enable this or contribute, you can build it easily! (See the "For Developers ๐ค" section below).
- The
๐ฌ Let's Chat! - Using CodeZ CLI ๐ฌ
You're all set! Time to start your first conversation:
Launch CodeZ:
Just type this in your terminal:
codez
You should see a friendly welcome message! Now, just type your questions or commands.
Essential Commands (Your Chat Toolkit):
- Ask anything: Just type your question and press Enter.
>>> How do I write a "Hello, World!" in Python? - Read a file: Get CodeZ to read a file for you.
>>> /read path/to/your/file.py - End your chat: Ready to wrap up?
(This saves your conversation to the>>> /enditsessions/directory in your project root โ how cool is that?!) - Clear the screen: Need a fresh slate?
>>> /clear # or just 'clr' - Choose your LLM: See available models or switch to a new one.
>>> /models >>> /model -u current_model new_model - Toggle tools: Enable or disable features like web search.
>>> /tools - Run shell commands: Access your system shell.
>>> !ls -l >>> !git status - Need help? A handy reminder of commands.
>>> /helpme
Quick Example:
>>> What's the syntax for a for-loop in JavaScript?
๐ค CodeZ: [Provides a clear explanation and example]
>>> /read ./my_script.js
๐ค CodeZ: [Displays your script with syntax highlighting] Okay, I've read my_script.js. What would you like to do with it?
>>> Can you explain the main function in this script?
๐ค CodeZ: [Analyzes and explains]
>>> /endit
๐ช Superpowers (Advanced Features) ๐ช
- ๐ง Contextual Memory: CodeZ remembers your conversation (within a configurable token budget) to give you smarter, more relevant answers over time. Oldest parts of the chat are gracefully trimmed if needed.
- Set your token budget via the
CODEZ_MAX_TOKEN_BUDGETenvironment variable or in the config. - Stateless mode is also available:
codez --no-memory
- Set your token budget via the
- ๐๏ธ Session Management: Your conversations are automatically saved! You can even load previous sessions to pick up where you left off or provide more context.
- Session files live in the
sessions/directory (usually in your project's root, or where you runcodez).
- Session files live in the
- โ๏ธ Configuration: CodeZ stores its settings (like your preferred model) in a user-friendly location:
- macOS/Linux:
~/.config/codez/config.json - Windows:
%APPDATA%\codez\config.json(Thanks to the platformdirs library!)
- macOS/Linux:
โ Requirements Checklist โ
- Python 3.8 or newer
- Ollama installed and running with at least one model (e.g.,
ollama pull llama3) - The Python packages
rich,prompt_toolkit,platformdirs, andtree-sitter(these are installed automatically when youpip install codez-cli).
๐ค For Developers & Contributors ๐ค
Want to peek under the hood, add new features, or fix a bug? Awesome!
Setting Up Your Dev Environment:
- Clone the repo:
git clone https://github.com/sam43/code-z-cli.git cd code-z-cli
- Create a virtual environment (recommended):
python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies (including dev tools):
pip install -r requirements.txt # For editable mode, if you plan to make changes to CodeZ itself: pip install -e .
- Build the
ios_lang.so(for Swift/C parsing): This step is needed if you want to work on or test the Swift/C advanced parsing features. It requires a C compiler.python build_language_lib.pyThis will createbuild/ios_lang.so. The app looks for it at./build/ios_lang.sorelative to wherecore/parser.pyis.
Running from Source:
After setup, you can run CodeZ directly:
python -m codechat
# or
python __main__.py
Running Tests:
We use pytest for testing.
# Install pytest if you haven't already (it's in requirements.txt)
# pip install pytest
pytest
# or for more verbose output / specific tests:
PYTHONPATH=. pytest -s tests/core/test_llm_interactive.py
Project Structure Overview:
code-z-cli/
โโโ codechat/ # Main application package
โ โโโ __main__.py # Main entry point for `python -m codechat`
โ โโโ interface/ # CLI interface logic
โ โโโ domain/ # Core domain models (e.g., conversation)
โ โโโ data/ # Data handling (e.g., session repository)
โ โโโ docs/ # Contains TECHNICAL.md
โโโ core/ # Core logic (LLM interaction, parsing, REPL)
โ โโโ model.py # LLM interaction via Ollama
โ โโโ parser.py # Code parsing (uses tree-sitter)
โ โโโ repl.py # REPL implementation (though CLI() is now the entry)
โ โโโ ...
โโโ build/ # Output for compiled libraries like ios_lang.so
โโโ sessions/ # Stores user conversation sessions (created at runtime)
โโโ vendor/ # tree-sitter language grammars (used by build_language_lib.py)
โโโ tests/ # Unit tests
โโโ build_language_lib.py # Script to build the tree-sitter language library
โโโ setup.py # Packaging script
โโโ pyproject.toml # Modern Python packaging configuration
โโโ requirements.txt # Development dependencies
โโโ README.md # This awesome file!
โโโ LICENSE # Apache 2.0 License
- Note on packaging:
venv/,sessions/, andbuild/directories should not be included in the distributed PyPI package.vendor/is needed to buildios_lang.sobut isn't strictly a runtime dependency for the app ifios_lang.sois pre-built.
Want to dive deeper?
Check out the Technical Documentation for more architectural insights!
๐ค Join the Adventure! (Contributing) ๐ค
CodeZ CLI is an open-source project, and we welcome contributions of all kinds! Whether it's reporting a bug, suggesting a feature, improving documentation, or writing code, your help is appreciated.
- Issues: Found a bug or have an idea? Open an issue!
- Pull Requests: Got a fix or a new feature? Submit a Pull Request!
Let's make CodeZ CLI even more amazing together!
๐ License ๐
CodeZ CLI is licensed under the Apache 2.0 License. See the LICENSE file for details.
Happy Coding with your new AI buddy! If you love CodeZ, don't forget to โญ the repo!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codez_cli-0.2.0.tar.gz.
File metadata
- Download URL: codez_cli-0.2.0.tar.gz
- Upload date:
- Size: 24.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8301a3c87489c529fd56bcb4e558577d5dd07ed76a3cd3f90ebec44636c9e838
|
|
| MD5 |
ce92da05e2c5d23b21be74914c68eb03
|
|
| BLAKE2b-256 |
646af2d873380f8814591baaf9ad6d9bae5b76464260d0378e707327c22d764a
|
File details
Details for the file codez_cli-0.2.0-py3-none-any.whl.
File metadata
- Download URL: codez_cli-0.2.0-py3-none-any.whl
- Upload date:
- Size: 27.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fe791a3b451461bad8d4ee6988bf2ac801b6ac092c273f856e60f0721c16838
|
|
| MD5 |
4f4b62acfdbe7042a22d41744b08f9de
|
|
| BLAKE2b-256 |
df9f279f3dcb8a48bca1be81bdbc3e5a36477f37318b418d5188595b281b9d96
|