Welcome to Synkra AIOX. This guide is optimized for first-value in 10 minutes.
- 10-Minute Quick Path
- Installation
- Your First Project
- Basic Commands
- IDE Compatibility
- Brownfield: Existing Projects
- Advanced Path
- Troubleshooting
- Next Steps
Use this exact flow if you are new:
# New project
npx aiox-core init my-first-project
cd my-first-project
# Existing project
# cd existing-project
# npx aiox-core install- Claude Code:
/agent-name - Gemini CLI:
/aiox-menuthen/aiox-<agent> - Codex CLI:
/skillsthenaiox-<agent-id> - Cursor/Copilot/AntiGravity: follow constraints in
docs/ide-integration.md
First value is achieved when all 3 conditions are true:
- You activate one AIOX agent.
- You receive a valid greeting/activation response.
- You run one starter command (
*helpor equivalent) and get useful output.
PASS rule: complete all 3 conditions in <= 10 minutes.
- Node.js version 18.0.0 or higher (v20+ recommended)
- npm version 9.0.0 or higher
- Git (optional, but recommended)
# Create a new project
npx aiox-core init my-first-project
# Navigate to your project
cd my-first-project
# Start using AIOX agents in your IDE
# (see Step 2 above for IDE-specific activation)# 1. Create new project with custom template
npx aiox-core init my-project --template enterprise
# 2. Install in existing project
cd existing-project
npx aiox-core install
# 3. Force installation in non-empty directory
npx aiox-core init my-project --force
# 4. Skip dependency installation (manual install later)
npx aiox-core init my-project --skip-installAfter installation, your project will include:
my-first-project/
├── .aiox-core/ # AIOX framework core
│ ├── core/ # Orchestration, memory, config
│ ├── data/ # Knowledge base, entity registry
│ ├── development/ # Agents, tasks, templates, scripts
│ └── infrastructure/ # CI/CD templates, validation scripts
├── .claude/ # Claude Code integration (if enabled)
├── .codex/ # Codex CLI integration (if enabled)
├── .gemini/ # Gemini CLI integration (if enabled)
├── docs/ # Documentation
│ └── stories/ # Development stories
├── packages/ # Shared packages
├── tests/ # Test suites
└── package.json # Project dependencies
AIOX configuration lives in .aiox-core/core/config/. The installer handles initial setup. To verify your installation:
npx aiox-core doctorAIOX agents are activated through your IDE. Once activated, agents respond to commands prefixed with *:
# Universal commands (work in any agent)
*help # Show available commands for this agent
*guide # Show detailed usage guide
*session-info # Display current session details
*exit # Exit agent mode
# Agent-specific examples
@dev *help # Developer agent commands
@qa *review STORY-42 # QA agent reviews a story
@pm *create-epic # PM agent creates an epic
@sm *draft # Scrum Master drafts a story| Agent | Name | Focus |
|---|---|---|
@dev |
Dex | Code implementation, bug fixes, refactoring |
@qa |
Quinn | Testing, quality gates, code review |
@architect |
Aria | System design, technical decisions |
@pm |
Bob | PRDs, strategy, roadmap |
@po |
Pax | Backlog, story validation, prioritization |
@sm |
River | Story creation, sprint planning |
@analyst |
Alex | Research, competitive analysis |
@data-engineer |
Dara | Database design, migrations |
@ux-design-expert |
Uma | UI/UX design, accessibility |
@devops |
Gage | Git operations, CI/CD, deployments |
1. @pm creates a PRD → *create-epic
2. @sm drafts stories → *draft
3. @po validates stories → *validate-story-draft
4. @dev implements → (works from story file)
5. @qa reviews → *review STORY-ID
6. @devops pushes → *push (only agent with push authority)
7. @po closes story → *close-story STORY-ID
Not all IDEs support AIOX features equally. See the full comparison at docs/ide-integration.md.
Summary:
| IDE/CLI | Overall Status | How to Activate |
|---|---|---|
| Claude Code | Works | /agent-name commands |
| Gemini CLI | Works | /aiox-menu then /aiox-<agent> |
| Codex CLI | Limited | /skills then aiox-<agent-id> |
| Cursor | Limited | @agent + synced rules |
| GitHub Copilot | Limited | chat modes + repo instructions |
| AntiGravity | Limited | workflow-driven activation |
- Works: fully recommended for new users.
- Limited: usable with documented workarounds.
Already have a codebase? AIOX handles brownfield projects with a dedicated workflow.
# Navigate to your existing project
cd my-existing-project
# Install AIOX (non-destructive, preserves your config)
npx aiox-core install
# Run doctor to verify compatibility
npx aiox-core doctorWhen you first activate an AIOX agent in an existing project:
- Detection: AIOX detects code but no AIOX docs
- Offer: "I can analyze your codebase. This takes 4-8 hours."
- Discovery: Multi-agent technical debt assessment (optional)
- Output: System architecture docs + technical debt report
| Your Situation | Recommended Workflow |
|---|---|
| Add major feature to existing project | @pm → *create-doc brownfield-prd |
| Audit legacy codebase | brownfield-discovery.yaml (full workflow) |
| Quick enhancement | @pm → *brownfield-create-epic |
| Single bug fix | @pm → *brownfield-create-story |
- Non-destructive: AIOX creates files, never overwrites existing
- Rollback:
git checkout HEAD~1 -- .restores pre-AIOX state - Config preservation: Your
.eslintrc,tsconfig.json, etc. stay intact
- Working in the Brownfield Guide - Complete brownfield documentation
- Compatibility Checklist - Pre/post migration checks
- Risk Report Template - Phase-by-phase risk assessment
For experienced users who want to go deeper:
# Sync agents to all configured IDEs
npm run sync:ide
# Validate cross-IDE parity
npm run validate:parity
# Run all quality checks
npm run lint && npm run typecheck && npm testAll AIOX development follows stories in docs/stories/. Each story contains:
- Acceptance criteria with checkboxes
- Tasks mapped to specific ACs
- CodeRabbit integration for automated review
- Quality gate assignments
See the User Guide for the complete workflow.
Squads extend AIOX beyond software development into any domain. See Squads Guide.
# Check Node.js version
node --version # Should be >= 18.0.0
# Run diagnostics
npx aiox-core doctor
# Auto-fix common issues
npx aiox-core doctor --fix- Verify your IDE is supported (see IDE Compatibility).
- Run
npm run sync:ideto refresh agent files. - Restart your IDE/CLI session.
# Preview what would change
npm run sync:ide -- --dry-run
# Force re-sync
npm run sync:ide
# Validate after sync
npm run validate:parity- User Guide - Complete workflow from planning to delivery
- IDE Integration - Detailed setup per IDE
- Architecture - Technical deep dive
- Squads Guide - Extend AIOX to any domain
- Troubleshooting - Common issues and solutions
Synkra AIOX Getting Started Guide v4.2.11