Update README.md

This commit is contained in:
0xallam
2025-12-15 10:11:08 -08:00
parent d96852de55
commit d649a7c70b

View File

@@ -65,13 +65,15 @@ Strix are autonomous AI agents that act just like real hackers - they run your c
**Prerequisites:** **Prerequisites:**
- Docker (running) - Docker (running)
- Python 3.12+
- An LLM provider key (e.g. [get OpenAI API key](https://platform.openai.com/api-keys) or use a local LLM) - An LLM provider key (e.g. [get OpenAI API key](https://platform.openai.com/api-keys) or use a local LLM)
### Installation & First Scan ### Installation & First Scan
```bash ```bash
# Install Strix # Install Strix
curl -sSL https://strix.ai/install | bash
# Or via pipx
pipx install strix-agent pipx install strix-agent
# Configure your AI provider # Configure your AI provider
@@ -192,14 +194,14 @@ jobs:
- uses: actions/checkout@v6 - uses: actions/checkout@v6
- name: Install Strix - name: Install Strix
run: pipx install strix-agent run: curl -sSL https://strix.ai/install | bash
- name: Run Strix - name: Run Strix
env: env:
STRIX_LLM: ${{ secrets.STRIX_LLM }} STRIX_LLM: ${{ secrets.STRIX_LLM }}
LLM_API_KEY: ${{ secrets.LLM_API_KEY }} LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
run: strix -n -t ./ run: strix -n -t ./ --scan-mode quick
``` ```
### ⚙️ Configuration ### ⚙️ Configuration