Getting Started

What is aix?

aix is a unified CLI for managing AI coding assistant configurations across multiple platforms:

  • Claude Code - Anthropic’s Claude-powered coding assistant
  • OpenCode - Open-source AI coding assistant
  • Codex - OpenAI’s code generation model
  • Gemini CLI - Google’s Gemini-powered CLI

With aix, you can manage skills, commands, agents, and MCP servers from a single tool, with automatic translation between platform-specific formats.

Installation

Homebrew (macOS/Linux)

Install using the Homebrew tap:

brew install thoreinstein/tap/aix

Using Go

go install github.com/thoreinstein/aix/cmd/aix@latest

From Source

git clone https://github.com/thoreinstein/aix.git
cd aix
go build -o aix ./cmd/aix

Quick Start

1. Initialize a skill

Create your first skill definition:

aix skill init my-skill

This creates a skill directory with a SKILL.md file containing the skill definition.

2. Install the skill

Install the skill to your preferred platform:

# Install to Claude Code (default)
aix skill install ./my-skill

# Install to a specific platform
aix skill install ./my-skill --platform opencode

3. Verify installation

Check that the skill was installed:

aix skill list

Next Steps

  • Learn about Skills - reusable instruction sets
  • Explore Commands - slash command definitions
  • Configure MCP Servers - Model Context Protocol servers
  • Set up Agents - specialized AI assistant configurations