Command-mode AI assistant for Clix SDK installation and diagnostics.
- Command-only workflow — no interactive chat mode
- Step-based
installpreparation flow for Firebase and iOS push setup - Interactive agent handoff for
installanddoctorcommands - Built-in MCP server installer (
mcp) - Built-in skills installer (
skills)
npm install -g @clix-so/clix-clibun add -g @clix-so/clix-clicurl -fsSL https://clix.sh/install | bashbrew tap clix-so/clix-cli
brew install clixSee UNINSTALL.md for removal instructions.
- Node.js 20+
- One of the following AI agents:
| Agent | Free Plan | CLI Free Usage |
|---|---|---|
| Gemini CLI | Yes | 1,000 requests/day |
| GitHub Copilot | Yes | 50 premium requests/month |
| OpenCode | Yes | Unlimited (with your own API keys) |
| Cursor | Limited | 50 slow requests/month |
| Claude Code | No | Requires Pro ($20/mo) or API |
| Codex | No | Requires ChatGPT Plus ($20/mo) or API |
Tip: If you don't have an active subscription, start with Gemini CLI or GitHub Copilot which offer generous free tiers.
clix agent # Select an AI agent
clix install # Install Clix SDK into your project
clix doctor # Diagnose SDK integration issues| Command | Description |
|---|---|
clix / clix help |
Show help and exit |
clix agent [name] |
List available agents or switch the active agent |
clix install |
Run install preparation, then hand off to agent CLI |
clix doctor |
Run SDK diagnostics via agent handoff |
clix mcp |
Install Clix MCP Server |
clix skills |
Install Clix Skills |
clix update |
Check for and apply CLI updates |
clix login / logout / whoami |
Account and authentication |
clix uninstall |
Remove Clix CLI from your system |
Runs a two-phase install pipeline:
- Preparation UI — guided step-by-step setup for Firebase, APNS, and iOS configuration
- Agent handoff — launches the selected AI agent CLI with the install prompt
The --start-task flag is development-only and requires CLIX_DEV_ENABLE_TASK_OVERRIDE=1.
Hands off to the selected AI agent CLI with a diagnostic prompt. The agent analyzes SDK integration status, dependency health, and configuration issues.
Installs the Clix MCP Server via npx add-mcp @clix-so/clix-mcp-server@latest --name clix.
Installs the Clix Skills via npx skills add clix-so/skills and transfers CLI control.
Checks for CLI updates and applies them. Use --dry-run to preview without applying, --force to skip confirmation.
Removes Clix CLI. Use --keep-config or --keep-state to preserve local data.
clix install enforces the following order for required preparation tasks:
- Firebase Configuration Files
- Firebase Service Account
- APNS Key for Firebase
- iOS Entitlements
- Notification Service Extension
Runtime SDK installation executes only after all required preparation steps are complete.
See CONTRIBUTING.md for the full development guide.
bun install # Install dependencies
bun run dev # Run CLI from source
bun run build # Bundle for distribution
bun test # Run all tests
bun run check # Lint + typecheck- Clix SDK Documentation
- Issue Tracker
- LLMs.txt — Documentation for AI assistants
MIT