Frequently Asked Questions
Common questions about Kollabor. Can't find what you're looking for? Check our GitHub issues
General
Kollabor is a terminal-based AI chat interface for developers. It provides a fast, keyboard-driven way to interact with LLMs like GPT-4, Claude, and others directly from your terminal. It features plugin support, slash commands, conversation history, and tools/function calling capabilities.
Kollab CLI is open source and free to use. However, you'll need your own API keys for LLM providers (OpenAI, Anthropic, etc.), which have their own pricing. Kowork is also free and open source.
Kollab CLI is a terminal-based interface optimized for developers who want to stay in their workflow. It features keyboard-driven interaction, plugin extensibility, and Git integration.
Kowork is a desktop application with a visual interface, better suited for creative work, content creation, and users who prefer a GUI over the terminal. It includes built-in voice capture powered by local Whisper transcription.
Usage
Kollabor supports most OpenAI-compatible APIs, including:
- OpenAI (GPT-4, GPT-3.5)
- Anthropic Claude (via API)
- Local models via Ollama
- Any OpenAI-compatible endpoint
Configure your model in ~/.kollabor-cli/config.json.
Yes! Kollabor can read your project files and provide context-aware assistance. Use the <trender> tags in your system prompt to dynamically inject project structure, file contents, and metadata into your conversations.
For full offline capability, configure Kollabor to use local models via Ollama. This allows you to run models like Llama 2, Mistral, or CodeLlama entirely on your machine without internet access.
brew install ollamaollama pull codellamaTechnical
Create a Python file in ~/.kollabor-cli/plugins/ that extends BasePlugin:
from core.plugins import BasePlugin
class MyPlugin(BasePlugin):
name = "my_plugin"
def register_hooks(self):
self.register_hook('pre_user_input', self.on_input)
async def on_input(self, context):
# Your logic here
return context- Python 3.12 or higher
- 100MB free disk space
- Terminal with ANSI color support (most modern terminals)
- For Windows: Windows Terminal recommended
Check the log file at ~/.kollabor-cli/logs/kollabor.log for error messages. Common issues:
- API key errors: Verify your
OPENAI_API_KEYenvironment variable is set - Connection errors: Check your internet connection and API endpoint
- Display issues: Ensure your terminal supports ANSI colors
Contributing
We welcome contributions! Here's how to get started:
- Fork the repository on GitHub
- Create a branch for your feature (
git checkout -b feature/my-feature) - Make your changes and add tests
- Submit a pull request with a description
See our contributing guide for details.
Kollab CLI is released under the MIT License, which means you're free to use, modify, and distribute it in your own projects. See the LICENSE file for details.
Still have questions?
We're here to help. Reach out through any of these channels: