Title here
Summary here
Install an agent from a repository or local path
Install an AI coding agent from a configured repository or local AGENT.md file.
The source can be:
When given a name (not a path), aix searches configured repositories first. If the agent 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.
The AGENT.md file should contain YAML frontmatter with at least a ’name’ field, followed by the agent’s instructions in markdown format.
You are a code review expert. When reviewing code…
aix agent install <source> [flags] # Install by name from configured repos
aix agent install code-reviewer
# Install from a file
aix agent install ./my-agent/AGENT.md
aix agent install --file my-agent # Force file path interpretation
# Install from a directory
aix agent install ./my-agent/
# Install to specific platform
aix agent install code-reviewer --platform claude
# Force overwrite existing agent
aix agent install code-reviewer --force -f, --file treat argument as a file path instead of searching repos
--force overwrite existing agent 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)