Quickstart Guide
Get Synkra AIOX installed and running in under 10 minutes. This guide will walk you through installation, first agent activation, and your first commands.Prerequisites
Before you begin, ensure you have:- Node.js version 18.0.0 or higher (v20+ recommended)
- npm version 9.0.0 or higher
- A terminal/command line interface
Installation
Install AIOX
Choose one of the following installation methods:The installer will guide you through an interactive setup with:
- New Project
- Existing Project
Create a new project with AIOX:
- Project name selection
- Component selection
- IDE configuration
- Dependency installation
Verify Installation
Confirm AIOX is installed correctly:This command checks:
- Node.js and npm versions
- AIOX framework files
- Agent definitions
- Configuration files
Configure Your IDE
Choose your IDE and follow the setup:
Claude Code (Recommended)
Claude Code (Recommended)
Claude Code auto-loads AIOX configuration from
.claude/CLAUDE.md. No additional setup needed!The configuration is automatically detected when you open your project in Claude Code.Codex CLI
Codex CLI
Codex CLI reads from Activate agents using the
AGENTS.md at the project root.Generate skills for local activation:/skills command in Codex.Cursor
Cursor
- Open Cursor settings
- Navigate to User Rules
- Copy contents from
.cursor/global-rules.md - Paste in rules section and save
Gemini CLI
Gemini CLI
Sync agents and hooks:Use slash commands like
/aiox-dev or /aiox-architect to activate agents.Activate Your First Agent
Let’s activate the dev agent to see AIOX in action:You should see a greeting message from Dex, the dev agent.
Next Steps
Now that AIOX is installed and you’ve activated your first agent, explore these areas:Core Concepts
Understand AIOX architecture and principles
Agents Overview
Learn about all 11 specialized agents
CLI Reference
Master the AIOX command-line interface
First Project
Build your first project with AIOX
Available Agents
AIOX includes 11 specialized agents for different roles:@dev
Developer - Code implementation
@qa
Quality Assurance - Testing
@architect
Architect - System design
@pm
Product Manager - Strategy
@po
Product Owner - Backlog
@sm
Scrum Master - Facilitation
@analyst
Analyst - Research
@devops
DevOps - Operations
@data-engineer
Data Engineer - Databases
Troubleshooting
Node.js version error
Node.js version error
AIOX requires Node.js 18.0.0 or higher. Update Node.js:
Permission denied errors
Permission denied errors
Try running with npx instead of global install:Or fix npm permissions: https://docs.npmjs.com/resolving-eacces-permissions-errors
Agent not responding
Agent not responding
- Verify agent activation syntax for your IDE
- Check that AIOX is properly installed:
npx aiox-core doctor - Review IDE-specific setup in the IDE Integration guide
Installation fails
Installation fails
- Clear npm cache:
npm cache clean --force - Delete node_modules:
rm -rf node_modules package-lock.json - Reinstall:
npm install - Try again:
npx aiox-core install
Need Help?
Full Installation Guide
Detailed installation instructions for all platforms
User Guide
Complete walkthrough of AIOX features
GitHub Issues
Report bugs or request features
Troubleshooting Guide
Solve common installation problems