Quick Start
Quick Start
Section titled “Quick Start”This guide walks you through creating your first Swixter profile and applying it to an AI coding assistant.
1. Install Swixter
Section titled “1. Install Swixter”npm install -g swixter2. List Available Providers
Section titled “2. List Available Providers”Swixter comes with built-in providers and supports user-defined ones:
swixter providers listOutput shows built-in and user-defined providers, including their wire_api type (used for Codex compatibility).
3. Create a Profile
Section titled “3. Create a Profile”A profile bundles a provider with your API key and settings:
swixter claude create my-profileThe interactive prompt asks for:
- Provider: Choose from Anthropic, Ollama, or custom providers
- API Key: Your provider’s API key (stored locally)
- Base URL: Optional custom endpoint (for Ollama or proxies)
- Model: Optional default model
- Auth Token: (Claude only) Optional
ANTHROPIC_AUTH_TOKEN
4. Switch to Your Profile
Section titled “4. Switch to Your Profile”Set the profile as active for a coder:
swixter claude switch my-profileProfiles are per-coder — you can have different active profiles for Claude Code vs Codex.
5. Apply the Profile
Section titled “5. Apply the Profile”Write the active profile to the coder’s config file:
swixter claude applyThis writes the configuration to the coder’s native config file (e.g., ~/.claude/settings.json for Claude Code).
6. Launch Your Coder
Section titled “6. Launch Your Coder”claudeYour coder is now using the Swixter-managed configuration.
Common Workflow
Section titled “Common Workflow”# Create profiles for different providersswixter claude create work-profile # Anthropicswixter claude create local-profile # Ollama
# Switch between themswixter claude switch work-profileswixter claude apply
# List all profilesswixter claude list
# Edit a profileswixter claude edit work-profileUsing with Codex
Section titled “Using with Codex”Codex requires environment variables set before launch. Use the run command:
swixter codex create codex-profileswixter codex switch codex-profileswixter codex run # applies profile, sets env vars, launches codexNext Steps
Section titled “Next Steps”- Configuration details — understand config file structure
- Commands reference — explore all CLI commands
- Provider setup — configure specific AI providers