Get AIRIS running in 5 minutes.
# One-liner (Linux/macOS/Termux)
curl -fsSL https://sufiyan-sabeel.github.io/AIRIS-CLI/install.sh | sh
# Or from source
git clone https://github.com/sufiyan-sabeel/AIRIS-CLI.git
cd AIRIS-CLI
npm install --ignore-scripts --no-audit --no-fund
npm run build
npm linkSet an API key for at least one provider:
# Google Gemini (free tier available)
export GEMINI_AAIRIS_KEY="your-key"
# OpenAI
export OPENAI_AAIRIS_KEY="your-key"
# Anthropic
export ANTHROPIC_AAIRIS_KEY="your-key"
# Add to your shell profile for persistence
echo 'export GEMINI_AAIRIS_KEY="your-key"' >> ~/.bashrcairisYou will see the AIRIS welcome screen with:
- Brand information
- Available providers and models
- Quick-start commands
# Ask a question
airis -p "What files are in this directory?"
# Review code
airis -p "Review this project for potential issues"
# Edit a file (with confirmation)
airis -p "Add a comment to the top of package.json"
# Continue your last session
airis --continueWhen AIRIS detects a project directory, it asks whether to trust it:
# Trust the current project
airis trust
# Check trust decisions
airis trust listTrust allows AIRIS to read and edit files in the project. Risky actions always require confirmation.
Start a full development workflow:
airis ship start "Add a help command that shows usage examples"This creates a mission contract, tracks progress through implementation, formatting, testing, and verification, and produces a proof report.
- Read the airis ship Reference for the complete workflow
- See Installation Guide for platform-specific details
- Check the Roadmap for planned features
- Join Discord for help and discussion