> ## Documentation Index
> Fetch the complete documentation index at: https://mintlify.com/usestrix/strix/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to Strix

> Open-source AI hackers to find and fix your app's vulnerabilities

Strix is an autonomous AI-powered penetration testing tool that uses intelligent agents to discover and validate security vulnerabilities in your applications. Unlike traditional scanners, Strix thinks and acts like a real security researcher, combining code analysis, web testing, and exploitation techniques to find real issues.

## Get Started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Run your first security scan in under 5 minutes
  </Card>

  <Card title="Installation" icon="download" href="/installation">
    Install Strix and configure your environment
  </Card>

  <Card title="How It Works" icon="brain" href="/concepts/how-it-works">
    Understand Strix's multi-agent architecture
  </Card>

  <Card title="CLI Reference" icon="terminal" href="/cli/strix">
    Complete command-line reference
  </Card>
</CardGroup>

## Key Features

<CardGroup cols={2}>
  <Card title="Autonomous Agents" icon="robot" href="/concepts/agents">
    AI agents collaborate to find and exploit vulnerabilities
  </Card>

  <Card title="Security Toolkit" icon="toolbox" href="/concepts/tools">
    Browser automation, proxy, terminal, and Python execution
  </Card>

  <Card title="Specialized Skills" icon="book-open" href="/skills/overview">
    Pre-built knowledge for frameworks and vulnerability types
  </Card>

  <Card title="CI/CD Integration" icon="code-branch" href="/integrations/ci-cd">
    Integrate security testing into your pipeline
  </Card>
</CardGroup>

## What Makes Strix Different?

<AccordionGroup>
  <Accordion title="Real Vulnerability Validation">
    Strix doesn't just flag potential issues—it validates them with working proof-of-concept exploits. Every reported vulnerability includes detailed reproduction steps and evidence.
  </Accordion>

  <Accordion title="Multi-Agent Collaboration">
    Multiple specialized AI agents work together, sharing information and coordinating attacks just like a real penetration testing team.
  </Accordion>

  <Accordion title="White-Box and Black-Box Testing">
    Test deployed applications, analyze source code, or combine both for comprehensive security coverage.
  </Accordion>

  <Accordion title="Customizable Testing">
    Use custom instructions to focus on specific vulnerabilities, provide credentials, or guide the testing approach.
  </Accordion>
</AccordionGroup>

## Quick Example

```bash theme={null}
# Test a web application
strix --target https://example.com

# Test local source code with deployed app (white-box)
strix --target ./my-app --target https://staging.example.com

# Focus on specific vulnerabilities
strix --target example.com --instruction "Focus on authentication and authorization"

# Quick CI/CD scan
strix --target https://app.com --scan-mode quick --non-interactive
```
