Documentation Index
Fetch the complete documentation index at: https://mintlify.com/SynkraAI/aiox-core/llms.txt
Use this file to discover all available pages before exploring further.
Comprehensive reference for all AIOX CLI commands beyond init and install.
System Commands
doctor
Run health checks on your AIOX installation.
Automatically fix detected issues.
Show what --fix would do without making changes.aiox doctor --fix --dry-run
Output results as structured JSON.
Minimal output (exit code only).
Checks performed:
- Required directories exist (
.aiox-core/, .aiox/)
- Configuration files are valid JSON/YAML
- Agent definitions are complete
- Task files have required fields
- Dependencies are installed
Exit codes:
0 - All checks passed (or issues fixed with --fix)
1 - Issues detected (run with --fix to repair)
Examples:
# Run health check
aiox doctor
# Auto-fix detected issues
aiox doctor --fix
# Preview what would be fixed
aiox doctor --fix --dry-run
info
Show system information about your AIOX installation.
Displays:
- AIOX version
- Platform and Node.js version
- Architecture
- Working directory
- Install location
- Component counts (agents, tasks, templates, workflows)
- AIOX Pro license status (if installed)
Example output:
📊 AIOX-FullStack System Information
Version: 4.0.0
Platform: linux
Node.js: v20.11.0
Architecture: x64
Working Directory: /home/user/project
Install Location: /home/user/.npm/_npx/aiox-core
✓ AIOX Core installed
- Agents: 11
- Tasks: 68
- Templates: 23
- Workflows: 15
✓ AIOX Pro installed
- License: ✅ Active
- Features: 12 available
validate
Validate AIOX-Core installation integrity.
Repair missing or corrupted files.
Preview repairs without applying (use with --repair).aiox validate --repair --dry-run
Skip hash verification (faster validation).
Detect extra files not in manifest.
Output results as JSON for CI/CD.
Source directory for repairs.aiox validate --repair --source /path/to/aiox-core
Exit codes:
0 - Validation passed
1 - Validation failed (missing/corrupted files)
2 - Validation error (could not complete)
Examples:
# Validate current installation
aiox validate
# Validate with detailed file list
aiox validate --detailed
# Repair missing/corrupted files
aiox validate --repair
# Preview what would be repaired
aiox validate --repair --dry-run
# Quick validation (skip hash check)
aiox validate --no-hash
# Output as JSON for CI/CD
aiox validate --json
update
Update AIOX to the latest version.
Check for updates without applying.
Preview what would be updated.
Force update even if already up-to-date.
Show detailed output during update.
Examples:
# Update to latest version
aiox update
# Check for updates without applying
aiox update --check
# Preview what would be updated
aiox update --dry-run
# Force update even if up-to-date
aiox update --force
# Show detailed output
aiox update --verbose
uninstall
Remove AIOX from the current project.
Skip confirmation prompt.
Keep .aiox/ directory (settings and history).aiox uninstall --keep-data
Show what would be removed without removing.
What gets removed:
.aiox-core/ - Framework core files
docs/stories/ - Story files (if created by AIOX)
squads/ - Squad definitions
.gitignore - AIOX-added entries only
What is preserved (with --keep-data):
.aiox/ - Project settings and agent history
Exit codes:
0 - Uninstall successful
1 - Uninstall failed or cancelled
Examples:
# Interactive uninstall (with confirmation)
aiox uninstall
# Force uninstall without prompts
aiox uninstall --force
# See what would be removed
aiox uninstall --dry-run
# Uninstall but keep project data
aiox uninstall --keep-data
Configuration Commands
config show
Show resolved configuration from layered config files.
aiox config show [options]
Show specific level (1, 2, pro, 3, 4) without merging.aiox config show --level 2
Include app-specific config (L3).aiox config show --app my-app
Show source annotations for each value.
Examples:
# Show full resolved config
aiox config show
# Show only framework config (L1)
aiox config show --level 1
# Show with source annotations
aiox config show --debug
config diff
Compare configuration between two levels.
aiox config diff --levels <a>,<b> [options]
Two levels to compare (e.g., “1,2” or “framework,project”).aiox config diff --levels 1,2
Include app-specific context.aiox config diff --levels 1,2 --app my-app
Examples:
# Compare framework and project configs
aiox config diff --levels 1,2
# Compare project and local configs
aiox config diff --levels project,local
config migrate
Migrate monolithic core-config.yaml to layered files.
aiox config migrate [options]
Preview without writing files.aiox config migrate --dry-run
Overwrite existing split files.aiox config migrate --force
Examples:
# Preview migration
aiox config migrate --dry-run
# Perform migration
aiox config migrate
# Force overwrite existing files
aiox config migrate --force
config validate
Validate YAML syntax and lint config files.
aiox config validate [options]
Validate specific level only.aiox config validate --level 2
Examples:
# Validate all config levels
aiox config validate
# Validate only project config
aiox config validate --level project
config init-local
Create local-config.yaml from template.
Creates .aiox-core/local-config.yaml from .aiox-core/local-config.yaml.template and updates .gitignore.
Workers Discovery
workers search
Search for workers matching a query.
aiox workers search <query> [options]
Search query (supports multi-word queries).aiox workers search "json transformation"
Filter by category.aiox workers search "transform" --category=data
Filter by tags (comma-separated).aiox workers search "api" --tags=rest,graphql
Output format (table, json).aiox workers search "json" --format=json
Examples:
# Search for workers
aiox workers search "json transformation"
# Search with category filter
aiox workers search "data" --category=etl
# Search with tags
aiox workers search "transform" --tags=etl,data
# JSON output
aiox workers search "api" --format=json
workers list
List all workers grouped by category.
aiox workers list [options]
Filter by category.aiox workers list --category=testing
Output format (table, json).aiox workers list --format=table
Page number for pagination.aiox workers list --page=2
Examples:
# List all workers
aiox workers list
# List workers in testing category
aiox workers list --category=testing
# Table format with pagination
aiox workers list --format=table --page=2
workers info
Show detailed information about a worker.
aiox workers info <id> [options]
Worker ID.aiox workers info json-csv-transformer
Output format (json, yaml).aiox workers info architect-checklist --format=json
Examples:
# Show worker details
aiox workers info json-csv-transformer
# JSON output
aiox workers info architect-checklist --format=json
Pro Features
pro activate
Activate AIOX Pro license.
aiox pro activate --key <license-key>
pro status
Show AIOX Pro license status.
pro deactivate
Deactivate AIOX Pro license.
pro features
List available Pro features.
—version
Show installed version.
Output:
—version -d
Show detailed version information.
Output:
AIOX-FullStack v4.0.0
Package: aiox-core
📦 Local Installation:
Version: 4.0.0
Mode: project-development
Installed: 3/5/2024
Updated: 3/5/2024
Files: 150 tracked
Customized: 0 files
✅ Up to date
Exit Codes
Consistent exit codes across all commands:
- 0 - Success
- 1 - Validation/check failed
- 2 - Error (command could not complete)
Global Help
Get help for any command:
aiox --help
aiox <command> --help
aiox <command> <subcommand> --help
Examples:
aiox --help
aiox config --help
aiox config show --help
aiox workers search --help