aix install
Reads ai.json (and ai.local.json), resolves all inheritance, and writes configuration files for supported editors.
aix install [source] [flags]If source is provided (git URL, file path), it installs directly from that source without needing a local ai.json.
| Flag | Description |
|---|---|
--target <editor> / -t | Limit installation to specific editors. Repeatable. |
--dry-run / -d | Preview changes without writing files. |
--save | When installing a remote source, save it to local ai.json. |
--overwrite | With --save, overwrite local config instead of merging. |
--clean | Remove the .aix folder before install to ensure a fresh state. |
--copy | With --save, copy remote files to .aix/imported/ instead of referencing git URLs. |
--scope <field> / -s | Limit to specific fields: rules, prompts, mcp, skills. |
Examples
Section titled “Examples”Standard install:
aix installInstall only to VS Code:
aix install --target vscodeInstall a remote config directly:
aix install github:company/ai-configInstall remote config and save it to your local ai.json:
aix install github:company/ai-config --save