2026-01-20 21:08:29 -08:00
|
|
|
---
|
|
|
|
|
title: "Quick Start"
|
|
|
|
|
description: "Install Strix and run your first security scan"
|
|
|
|
|
---
|
|
|
|
|
|
|
|
|
|
## Prerequisites
|
|
|
|
|
|
|
|
|
|
- Docker (running)
|
2026-03-22 20:32:53 -07:00
|
|
|
- An LLM API key from any [supported provider](/llm-providers/overview) (OpenAI, Anthropic, Google, etc.)
|
2026-01-20 21:08:29 -08:00
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
|
|
<Tabs>
|
|
|
|
|
<Tab title="curl">
|
|
|
|
|
```bash
|
|
|
|
|
curl -sSL https://strix.ai/install | bash
|
|
|
|
|
```
|
|
|
|
|
</Tab>
|
|
|
|
|
<Tab title="pipx">
|
|
|
|
|
```bash
|
|
|
|
|
pipx install strix-agent
|
|
|
|
|
```
|
|
|
|
|
</Tab>
|
|
|
|
|
</Tabs>
|
|
|
|
|
|
|
|
|
|
## Configuration
|
|
|
|
|
|
|
|
|
|
Set your LLM provider:
|
|
|
|
|
|
2026-03-22 20:32:53 -07:00
|
|
|
```bash
|
|
|
|
|
export STRIX_LLM="openai/gpt-5.4"
|
|
|
|
|
export LLM_API_KEY="your-api-key"
|
|
|
|
|
```
|
2026-01-20 21:08:29 -08:00
|
|
|
|
|
|
|
|
<Tip>
|
2026-03-22 20:32:53 -07:00
|
|
|
For best results, use `openai/gpt-5.4`, `anthropic/claude-opus-4-6`, or `openai/gpt-5.2`.
|
2026-01-20 21:08:29 -08:00
|
|
|
</Tip>
|
|
|
|
|
|
|
|
|
|
## Run Your First Scan
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
strix --target ./your-app
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
<Note>
|
|
|
|
|
First run pulls the Docker sandbox image automatically. Results are saved to `strix_runs/<run-name>`.
|
|
|
|
|
</Note>
|
|
|
|
|
|
|
|
|
|
## 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
|
2026-07-06 23:21:03 -04:00
|
|
|
|
2026-07-06 23:29:01 -04:00
|
|
|
# Targets from a file, one target per non-empty, non-comment line
|
2026-07-06 23:21:03 -04:00
|
|
|
strix --target-list ./targets.txt
|
2026-01-20 21:08:29 -08:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Next Steps
|
|
|
|
|
|
|
|
|
|
<CardGroup cols={2}>
|
|
|
|
|
<Card title="CLI Options" icon="terminal" href="/usage/cli">
|
|
|
|
|
Explore all command-line options.
|
|
|
|
|
</Card>
|
|
|
|
|
<Card title="Scan Modes" icon="gauge" href="/usage/scan-modes">
|
|
|
|
|
Choose the right scan depth.
|
|
|
|
|
</Card>
|
|
|
|
|
</CardGroup>
|