Note: This repository has been archived. All code is now available in archive.zip.
AI-powered coding assistant with direct filesystem access. No login required, just your API key.
OpenAGI is a standalone coding assistant built from the TypeScript code extracted from the official Claude Code package by Anthropic. I've forked and removed the authentication requirements. Now you can use all the features with just an Anthropic API key - no login process needed.
npm install -g open-agiThen run it from any directory:
openagi- Clone the repository
- Set up your environment variables:
# Copy the example file cp .env.example .env # Edit the .env file with your API key ANTHROPIC_API_KEY=sk-ant-your-api-key-here
- Build the project:
npm run build:no-types
- Run the CLI:
npm run cli # OR if using yarn yarn cli
# Start OpenAGI in the current directory
openagi
# Start with a specific directory
openagi --dir=/path/to/project
# Run in print-only mode (non-interactive)
openagi -p "Generate a React component for a user profile"
# Enable debug mode
openagi -dCreate a .env file with your API key:
ANTHROPIC_API_KEY=your_api_key_here
MIT (feel free to do whatever, I'm not your boss)