81% of Top AI Repos Have No Security CI — We Checked 500

Published March 14, 2026

We analyzed the CI/CD pipelines of the 500 most popular AI agent repositories. 404 of them — 81% — have no automated security scanning.

What We Found

We scanned every GitHub Actions workflow for security-related steps: CodeQL, Snyk, Trivy, Dependabot, SonarQube, and others. 404 of 500 repositories had none.

By Star Range

Star RangeMissing Security CITotal%
>100K stars111669%
>50K stars415871%
>10K stars35242683%

Notable Repos With No Security CI

These projects each have over 10,000 stars and zero detected security scanning in CI:

The Vulnerability Scanner Results

Of the 100 most popular, 9 have high risk scores. Here are the most exposed:

#ProjectStarsTrustGradeVuln Score
1AUTOMATIC1111/stable-diffusion-webui160.7k69.7C55
2f/prompts.chat145.8k69.7C55
3rasbt/LLMs-from-scratch85.6k69.7C55
4hacksider/Deep-Live-Cam79.6k69.7C55
5Developer-Y/cs-video-courses74.3k69.7C55
6dair-ai/Prompt-Engineering-Guide70.6k69.7C55
7ageitgey/face_recognition56.1k64.7C55
8deepfakes/faceswap55.0k69.7C55
9coqui-ai/TTS44.6k69.7C55
10n8n-io/n8n177.3k51.7C-45

Why This Matters

These are tools developers install via pip and npm every day. Without security CI, vulnerabilities ship to production undetected. A single compromised dependency in an AI agent framework can cascade through thousands of downstream applications — from chatbots handling sensitive data to autonomous trading agents managing real funds.

The gap between popularity and security hygiene is especially alarming for projects with 50K+ stars: these are effectively critical infrastructure for the AI ecosystem, yet most lack even basic automated scanning.

Add Security Scanning in 2 Minutes

Drop this into .github/workflows/security.yml:

name: Security Scan
on: [push, pull_request]
jobs:
  security:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4
      - name: Run Nerq Security Scan
        run: |
          pip install agent-security
          agent-security scan requirements.txt

Check Your Stack Now

Scan your own project locally:

pip install agent-security
agent-security scan requirements.txt

Or use the API: nerq.ai/v1/preflight

Full vulnerability dashboard: nerq.ai/vulnerable

We use cookies for analytics and caching. Privacy Policy