gpt-engineer: AI-Powered CLI for Code Generation and Experimentation
This repository profile is provided by osrepos.com, an open source repository discovery platform.
Summary
gpt-engineer is a powerful CLI platform designed for experimenting with AI-driven code generation. It enables users to specify software requirements in natural language, then observes as an AI writes, executes, and refines the code. This tool serves as a precursor to lovable.dev, offering robust capabilities for both new project creation and existing code improvement.
Repository Information
Topics
Click on any tag to explore related repositories
Use at your own risk
OSRepos shares public repositories for knowledge and discovery only. Any installation, execution, configuration, or use of code from these repositories is the user's own responsibility. Always review the repository, source code, dependencies, licenses, and security implications before running or installing anything. OSRepos is not responsible for issues, damages, or losses resulting from third-party repositories.
Introduction
gpt-engineer is a highly popular and innovative CLI platform designed to revolutionize code generation through artificial intelligence. With over 54,935 stars on GitHub, this project empowers developers to experiment with autonomous code generation, acting as a precursor to advanced platforms like lovable.dev. It allows users to describe desired software in natural language, then observes as an AI writes, executes, and refines the code automatically.
While gptengineer.app offers a managed service for web app generation and aider provides a hackable CLI, gpt-engineer remains the original experimentation platform for AI-driven code creation.
Key capabilities include:
- Specifying software requirements using natural language.
- Automated code writing and execution by an AI.
- Iterative improvements to existing code based on AI suggestions.
Installation
Getting started with gpt-engineer is straightforward.
For a stable release:
python -m pip install gpt-engineer
For development purposes:
git clone https://github.com/gpt-engineer-org/gpt-engineer.git
cd gpt-engineer
poetry install
poetry shell
gpt-engineer actively supports Python versions 3.10 to 3.12.
Setting up your API Key:
You will need an OpenAI API key. Choose one of the following methods:
- Environment Variable:
export OPENAI_API_KEY=[your api key] - .env file: Create a
.envfile from.env.templateand add yourOPENAI_API_KEY. - Custom Model: Refer to the official documentation for details on using local, Azure, or other models.
Other ways to run:
- Use Docker.
- Run directly in your browser with GitHub Codespaces.
Examples
gpt-engineer offers versatile usage patterns for both new and existing projects.
Creating new code (default usage):
- Create an empty folder for your project.
- Inside, create a file named
prompt(no extension) and fill it with your instructions. - Run
gpte <project_dir>(e.g.,gpte projects/my-new-project).
Improving existing code:
- Locate a folder with code you wish to improve.
- Create a
promptfile within that folder, detailing your improvement instructions. - Run
gpte <project_dir> -i(e.g.,gpte projects/my-old-project -i).
Benchmarking custom agents:
The bench binary, installed with gpt-engineer, provides an interface for benchmarking your agent implementations against datasets like APPS and MBPP. Check out the template repository for detailed instructions.
Advanced Features:
- Pre Prompts: Customize the AI agent's "identity" by overriding the
prepromptsfolder. - Vision: Provide image inputs (e.g., UX or architecture diagrams) for vision-capable models using the
--image_directoryflag. - Open Source and Local Models: Beyond OpenAI and Anthropic,
gpt-engineersupports open-source models like WizardCoder. See the documentation for setup.
Why Use gpt-engineer?
gpt-engineer stands out as an essential tool for anyone interested in the cutting edge of AI-driven software development. Its ability to translate natural language into functional code significantly accelerates the development process, allowing for rapid prototyping and iterative refinement. The platform's flexibility, supporting both new project generation and improvements to existing codebases, makes it invaluable. Furthermore, its commitment to open-source principles, support for various AI models, and active community contributions ensure it remains a powerful and evolving tool for coding agent builders.
Links
- GitHub Repository: AntonOsika/gpt-engineer
- Official Documentation: gpt-engineer ReadTheDocs
- Discord Community: Join the Discord
- gptengineer.app (Commercial Service): Visit gptengineer.app
Related repositories
Similar repositories that may be relevant next.

PromptBench: A Unified Framework for LLM Evaluation and Robustness
July 1, 2026
PromptBench is a comprehensive Python library designed for the evaluation and understanding of Large Language Models (LLMs). It provides a unified framework for assessing model performance, exploring various prompt engineering techniques, and evaluating robustness against adversarial attacks. This tool empowers researchers to conduct in-depth analyses of LLMs across diverse datasets and models.

EvalPlus: Rigorous Evaluation for LLM-Synthesized Code
June 30, 2026
EvalPlus is a robust framework designed for the rigorous evaluation of code generated by Large Language Models (LLMs). It extends standard benchmarks like HumanEval and MBPP with significantly more tests, offering precise assessment of code correctness and efficiency. This tool is crucial for developers and researchers aiming to thoroughly validate LLM-synthesized code.

AgentEvals: Robust Evaluation Tools for LLM Agent Trajectories
June 30, 2026
AgentEvals is a powerful open-source package from LangChain designed to simplify the evaluation of agentic applications. It provides a collection of ready-made evaluators and utilities, with a particular focus on analyzing agent trajectories, the intermediate steps an agent takes to solve problems. This helps developers understand and improve the reliability and performance of their LLM agents.

no-mistakes: AI-Driven Git Proxy for Flawless Pull Requests
June 30, 2026
no-mistakes is an innovative Git proxy that streamlines the pull request workflow by ensuring code quality before it reaches your remote. It uses an AI-driven validation pipeline in a disposable worktree, automatically applying safe fixes and escalating complex issues for human review. This tool helps developers maintain clean, high-quality codebases and open perfect PRs effortlessly.
Source repository
Open the original repository on GitHub.