# One-liner: Run from your project directory
curl -fsSL https://raw.githubusercontent.com/openSVM/aea/main/install.sh | bashDone! ✅
Note: Requires bash. For POSIX sh, use manual install (see README.md).
# Check for messages
bash .aea/aea.sh check
# Send a message
bash .aea/scripts/aea-send.sh \
--to other-agent \
--type question \
--subject "Quick question" \
--message "How do I...?"
# Set up global 'a' command
bash .aea/aea.sh setup-global
source ~/.bashrc # Then use: a check
# View help
bash .aea/aea.sh helpSupports 100+ languages:
- JavaScript (package.json)
- Python (requirements.txt, pyproject.toml)
- Rust (Cargo.toml)
- Go (go.mod)
- Java (pom.xml, build.gradle)
- ...and 95 more!
⚠ AEA is already installed in this directory
What would you like to do?
1) Repair installation (fix missing files)
2) Delete and backup (move to ~/.aea/backups)
3) Cancel
Delete installations are backed up to ~/.aea/backups/ with metadata:
# List backups
bash /path/to/aea/install.sh --list
# Restore a backup
mv ~/.aea/backups/my-project-TIMESTAMP/aea-backup /path/to/project/.aeayour-project/
└── .aea/
├── aea.sh # Main interface
├── CLAUDE.md # Instructions
├── agent-config.yaml # Auto-generated config
└── scripts/ # All AEA scripts
Agent ID: Auto-generated as claude-your-project-name
- Read instructions:
cat .aea/CLAUDE.md - Test messaging:
bash .aea/scripts/create-test-scenarios.sh all - Check messages:
bash .aea/aea.sh check - Set up monitoring:
bash .aea/aea.sh monitor start
"Cannot find AEA source directory"
# Use full path
bash /full/path/to/aea/install.shPermission denied
chmod +x /path/to/aea/install.shWant to uninstall?
# Backup and remove
bash /path/to/aea/install.sh # Choose option 2
# Or remove directly
rm -rf .aea# View installer help
bash /path/to/aea/install.sh --help
# View AEA help
bash .aea/aea.sh help
# List backups
bash /path/to/aea/install.sh --list📖 Full Guide: INSTALL_GUIDE.md 📋 Protocol Spec: PROTOCOL.md 💡 Examples: docs/EXAMPLES.md