aiox init command creates a new AIOX project in a specified directory with full framework setup.
Usage
Arguments
Name of the project directory to create. Use
. to install in the current directory.Options
Force creation in a non-empty directory. Without this flag, init will fail if the target directory exists and contains files.
Skip npm dependency installation during project creation. Useful for faster setup or custom dependency management.
Specify which template to use for project initialization.Available templates:
default- Full installation with all agents, tasks, and workflowsminimal- Essential files only (dev agent + basic tasks)enterprise- Everything + dashboards + team integrations
Shorthand for
--template.Display help information for the init command.
Examples
Create a New Project
Create a new project with default settings:- Create
my-aiox-project/directory - Initialize git repository
- Create
package.json - Run the installation wizard
- Install framework files
- Configure IDE settings
Minimal Project Setup
Create a lightweight project with essential components only:- Development agent only
- Core tasks
- Basic configuration
- No pre-installed squads
Enterprise Project
Create a full-featured enterprise project:- All agents and tasks
- Dashboard integrations
- Team collaboration tools
- Advanced workflows
Install in Current Directory
Initialize AIOX in an existing project directory:Force Overwrite
Create a project even if the directory is not empty:Skip Dependency Installation
Create project structure without installing npm dependencies:Interactive Wizard
After runninginit, you’ll be guided through an interactive setup:
1. Installation Mode
Choose how you’re using AIOX:- Using AIOX in a project - Framework files added to
.gitignore - Developing AIOX framework itself - Framework files are source code
2. Project Management Tool
Select your PM integration:- None (local YAML files only) - Recommended
- ClickUp - Requires API token
- GitHub Projects - Uses
ghauth - Jira - Requires API token
3. IDE Selection
Choose which IDEs to configure (multiple selection):- Claude Code (v4) - Recommended
- Cursor (v4)
- Gemini CLI (v4)
- GitHub Copilot (v4)
- AntiGravity (v4)
- Check if CLI tools are installed
- Offer to install missing tools
- Configure IDE-specific files
- Set up agent commands and rules
4. Squad Selection
Optionally install pre-built squads:- squad-creator
- data-engineering
- testing-automation
- And more…
What Gets Created
After runninginit, your project will contain:
Exit Codes
- 0 - Project created successfully
- 1 - Project creation failed (e.g., directory exists, invalid template)
Troubleshooting
Directory Already Exists
If you see:--force to proceed:
Invalid Template
If you see:Missing Project Name
If you see:Next Steps
After creating your project:-
Navigate to the project directory:
-
Verify installation:
-
Run system diagnostics:
-
Start using agents in your IDE based on your selection:
- Claude Code: Use slash commands like
/dev,/architect - Cursor: Use
@agent-namein chat - GitHub Copilot: Select agent mode in Chat view
- Claude Code: Use slash commands like