Integrate Strix into your GitHub workflow to catch vulnerabilities before they reach production.Documentation Index
Fetch the complete documentation index at: https://docs.strix.ai/llms.txt
Use this file to discover all available pages before exploring further.
Basic Workflow
.github/workflows/security.yml
Required Secrets
Add these secrets to your repository:| Secret | Description |
|---|---|
STRIX_LLM | Model name (e.g., openai/gpt-5.4) |
LLM_API_KEY | API key for your LLM provider |
Exit Codes
The workflow fails when vulnerabilities are found:| Code | Result |
|---|---|
| 0 | Pass — No vulnerabilities |
| 2 | Fail — Vulnerabilities found |
Scan Modes for CI
| Mode | Duration | Use Case |
|---|---|---|
quick | Minutes | Every PR |
standard | ~30 min | Nightly builds |
deep | 1-4 hours | Release candidates |
For pull_request workflows, Strix automatically uses changed-files diff-scope in CI/headless runs. If diff resolution fails, ensure full history is fetched (
fetch-depth: 0) or set --diff-base.