- Overview
- Features
- Quick Start
- Prerequisites
- Installation
- Usage
- Architecture
- Contributing
- License
- Acknowledgments
# Clone and install Penguin
git clone https://github.com/maximooch/penguin.git
cd penguin
# Install Penguin (recommended with UV)
pip install -e .
# Set your API key
cp .env.example .env
# Edit .env with your API key
# Run Penguin
penguin # CLI interface
# OR
penguin-web # Web interface
- ✅ Core functionality
- ✅ Basic CLI interface (penguin)
- ✅ Model integration (LiteLLM, could be better)
- 🚧 Advanced features (in progress)
- 📅 Web interface (penguin-web and Link, planned)
- 📅 Plugin system (planned)
Penguin is a modular, extensible AI coding assistant powered by LLMs, enabling support for multiple AI models thanks to LiteLLM. It functions as an intelligent software engineer that can assist with coding tasks while maintaining its own code execution, memory tools, and workspace environment.
-
Multi-Model Support: Compatible with various AI models through LiteLLM integration
-
Cognitive Architecture:
- Reasoning and response generation system
- Persistent memory and context management
- Tool and action processing capabilities
- Task coordination and project management
- Performance monitoring and diagnostics
-
Development Capabilities:
- Automated task execution and project scaffolding
- Code generation with documentation
- Debugging and problem analysis
- Architectural design recommendations
- File system operations and management
- Web search integration for up-to-date information
- Python 3.10 (recommended) or Python 3.8+
- Valid API key(s) for your chosen AI model provider(s)
- UV package manager (recommended)
- Install UV package manager (if not already installed):
pip install uv
- Clone the repository:
git clone https://github.com/maximooch/penguin.git
cd penguin
- Run the UV setup script:
python uv_setup.py
This will:
- Create a Python 3.10 virtual environment
- Install all dependencies using UV
- Offer to launch Penguin
- Clone the repository:
git clone https://github.com/maximooch/penguin.git
cd penguin
- Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate
# On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
-
Rename
.env.example
to.env
and configure your environment:Then Edit
penguin/.env
with your API key(s)
Start the Penguin AI assistant:
penguin # Start CLI interface
penguin-web # Start Web interface
Play around with Penguin! It's recommended to check out the User Manual, and the Docs for more in depth information to get the most out of Penguin!
To change models, go to the config.yml
file and change the model
field to the model you want to use.
For more information on how to use Penguin, check out the documentation!
Penguin uses a modular architecture with these key systems:
- Core: Central coordinator between systems
- Cognition: Handles reasoning and response generation
- Memory: Manages context and knowledge persistence
- Processor: Controls tools and actions (ToolManager, Parser (ActionManager), and utils)
- Task: Coordinates projects and tasks
- Diagnostic: Monitors performance
- Core acts as coordinator between systems
- Each system has clear responsibilities
- State management through hierarchical state machines
- Event-based communication between modules
- Memory persistence across sessions
- Tool extensibility through plugin architecture
-
Cognition System
- Reasoning and response generation
- Model integration via LiteLLM
- Context management
-
Memory System
- Short-term conversation memory
- Long-term knowledge persistence
- Embeddings and vector storage
-
Processor System
- ToolManager: Central registry and executor for available tools
- ActionExecutor: Parses and routes actions to appropriate handlers
- NotebookExecutor: Handles code execution in IPython environment
-
Task System
- Project and task coordination
- Workspace management
- File operations
-
Diagnostic System
- Performance monitoring
- Error tracking
- System health checks
- Comprehensive type annotations
- Detailed docstrings
- High test coverage (90%+)
- Robust exception handling
- Extensive logging
For detailed technical documentation, visit our docs.
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss proposed changes.
Penguin is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
Key points:
- You must disclose source code when you deploy modified versions
- Changes must be shared under the same license
- Network use counts as distribution
- Include copyright and license notices
For the complete license text, see:
- LICENSE file in this repository
- GNU AGPL v3 official text
Built upon insights from: