Title here
Summary here
Install a skill from a repository, local path, or git URL
Install a skill from a configured repository, local directory, or git URL.
The source can be:
When given a name (not a path), aix searches configured repositories first. If the skill exists in multiple repositories, you will be prompted to select one. Use –file to skip repo search and treat the argument as a file path.
For git URLs, the repository is cloned to a temporary directory, the skill is installed, and the temporary directory is cleaned up.
aix skill install <source> [flags] # Install by name from configured repos
aix skill install code-review
# Install from local directory
aix skill install ./my-skill
aix skill install --file my-skill # Force file path interpretation
# Install from absolute path
aix skill install /path/to/skill-dir
# Install from git repository
aix skill install https://github.com/user/skill-repo.git
# Install from git SSH URL
aix skill install git@github.com:user/skill-repo.git
# Force overwrite existing skill
aix skill install code-review --force -f, --file treat argument as a file path instead of searching repos
--force overwrite existing skill without confirmation
-h, --help help for install --log-file string write logs to file in JSON format
--log-format string log format: text, json (default "text")
-p, --platform strings target platform(s): claude, opencode (default: all detected)
-q, --quiet suppress non-error output
-v, --verbose count increase verbosity level (e.g., -v, -vv)