aix skill install

aix skill install

Install a skill from a repository, local path, or git URL

Synopsis

Install a skill from a configured repository, local directory, or git URL.

The source can be:

  • A skill name to search in configured repositories
  • A local path to a directory containing SKILL.md
  • A git URL (https://, git@, or .git suffix)

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]

Examples

  # 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

Options

  -f, --file    treat argument as a file path instead of searching repos
      --force   overwrite existing skill without confirmation
  -h, --help    help for install

Options inherited from parent commands

      --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)

SEE ALSO

Auto generated by spf13/cobra on 24-Jan-2026