Get AGOR running in 5 minutes and experience the power of coordinated AI development.
By the end of this guide, you'll have:
- ✅ AGOR installed and working
- ✅ Your first project bundled
- ✅ An AI agent coordinating your development workflow
- ✅ Understanding of the core concepts
- Python 3.10+ installed
- A development project you want to coordinate
- AI platform access (Google AI Studio recommended)
# Install AGOR (recommended method)
pipx install agor
# Verify installation
agor --version
# Should output: agor, version 0.4.1Don't have pipx? Install it first: pip install pipx
# Navigate to your project
cd /path/to/your/project
# Bundle for Google AI Studio
agor bundle . -f zip
# Or bundle for ChatGPT
agor bundle .
# AGOR creates: your-project-agor-bundle.zip (or .tar.gz)What just happened?
- AGOR analyzed your project structure
- Packaged your code with git history
- Included a portable git binary
- Generated AI instructions
- Created an upload-ready bundle
- Visit Google AI Studio
- Create new chat and enable Function Calling
⚠️ - Upload your .zip bundle
- Copy-paste the generated prompt
- Open ChatGPT
- Upload your .tar.gz bundle
- Copy-paste the generated prompt
This mode is for AI agents that can directly clone Git repositories and execute shell commands (e.g., Jules by Google, Augment Code Remote Agents). The agent first learns the AGOR protocol:
# For AI agents with direct Git access (e.g., Jules by Google, Augment Code)
# Agent typically executes these commands to understand AGOR protocol:
cd /tmp && git clone https://github.com/jeremiah-k/agor.git && cd agor
cat src/agor/tools/README_ai.md && cat src/agor/tools/AGOR_INSTRUCTIONS.md
# Then, the agent would clone and work on your project repository.AGOR will ask you to choose a role. Pick based on what you want to do:
"I want to plan and coordinate development"
- Strategic planning and project breakdown
- Team design and workflow orchestration
- Multi-agent strategy selection
"I want to analyze and work with code"
- Deep codebase analysis and exploration
- Implementation and debugging
- Technical deep-dives
"I'm following instructions from a coordinator"
- Task execution and work snapshots
- Coordination communication
- Status reporting
Once initialized, you'll see a capabilities menu. Try these functions:
# Analyze your codebase
a
# Strategic planning
sp
# Break down project
bp
# Get help anytime
?
Let's walk through a typical coordination session:
1. Type: sp
→ AGOR analyzes your project and creates strategic plan
2. Type: bp
→ Breaks down project into coordinated tasks
3. Type: ss
→ Suggests coordination strategies (Parallel, Pipeline, Swarm, etc.)
4. Type: ct
→ Designs team structure with specialized agents
1. Type: a
→ Comprehensive codebase analysis and exploration
2. Type: f src/main.py
→ Examine specific files
3. Type: grep "function_name"
→ Search across codebase
4. Type: da
→ Generate detailed snapshot for other agents
If you see command simulation instead of execution:
chmod 755 /tmp/agor_tools/git
/tmp/agor_tools/git status
You can change roles by re-initializing:
# Upload fresh bundle
# Select different role
# Continue with new capabilities
Use AGOR's feedback tools to help improve AGOR:
meta
→ Report issues, suggest improvements, share success stories
AGOR automatically manages memory persistence using git branches:
# Memory is automatically synced to dedicated branches
# No manual setup required - works out of the box
# Use standard memory commands:
mem-add # Add memory entries
mem-search # Search across all memoriesNow that you have AGOR running, explore these advanced topics:
- Bundle Mode Guide - Complete platform setup and optimization
- Multi-Agent Strategies - Learn coordination patterns
- Agent Snapshots - Master agent transitions and context management
- Complete AI Protocol - Comprehensive instructions
Something not working?
- Use AGOR's feedback tools to report issues
- Visit GitHub Issues
- Check Bundle Mode Guide for platform-specific help
Want to understand more?
- Read Complete AI Protocol
- Explore Agent Snapshots
- Try Advanced Strategies
Congratulations! 🎉 You've just set up your first AI coordination workflow. Welcome to the future of development!
Ready to dive deeper? Check out the Multi-Agent Strategies to see what's possible. 🚀