--- title: "Quick Start" description: "Install Strix and run your first security scan" --- ## Prerequisites - Docker (running) - Access to a [supported LLM provider](/llm-providers/overview), such as OpenAI, Anthropic, or Google - Most providers require an API key. Vertex and Bedrock use cloud credentials. ## Installation ```bash curl -sSL https://strix.ai/install | bash ``` ```bash pipx install strix-agent ``` ## Configuration Set your LLM provider: ```bash export STRIX_LLM="openai/gpt-5.4" export LLM_API_KEY="your-api-key" ``` For best results, use `openai/gpt-5.4`, `anthropic/claude-opus-4-6`, or `openai/gpt-5.2`. ## Run Your First Scan ```bash strix --target ./your-app ``` The first run pulls the Docker sandbox image automatically. Strix saves results to `strix_runs/`. ## Target Types Strix accepts multiple target types: ```bash # Local codebase strix --target ./app-directory # GitHub repository strix --target https://github.com/org/repo # Live web application strix --target https://your-app.com # Multiple targets (white-box testing) strix -t https://github.com/org/repo -t https://your-app.com # Targets from a file, one target per non-empty, non-comment line strix --target-list ./targets.txt ``` ## Next Steps Explore all command-line options. Choose the right scan depth.